/*
Theme Name: Bricks with Ste
Theme URI: https://brickswithste.co.uk
Author: Bricks with Ste
Author URI: https://brickswithste.co.uk
Description: A fun, playful WordPress theme for the Bricks with Ste brick building community. Features blog, product showcase, and creator directory.
Version: 1.7.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bricks-with-ste
Tags: blog, entertainment, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --bws-red: #E30613;
  --bws-yellow: #FFD700;
  --bws-blue: #1A56DB;
  --bws-dark: #1A1A2E;
  --bws-dark-light: #2A2A4E;
  --bws-text: #333333;
  --bws-text-light: #666666;
  --bws-bg: #FAFAFA;
  --bws-white: #FFFFFF;
  --bws-grey: #E8E8E8;
  --bws-radius: 12px;
  --bws-radius-sm: 8px;
  --bws-shadow: 0 4px 15px rgba(0,0,0,0.08);
  --bws-shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
  --bws-transition: all 0.3s ease;
  --bws-font: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --bws-font-heading: 'Fredoka', 'Nunito', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--bws-font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--bws-text);
  background-color: var(--bws-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bws-blue); text-decoration: none; transition: var(--bws-transition); }
a:hover { color: var(--bws-red); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bws-font-heading);
  color: var(--bws-dark);
  line-height: 1.3;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1em; }
ul, ol { margin-bottom: 1em; padding-left: 1.5em; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background: var(--bws-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  gap: 15px;
}

.site-logo img {
  height: 60px;
  width: auto;
  transition: var(--bws-transition);
}
.site-logo:hover img {
  transform: scale(1.05);
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: var(--bws-white);
  font-family: var(--bws-font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--bws-radius);
  transition: var(--bws-transition);
  display: block;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  background: var(--bws-red);
  color: var(--bws-white);
  transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--bws-white);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--bws-transition);
}

/* ========================================
   ACCOUNT NAV (dynamic, role-aware)
   ======================================== */
.account-nav {
  margin-left: auto;
  flex-shrink: 0;
}
.account-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0;
  align-items: center;
}
.account-nav a {
  color: var(--bws-white);
  font-family: var(--bws-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--bws-radius);
  transition: var(--bws-transition);
  white-space: nowrap;
  display: block;
}
.account-nav a:hover {
  color: var(--bws-yellow);
}

/* Subtle border on secondary items (Login, My Account, Dashboard) */
.account-nav .menu-item-login a,
.account-nav .menu-item-account a,
.account-nav .menu-item-dashboard a {
  border: 2px solid rgba(255,255,255,0.3);
}
.account-nav .menu-item-login a:hover,
.account-nav .menu-item-account a:hover,
.account-nav .menu-item-dashboard a:hover {
  border-color: var(--bws-yellow);
}

/* Log Out — subdued */
.account-nav .menu-item-logout a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}
.account-nav .menu-item-logout a:hover {
  color: var(--bws-red);
}

/* Join as Creator — CTA pill */
.account-nav .menu-item-join a {
  background: var(--bws-red);
  color: var(--bws-white);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.9rem;
}
.account-nav .menu-item-join a:hover {
  background: #c0050f;
  color: var(--bws-white);
}

/* ========================================
   HEADER ICONS (Cart + Search — always visible)
   ======================================== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* Header cart icon */
.header-cart {
  position: relative;
  color: var(--bws-white);
  display: flex;
  align-items: center;
  padding: 8px;
  transition: var(--bws-transition);
  flex-shrink: 0;
}
.header-cart:hover {
  color: var(--bws-yellow);
}
.bws-cart-count {
  position: absolute;
  top: 0;
  right: -2px;
  background: var(--bws-red);
  color: var(--bws-white);
  font-family: var(--bws-font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  pointer-events: none;
}
.bws-cart-count:empty {
  display: none;
}

/* Search toggle button */
.header-search-toggle {
  background: none;
  border: none;
  color: var(--bws-white);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  transition: var(--bws-transition);
  flex-shrink: 0;
}
.header-search-toggle:hover {
  color: var(--bws-yellow);
}

/* Search Bar Dropdown */
.header-search-bar {
  background: var(--bws-dark-light);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 15px 20px;
}
.header-search-bar[hidden] {
  display: none;
}
.header-search-inner {
  max-width: 600px;
  margin: 0 auto;
}
.header-search-bar .search-form input[type="search"] {
  background: var(--bws-dark);
  border-color: rgba(255,255,255,0.2);
  color: var(--bws-white);
}
.header-search-bar .search-form input[type="search"]::placeholder {
  color: rgba(255,255,255,0.4);
}

/* ========================================
   STICKY HEADER SCROLLED STATE
   ======================================== */
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* ========================================
   MOBILE NAV
   ======================================== */

@media (max-width: 900px) {
  /* Hide "Join as Creator" CTA on tablets — it's in the hamburger menu */
  .account-nav .menu-item-join {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Show hamburger */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 3;
  }

  /* Hamburger → X animation */
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 8px);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, -8px);
  }

  /* Header row: logo left, icons + burger right */
  .header-inner {
    gap: 8px;
  }

  /* Hide desktop account-nav text links — they move into the drawer */
  .account-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bws-dark);
    padding: 0 0 16px;
    z-index: 998;
  }
  .account-nav.active {
    display: block;
  }

  .account-nav ul {
    flex-direction: column;
    gap: 2px;
    padding: 0 12px;
  }
  .account-nav a {
    padding: 13px 16px;
    font-size: 1rem;
    border-radius: 8px;
    display: block;
  }
  /* Reset desktop border styles for mobile */
  .account-nav .menu-item-login a,
  .account-nav .menu-item-account a,
  .account-nav .menu-item-dashboard a {
    border: none;
  }
  /* Show Join CTA in mobile drawer */
  .account-nav .menu-item-join {
    display: list-item;
  }
  .account-nav .menu-item-join a {
    background: none;
    border-radius: 8px;
    color: var(--bws-yellow);
    font-weight: 700;
  }
  .account-nav .menu-item-logout a {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
  }
  .account-nav a:hover {
    background: rgba(255,255,255,0.07);
    color: var(--bws-yellow);
  }

  .header-icons {
    margin-left: auto;
  }

  /* Mobile nav dropdown */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bws-dark);
    padding: 8px 0 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.active { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 2px;
    padding: 0 12px;
    margin: 0;
  }
  .main-nav a {
    padding: 13px 16px;
    font-size: 1rem;
    border-radius: 8px;
    display: block;
  }
  .main-nav a:hover,
  .main-nav .current-menu-item a {
    transform: none;
    background: rgba(255,255,255,0.07);
    color: var(--bws-yellow);
  }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--bws-font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--bws-transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--bws-red);
  color: var(--bws-white);
}
.btn-primary:hover {
  background: var(--bws-dark);
  color: var(--bws-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227,6,19,0.4);
}

.btn-secondary {
  background: var(--bws-yellow);
  color: var(--bws-dark);
}
.btn-secondary:hover {
  background: var(--bws-red);
  color: var(--bws-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--bws-white);
  border: 2px solid var(--bws-white);
}
.btn-outline:hover {
  background: var(--bws-white);
  color: var(--bws-dark);
  transform: translateY(-2px);
}

/* ========================================
   HERO SECTION (Homepage)
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--bws-blue) 0%, var(--bws-dark) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><rect fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1" width="40" height="20" x="0" y="0" rx="2"/><rect fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1" width="40" height="20" x="40" y="20" rx="2"/><rect fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1" width="40" height="20" x="0" y="40" rx="2"/><rect fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1" width="40" height="20" x="40" y="60" rx="2"/></svg>') repeat;
  background-size: 80px 80px;
  animation: brickSlide 20s linear infinite;
}

@keyframes brickSlide {
  from { transform: translate(0, 0); }
  to { transform: translate(80px, 80px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--bws-white);
  font-size: 3rem;
  margin-bottom: 0.3em;
  text-shadow: 2px 2px 0 var(--bws-red);
}

.hero h1 span {
  color: var(--bws-yellow);
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 2em;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   CARDS (Generic)
   ======================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 30px 0;
}

.card {
  background: var(--bws-white);
  border-radius: var(--bws-radius);
  overflow: hidden;
  box-shadow: var(--bws-shadow);
  transition: var(--bws-transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bws-shadow-hover);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bws-grey);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--bws-transition);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 20px;
}

.card-meta {
  font-size: 0.85rem;
  color: var(--bws-text-light);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-title a {
  color: var(--bws-dark);
}
.card-title a:hover { color: var(--bws-red); }

.card-excerpt {
  font-size: 0.9rem;
  color: var(--bws-text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--bws-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-card .card-price {
  font-family: var(--bws-font-heading);
  font-size: 1.5rem;
  color: var(--bws-red);
  font-weight: 700;
}

.product-card .card-brand {
  display: inline-block;
  background: var(--bws-blue);
  color: var(--bws-white);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.affiliate-btn {
  display: inline-block;
  background: var(--bws-yellow);
  color: var(--bws-dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--bws-font-heading);
  transition: var(--bws-transition);
  font-size: 0.9rem;
}
.affiliate-btn:hover {
  background: var(--bws-red);
  color: var(--bws-white);
  transform: translateY(-2px);
}

/* ========================================
   CREATOR CARDS
   ======================================== */
.creator-card {
  text-align: center;
}

.creator-card .card-image {
  aspect-ratio: 1;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: 20px auto 0;
  overflow: hidden;
}

.creator-card .social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bws-grey);
  color: var(--bws-text);
  font-size: 0.85rem;
  transition: var(--bws-transition);
}
.social-link:hover {
  background: var(--bws-red);
  color: var(--bws-white);
  transform: scale(1.15);
}

/* ========================================
   SOCIAL LINK HOVER COLOURS
   ======================================== */
.social-link--youtube:hover {
  background: #FF0000;
  color: var(--bws-white);
}

.social-link--tiktok:hover {
  background: var(--bws-dark);
  color: var(--bws-white);
}

.social-link--instagram:hover {
  background: #E1306C;
  color: var(--bws-white);
}

/* ========================================
   SECTION HEADINGS
   ======================================== */
.section-heading {
  text-align: center;
  padding: 50px 20px 10px;
}

.section-heading h2 {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: var(--bws-red);
  border-radius: 5px;
  margin: 10px auto 0;
}

.section-heading p {
  color: var(--bws-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 10px auto 0;
}

/* ========================================
   BLOG / ARCHIVE
   ======================================== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 40px 0;
}

@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
}

.blog-posts .card-grid {
  padding-top: 0;
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.widget {
  background: var(--bws-white);
  border-radius: var(--bws-radius);
  padding: 25px;
  box-shadow: var(--bws-shadow);
}

.widget h3 {
  font-size: 1.1rem;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--bws-red);
  margin-bottom: 15px;
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget li {
  padding: 8px 0;
  border-bottom: 1px solid var(--bws-grey);
}

.widget li:last-child { border-bottom: none; }

.widget a {
  color: var(--bws-text);
  font-weight: 600;
}
.widget a:hover { color: var(--bws-red); }

/* ========================================
   SINGLE POST
   ======================================== */
.single-post-header {
  background: linear-gradient(135deg, var(--bws-dark) 0%, var(--bws-blue) 100%);
  padding: 60px 20px;
  text-align: center;
  color: var(--bws-white);
}

.single-post-header h1 {
  color: var(--bws-white);
  font-size: 2.5rem;
  max-width: 800px;
  margin: 0 auto 15px;
}

.single-post-header .post-meta {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.single-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: var(--bws-white);
  border-radius: var(--bws-radius);
  box-shadow: var(--bws-shadow);
  margin-top: -30px;
  position: relative;
  z-index: 1;
}

.single-content p { font-size: 1.05rem; }

.single-content h2 {
  margin-top: 1.5em;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--bws-yellow);
}

.single-content img {
  border-radius: var(--bws-radius-sm);
  margin: 1.5em 0;
}

.single-content blockquote {
  border-left: 5px solid var(--bws-red);
  padding: 15px 20px;
  margin: 1.5em 0;
  background: rgba(227,6,19,0.05);
  border-radius: 0 var(--bws-radius-sm) var(--bws-radius-sm) 0;
  font-style: italic;
}

/* ========================================
   COMMENTS
   ======================================== */
.comments-area {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  background: var(--bws-white);
  border-radius: var(--bws-radius);
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: var(--bws-shadow);
}

.comment-respond {
  background: var(--bws-white);
  padding: 30px;
  border-radius: var(--bws-radius);
  box-shadow: var(--bws-shadow);
}

/* ========================================
   FORMS
   ======================================== */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--bws-grey);
  border-radius: var(--bws-radius-sm);
  font-family: var(--bws-font);
  font-size: 1rem;
  transition: var(--bws-transition);
  background: var(--bws-white);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--bws-blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.15);
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 0.95rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--bws-dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 20px 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-col h4 {
  color: var(--bws-yellow);
  font-family: var(--bws-font-heading);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  color: rgba(255,255,255,0.7);
}
.footer-col a:hover {
  color: var(--bws-yellow);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bws-dark-light);
  color: var(--bws-white);
  transition: var(--bws-transition);
}
.footer-social a:hover {
  background: var(--bws-red);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.footer-bottom .heart { color: var(--bws-red); }

/* ========================================
   PAGE HEADER (inner pages)
   ======================================== */
.page-header {
  background: linear-gradient(135deg, var(--bws-dark) 0%, var(--bws-blue) 100%);
  padding: 50px 20px;
  text-align: center;
}

.page-header h1 {
  color: var(--bws-white);
  font-size: 2.5rem;
  margin-bottom: 0.2em;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}

/* ========================================
   SEARCH
   ======================================== */
.search-form {
  display: flex;
  gap: 10px;
}

.search-form input[type="search"] {
  flex: 1;
}

.search-form button {
  padding: 12px 24px;
  background: var(--bws-red);
  color: white;
  border: none;
  border-radius: var(--bws-radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--bws-transition);
}
.search-form button:hover { background: var(--bws-dark); }

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 30px 0;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--bws-radius-sm);
  font-weight: 700;
  transition: var(--bws-transition);
}

.pagination a {
  background: var(--bws-white);
  color: var(--bws-text);
  box-shadow: var(--bws-shadow);
}
.pagination a:hover {
  background: var(--bws-red);
  color: var(--bws-white);
  transform: translateY(-2px);
}

.pagination .current {
  background: var(--bws-red);
  color: var(--bws-white);
}

/* Load More Button */
.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--bws-red), #c00510);
  color: var(--bws-white);
  border: none;
  border-radius: 50px;
  font-family: var(--bws-font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 16px rgba(227,6,19,0.3);
}

.btn-load-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227,6,19,0.4);
}

.btn-load-more.loading {
  opacity: 0.7;
  cursor: wait;
}

/* ========================================
   404 PAGE
   ======================================== */
.error-404 {
  text-align: center;
  padding: 80px 20px;
}

.error-404 h1 {
  font-size: 8rem;
  color: var(--bws-red);
  line-height: 1;
}

.error-404 h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}

/* ========================================
   FILTERS (Products)
   ======================================== */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--bws-grey);
  border-radius: 50px;
  background: var(--bws-white);
  font-family: var(--bws-font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--bws-transition);
  font-size: 0.9rem;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--bws-red);
  color: var(--bws-white);
  border-color: var(--bws-red);
}

/* ========================================
   SUBMISSION FORM (Creator Directory)
   ======================================== */
.submission-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: var(--bws-white);
  border-radius: var(--bws-radius);
  box-shadow: var(--bws-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--bws-red);
  color: var(--bws-white);
  border: none;
  border-radius: 50px;
  font-family: var(--bws-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--bws-transition);
}
.submit-btn:hover {
  background: var(--bws-dark);
  transform: translateY(-2px);
}

/* ========================================
   CARD PLACEHOLDERS
   ======================================== */
.card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bws-dark) 0%, var(--bws-blue) 100%);
  text-decoration: none;
}

.card-placeholder-text {
  color: rgba(255,255,255,0.6);
  font-family: var(--bws-font-heading);
  font-size: 1rem;
  font-weight: 600;
}

/* Creator avatar placeholder */
.creator-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bws-dark) 0%, var(--bws-blue) 100%);
  text-decoration: none;
}

.creator-placeholder-initial {
  color: var(--bws-white);
  font-family: var(--bws-font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.creator-card .card-image {
  width: 150px;
  height: 150px;
}

/* ========================================
   VERIFIED BADGE
   ======================================== */
.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--bws-blue);
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
}
.verified-badge svg {
  width: 12px;
  height: 12px;
  fill: white;
}

/* ========================================
   CREATOR FILTERS
   ======================================== */
.creator-filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bws-white);
  border-radius: var(--bws-radius);
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: var(--bws-shadow);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-group label {
  font-weight: 700;
  font-family: var(--bws-font-heading);
  font-size: 0.95rem;
  color: var(--bws-dark);
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sort-controls {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sort-controls select {
  flex: 0 0 200px;
}

.search-creators {
  flex: 1;
  max-width: 300px;
}

/* ========================================
   CREATOR INFO BOX
   ======================================== */
.creator-info-box {
  background: var(--bws-white);
  border-radius: var(--bws-radius);
  padding: 25px;
  margin-top: 30px;
  box-shadow: var(--bws-shadow);
}

.creator-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.creator-info-item svg {
  width: 18px;
  height: 18px;
  fill: var(--bws-text-light);
  flex-shrink: 0;
}

.content-focus-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.focus-tag {
  background: var(--bws-grey);
  color: var(--bws-text);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.subscriber-count {
  font-weight: 700;
  color: var(--bws-blue);
}

/* ========================================
   CLAIM PROFILE SECTION
   ======================================== */
.claim-profile-section {
  background: rgba(26, 86, 219, 0.05);
  border: 2px dashed var(--bws-blue);
  border-radius: var(--bws-radius);
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.claim-profile-section h3 {
  color: var(--bws-blue);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.claim-profile-section p {
  color: var(--bws-text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

#claim-form-container {
  background: var(--bws-white);
  padding: 30px;
  border-radius: var(--bws-radius-sm);
  text-align: left;
  max-width: 550px;
  margin: 20px auto 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#claim-form-container .form-group {
  margin-bottom: 20px;
}

#claim-form-container label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--bws-dark);
  font-size: 0.95rem;
}

#claim-form-container textarea {
  resize: vertical;
  min-height: 100px;
}

#claim-form-container button {
  margin-right: 10px;
}

.claim-success {
  background: #d4edda;
  border: 2px solid #c3e6cb;
  color: #155724;
  padding: 20px;
  border-radius: var(--bws-radius-sm);
  font-size: 1rem;
  line-height: 1.6;
}

.claim-success strong {
  color: #0f4620;
  font-size: 1.1rem;
}

.claim-error {
  background: #f8d7da;
  border: 2px solid #f5c6cb;
  color: #721c24;
  padding: 20px;
  border-radius: var(--bws-radius-sm);
  font-size: 1rem;
  line-height: 1.6;
}

.claim-error strong {
  color: #491217;
  font-size: 1.1rem;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bws-red);
  color: var(--bws-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(227,6,19,0.4);
  transition: var(--bws-transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--bws-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ========================================
   CREATOR DASHBOARD
   ======================================== */
.dashboard-container {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  padding: 40px 20px;
}

.dashboard-card {
  background: var(--bws-white);
  border-radius: var(--bws-radius);
  padding: 30px;
  box-shadow: var(--bws-shadow);
}

.dashboard-card h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--bws-red);
}

/* Preview Card */
.dashboard-preview {
  align-self: start;
  position: sticky;
  top: 100px;
}

.dashboard-preview-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.dashboard-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.dashboard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-preview-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.dashboard-location {
  color: var(--bws-text-light);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

/* Dashboard form fields */
.dashboard-field {
  margin-bottom: 20px;
}

.dashboard-field label {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--bws-dark);
}

.dashboard-field input,
.dashboard-field textarea,
.dashboard-field select {
  width: 100%;
}

.dashboard-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* Content focus checkboxes */
.focus-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.focus-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

.focus-checkbox input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

/* Dashboard save button */
.dashboard-save-btn {
  background: var(--bws-red);
  color: var(--bws-white);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-family: var(--bws-font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--bws-transition);
}

.dashboard-save-btn:hover {
  background: var(--bws-dark);
  transform: translateY(-2px);
}

.dashboard-save-message {
  display: inline-block;
  margin-left: 15px;
  font-size: 0.9rem;
  color: #155724;
  font-weight: 600;
}

/* Dashboard avatar upload */
.avatar-upload-section {
  margin-bottom: 20px;
}

.avatar-preview {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  border: 3px solid var(--bws-grey);
}

.avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .dashboard-container {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    position: static;
  }
}

/* ========================================
   RESPONSIVE (Creator additions)
   ======================================== */
@media (max-width: 768px) {
  .creator-filters {
    padding: 15px;
  }
  .filter-buttons {
    gap: 5px;
  }
  .sort-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .sort-controls select,
  .search-creators {
    max-width: 100%;
    flex: auto;
  }
  .claim-profile-section {
    padding: 20px;
  }
  #claim-form-container {
    padding: 20px;
  }
  #claim-form-container button {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

/* ========================================
   RESPONSIVE (General)
   ======================================== */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero { padding: 50px 20px; }
  .hero h1 { font-size: 2rem; }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .section-heading h2 { font-size: 1.7rem; }
  .error-404 h1 { font-size: 5rem; }

  .single-post-header h1 { font-size: 1.8rem; }
  .single-content { margin-top: -15px; }
}

/* ========================================
   UTILITY
   ======================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 40px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ========================================
   JOIN THE CREATOR DIRECTORY PAGE
   ======================================== */

/* ── Hero ── */
.join-hero {
  background: linear-gradient(135deg, var(--bws-dark) 0%, #16213E 60%, #1A3a7a 100%);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.join-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.join-hero-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.join-hero-text h1 {
  color: var(--bws-white);
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.join-hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── Perks list ── */
.join-perks {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.join-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.join-perk-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 38px;
  text-align: center;
  line-height: 1.3;
}

.join-perks li div { flex: 1; }

.join-perks li strong {
  display: block;
  color: var(--bws-white);
  font-family: var(--bws-font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.join-perks li p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

/* ── Form card ── */
.join-form-card {
  background: var(--bws-white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.join-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.join-form-sub {
  color: var(--bws-text-light);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

/* ── Form elements inside the join card ── */
.join-form-card .form-group label,
.join-form-card .form-group > label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: #444;
  margin-bottom: 5px;
  font-family: var(--bws-font);
}

.join-form-card input[type="text"],
.join-form-card input[type="email"],
.join-form-card input[type="url"],
.join-form-card textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #EBEBEB;
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: var(--bws-font);
  color: var(--bws-text);
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}

.join-form-card input[type="text"]:focus,
.join-form-card input[type="email"]:focus,
.join-form-card input[type="url"]:focus,
.join-form-card textarea:focus {
  outline: none;
  border-color: var(--bws-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}

.field-hint {
  display: block;
  font-size: 0.77rem;
  color: #aaa;
  margin-top: 4px;
}

/* ── Social handle inputs ── */
.social-input-group {
  display: flex;
  border: 2px solid #EBEBEB;
  border-radius: 8px;
  overflow: hidden;
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.social-input-group:focus-within {
  border-color: var(--bws-blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
  background: #fff;
}

.social-input-prefix {
  padding: 10px 12px;
  background: #F0F2F7;
  border-right: 2px solid #EBEBEB;
  color: #888;
  font-size: 0.82rem;
  font-family: var(--bws-font);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.social-input-group input[type="text"] {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-family: var(--bws-font);
  color: var(--bws-text);
  min-width: 0;
  box-shadow: none !important;
}

.social-input-group input[type="text"]:focus {
  outline: none;
  box-shadow: none !important;
}

/* ── Section label ── */
.join-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bbb;
  margin: 4px 0 12px;
  padding-top: 16px;
  border-top: 1px solid #F0F0F0;
}

/* ── Content focus checkboxes ── */
.join-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-checkbox {
  display: inline-flex;
  align-items: center;
  background: #F4F6FA;
  border: 2px solid #EBEBEB;
  border-radius: 50px;
  padding: 5px 14px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  color: #666;
  transition: all 0.15s;
  user-select: none;
  font-family: var(--bws-font);
}

.dashboard-checkbox:hover {
  border-color: var(--bws-blue);
  color: var(--bws-blue);
  background: #EFF4FF;
}

.dashboard-checkbox input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.dashboard-checkbox:has(input:checked) {
  background: var(--bws-blue);
  border-color: var(--bws-blue);
  color: #fff;
}

/* ── Error / success messages ── */
.join-error-msg {
  background: #FFF5F5;
  border: 1px solid #FEB2B2;
  color: #C53030;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.join-success-msg {
  text-align: center;
  padding: 10px 0;
}

.join-success-icon {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.join-success-msg h2 { margin-bottom: 8px; }
.join-success-msg p  { color: var(--bws-text-light); margin-bottom: 20px; }

/* ── Terms note ── */
.join-terms {
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}

/* ── Submit button ── */
.join-submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px 28px;
  font-size: 1.05rem;
}

/* ── Already logged in card ── */
.join-already {
  text-align: center;
  padding: 10px 0;
}

.join-already-icon {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.join-already h2 { margin-bottom: 8px; }
.join-already p  { color: var(--bws-text-light); margin-bottom: 20px; }

/* ── How it works section ── */
.join-how {
  padding: 70px 20px;
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.join-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--bws-white);
  border-radius: var(--bws-radius);
  box-shadow: var(--bws-shadow);
  border: 1px solid #F0F0F0;
}

.join-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--bws-red), #c00510);
  color: var(--bws-white);
  font-family: var(--bws-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(227,6,19,0.3);
}

.join-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.join-step p {
  color: var(--bws-text-light);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

/* ── Join page responsive ── */
@media (max-width: 960px) {
  .join-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .join-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .join-hero { padding: 40px 0 50px; }
  .join-hero-text h1 { font-size: 1.85rem; }
  .join-form-card { padding: 24px 20px; }
  .join-how { padding: 50px 16px; }
  .join-steps { grid-template-columns: 1fr; gap: 16px; }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

/* Skip-to-content link — hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background: var(--bws-dark);
  color: var(--bws-yellow);
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0 0 var(--bws-radius-sm) var(--bws-radius-sm);
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--bws-yellow);
  outline-offset: -3px;
}

/* Visible focus outlines for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--bws-blue);
  outline-offset: 2px;
}

/* Focus styles on dark backgrounds (header, footer) */
.site-header a:focus-visible,
.site-header button:focus-visible,
.site-footer a:focus-visible {
  outline-color: var(--bws-yellow);
}

/* Button focus styles */
.btn:focus-visible {
  outline: 3px solid var(--bws-yellow);
  outline-offset: 2px;
}

/* Card focus styles */
.card-title a:focus-visible {
  outline: 2px solid var(--bws-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Navigation focus */
.main-nav a:focus-visible {
  outline-color: var(--bws-yellow);
  outline-offset: -2px;
}

/* Social icon focus */
.social-link:focus-visible {
  outline: 3px solid var(--bws-blue);
  outline-offset: 2px;
}

/* Filter button focus */
.filter-btn:focus-visible {
  outline: 3px solid var(--bws-blue);
  outline-offset: 2px;
}

/* Back to top focus */
.back-to-top:focus-visible {
  outline: 3px solid var(--bws-blue);
  outline-offset: 2px;
}

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
}
.no-results h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}
.no-results p {
  color: var(--bws-text-light);
  max-width: 500px;
  margin: 0 auto 1.5em;
}
.no-results-search {
  max-width: 400px;
  margin: 0 auto 1.5em;
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumbs {
  max-width: var(--bws-container-width);
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 0.85rem;
  color: var(--bws-text-light);
}
.breadcrumbs a {
  color: var(--bws-blue);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumb-sep {
  margin: 0 6px;
  color: var(--bws-grey);
}
