/* ==========================================================================
   LBA Blog Design — Static HTML Version
   Converted from Figma Make export
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Brand Colors */
  --color-dark:        #231f20;        /* nav/footer background */
  --color-primary:     #030213;        /* body text, headings */
  --color-accent:      #e96443;        /* event bar, CTAs */
  --color-muted:       #717182;        /* secondary text */
  --color-muted-alt:   #58575c;        /* article body text */
  --color-muted-num:   #818386;        /* sidebar numbers */
  --color-label:       #6b7280;        /* author label, dates */
  --color-bg:          #ffffff;
  --color-bg-light:    #f5f6f8;        /* sidebar card background */
  --color-border:      rgba(0,0,0,0.1);
  --color-border-light: #f5f6f8;
  --color-border-subtle: rgba(168,168,168,0.3);

  /* Typography Families */
  --font-serif:        'Tenor Sans', serif;         /* section headings */
  --font-sans:         'Montserrat', sans-serif;    /* nav, labels, CTAs */
  --font-body:         'Public Sans', sans-serif;   /* descriptions, body */
  --font-article:      'Roboto', sans-serif;        /* article prose */

  /* Type Scale */
  --text-xs:    10px;
  --text-sm:    12px;
  --text-base:  14px;
  --text-md:    16px;
  --text-lg:    18px;
  --text-xl:    24px;
  --text-2xl:   36px;
  --text-hero:  48px;

  /* Spacing */
  --space-1:  8px;
  --space-2:  12px;
  --space-3:  16px;
  --space-4:  24px;
  --space-5:  32px;
  --space-6:  48px;
  --space-7:  64px;
  --space-8:  80px;
  --space-9:  96px;

  /* Layout */
  --max-width:    1280px;
  --content-px:   48px;
  --radius:        12px;
  --radius-sm:      4px;
  --header-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

/* ==========================================================================
   1b. ACCESSIBILITY UTILITIES
   ========================================================================== */

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--color-dark);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Global focus indicators */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
/* Remove outline on mouse click (keep for keyboard) */
:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   3. LAYOUT UTILITIES
   ========================================================================== */
.content-wrapper {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--content-px);
  padding-right: var(--content-px);
  width: 100%;
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--header-shadow);
  -webkit-font-smoothing: auto;
}

/* Top event bar (dark, 32px) */
.top-bar {
  background: var(--color-dark);
  min-height: 32px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--content-px);
  max-width: 90rem;
  margin: 0 auto;
}

.top-bar-event {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 16px;
  color: var(--color-accent);
}

.top-bar-event strong {
  font-weight: 600;
}

/* FA icons need antialiased to render correctly as icon fonts */
.top-bar-links i {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
  margin-right: 0.075rem;
}

/* Top bar right links */
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-links li a {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  color: #fff;
  line-height: 16px;
  padding: 7.5px 0;
  display: block;
  transition: text-shadow 0.15s;
}

.top-bar-links li a:hover {
  text-shadow: 1px 0 0 white;
}

.nav-divider {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: #a8a8a8;
  line-height: 1;
}

.nav-login {
  font-weight: 400 !important;
}

/* Main nav (white, 82px) */
.main-nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--content-px);
  gap: var(--space-5);
  min-height: 82px;
  max-width: 90rem;
  margin: 0 auto;
}

.nav-logo {
  align-self: center;
}

.nav-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* Product category links (center of main nav) */
.product-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 44px;
}

.product-nav-links li {
  height: 100%;
  display: flex;
  align-items: center;
}

.product-nav-links li a {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-dark);
  text-transform: uppercase;
  line-height: 20px;
  white-space: nowrap;
  padding: 0 16px;
  transition: opacity 0.15s;
}

.product-nav-links li:first-child a {
  padding-left: 0;
}

.product-nav-links li a:hover {
  opacity: 0.6;
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-toggle-close { display: none; }
.nav-toggle-back  { display: none; }

.site-header.is-open .nav-toggle-bars                    { display: none; }
.site-header.is-open .nav-toggle-close                   { display: block; }
.site-header.has-submenu-open .nav-toggle-close          { display: none; }
.site-header.has-submenu-open .nav-toggle-back           { display: block; }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile open state */
.site-header.is-open .top-bar-links {
  display: flex;
}

/* ==========================================================================
   5. HERO FEATURED SECTION
   ========================================================================== */
.hero-featured {
  position: relative;
  z-index: 0; /* explicit stacking context keeps hero below sticky header (z-index:100) */
  height: 630px;
  min-height: 500px;
  overflow: hidden;
  width: 100%;
}

.hero-featured .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0) 70%);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: var(--space-7);
  max-width: 797px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.hero-content h1, .hero-content h2 {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: 1.2px;
  margin: 0;
}

.hero-content p {
  font-family: var(--font-article);
  font-size: var(--text-md);
  color: rgba(255,255,255,0.8);
  line-height: 24px;
  max-width: 650px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  width: fit-content;
  transition: opacity 0.15s;
}

.read-more-link:hover {
  opacity: 0.8;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
}

.hero-arrow i {
  font-size: 24px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-arrow:hover {
  opacity: 1;
}

.hero-prev {
  left: 0;
}

.hero-next {
  right: 0;
}

.hero-dots {
  position: absolute;
  bottom: var(--space-7);
  right: var(--space-7);
  display: flex;
  gap: 7px;
  align-items: center;
}

.hero-dots .dot {
  height: 10px;
  border-radius: 70px;
  background: rgba(255,255,255,0.5);
  width: 22px;
}

.hero-dots .dot.active {
  background: #fff;
  width: 44px;
}

/* Dot buttons — reset and ensure aria-current styles match active */
.hero-dots .dot {
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hero-dots .dot[aria-current="true"] {
  background: #fff;
  width: 44px;
}

/* Pause button */
.hero-pause-btn {
  position: absolute;
  bottom: 16px;
  right: 60px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* ==========================================================================
   6. MAGAZINE GRID (2/3 + 1/3)
   ========================================================================== */
.magazine-grid-section {
  padding: var(--space-9) 0;
}

.magazine-grid {
  display: flex;
  gap: var(--space-7);
  align-items: flex-start;
  width: 100%;
}

/* Section heading row with border */
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--color-border-light);
  width: 100%;
}

.section-heading-row h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 40px;
}

.section-heading-row p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-muted-alt);
  line-height: 28px;
  max-width: 576px;
}

/* Left main column */
.magazine-main {
  flex: 0 0 calc(66.67% - 32px);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.magazine-articles {
  display: flex;
  gap: var(--space-6);
}

/* Article card (left main) */
.article-card-featured {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-card-featured .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.article-card-featured .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card-featured:hover .card-image img {
  transform: scale(1.03);
}

.card-category-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-label);
}

/* Wrapper that groups category label + title with correct 12px gap */
.card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title-serif {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 32px;
}

.card-title-serif a {
  transition: opacity 0.15s;
}

.card-title-serif a:hover {
  opacity: 0.7;
}

.card-excerpt {
  font-family: var(--font-article);
  font-size: var(--text-md);
  color: var(--color-muted-alt);
  line-height: 24px;
  flex: 1;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8.7px;
  border-top: 1px solid var(--color-border-subtle);
}

.card-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.card-author-name {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-dark);
  line-height: 16px;
}

.card-author-role {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-label);
  line-height: 15px;
}

/* Load More button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  border: 1px solid var(--color-dark);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: background 0.15s, color 0.15s;
}

.btn-outline:hover {
  background: var(--color-dark);
  color: #fff;
}

.load-more-row {
  display: flex;
  justify-content: center;
}

/* Right sidebar */
.magazine-sidebar {
  flex: 0 0 calc(33.33% - 32px);
  align-self: stretch;
}

.sidebar-card {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.sidebar-heading {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 28px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--color-border-light);
}

.sidebar-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.sidebar-num {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-muted-num);
  line-height: 36px;
  flex-shrink: 0;
}

.sidebar-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-item-title {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 20px;
}

.sidebar-item-cat {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-muted-alt);
  line-height: 15px;
}

/* Sidebar secondary cards */
.sidebar-article-card {
  border: 1px solid var(--color-border-light);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* The Curator's Letter sidebar panel — grey rounded card per Figma */
.curator-letter {
  margin-top: var(--space-4);
  background: transparent;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Suppress the underline border on the heading inside the curator card
   (the sidebar-heading rule adds one by default, creating a duplicate separator) */
.curator-letter .sidebar-heading {
  border-bottom: none;
  padding-bottom: 0;
}

.curator-quote {
  font-family: var(--font-article);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-muted-alt);
  line-height: 22px;
  font-style: italic;
}

.curator-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.curator-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-border-light);
}

/* ==========================================================================
   7. BREAKOUT SECTION (Seasonal Palettes)
   ========================================================================== */
.breakout-section {
  width: 100%;
  padding: 65px 0 0;
}

.breakout-section > .content-wrapper::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--color-border-light);
  margin-top: 65px;
}

.breakout-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.breakout-header--heading-only .breakout-intro h2 {
  margin-bottom: 0;
}

.breakout-intro h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 40px;
  margin-bottom: var(--space-3);
}

.breakout-intro p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-muted-alt);
  line-height: 28px;
  max-width: 576px;
}

/* Button styles */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.btn-dark:hover {
  opacity: 0.85;
}

/* Palette / article image grid */
.palette-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.palette-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.palette-card .palette-image {
  width: 100%;
  height: 256px;
  overflow: hidden;
  display: block;
}

.palette-card .palette-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.palette-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.palette-card-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 32px;
}

.palette-card-title a {
  transition: opacity 0.15s;
}

.palette-card-title a:hover {
  opacity: 0.7;
}

.palette-card-desc {
  font-family: var(--font-article);
  font-size: var(--text-md);
  color: var(--color-muted-alt);
  line-height: 24px;
}

/* ==========================================================================
   8. JOURNAL / LATEST SECTION
   ========================================================================== */
.journal-section {
  padding: var(--space-9) 0;
}

.journal-section > .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}

.journal-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  padding-bottom: 17px;
  border-bottom: 1px solid var(--color-border-light);
}

.journal-section-heading > div {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journal-section-heading h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 40px;
}

.journal-section-heading p {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-muted-alt);
  line-height: 28px;
  max-width: 576px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

/* Journal article card */
.journal-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journal-card-image {
  width: 100%;
  height: 222px;
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.journal-card-cat {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2.7px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: var(--space-1);
  line-height: 13.5px;
}

.journal-card-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 32px;
  margin-bottom: var(--space-3);
}

.journal-card-title a {
  transition: opacity 0.15s;
}

.journal-card-title a:hover {
  opacity: 0.7;
}

.journal-card-excerpt {
  font-family: var(--font-article);
  font-size: var(--text-md);
  color: var(--color-muted-alt);
  line-height: 24px;
  margin-bottom: var(--space-4);
  flex: 1;
}

.journal-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8.7px;
  border-top: 1px solid var(--color-border-subtle);
}

.journal-card-author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.journal-cta {
  display: flex;
  justify-content: center;
  padding-top: var(--space-3);
}

/* ==========================================================================
   9. FOOTER — Tailwind integration overrides
   The Tailwind utility classes on #footer use CSS custom properties
   (--text-sm, --text-base, etc.) that share names with our px-based
   scale above. Scope Tailwind's rem-based standard values to #footer
   so its utilities render at the correct sizes without touching the
   rest of the theme. Also pins Montserrat and white text for the footer.
   ========================================================================== */
#footer {
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  color: #fff;
}

#footer a {
  color: inherit;
}

#footer a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   10. ARTICLE PAGE — BREADCRUMB
   ========================================================================== */
.breadcrumb-bar {
  padding: var(--space-6) var(--content-px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-label);
}

.breadcrumb a {
  transition: opacity 0.15s;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb-sep {
  color: var(--color-label);
  font-size: 10px;
}

.breadcrumb-current {
  color: var(--color-dark);
  font-weight: 600;
}

/* ==========================================================================
   10b. ARTICLE PAGE — BODY
   ========================================================================== */
.article-body-wrap {
  max-width: 950px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Separator below article body */
.article-body-wrap hr {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: 32px 0;
}

.article-para {
  font-family: var(--font-article);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-muted-alt);
  line-height: 29.25px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.article-para--lg {
  font-size: 20px;
  line-height: 32.5px;
}

/* Full-width in-article image */
.article-wide-image {
  width: 100%;
  max-height: 534px;
  overflow: hidden;
}

.article-wide-image img {
  width: 100%;
  height: 534px;
  object-fit: cover;
}

/* Editorial images: 2-col layout */
.editorial-story-wrap {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.editorial-col-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.editorial-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.editorial-img-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.editorial-img-frame {
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.editorial-img-frame--landscape {
  aspect-ratio: 568 / 338;
  width: 100%;
}

.editorial-img-frame--portrait {
  aspect-ratio: 568 / 734;
  width: 100%;
  height: 100%;
}

.editorial-col-right .editorial-img-item {
  flex: 1;
  height: 100%;
}

.editorial-col-right .editorial-img-frame--portrait {
  flex: 1;
}

.editorial-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-caption {
  font-family: var(--font-article);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-muted-alt);
  text-align: center;
  line-height: 16px;
}

/* Pull quote — centered, top+bottom border, full article width */
.pull-quote-centered {
  width: 100%;
  padding: 49px 0;
  border-top: 1px solid var(--color-muted-num);
  border-bottom: 1px solid var(--color-muted-num);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.pull-quote-centered blockquote {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 40px;
}

.pull-quote-centered cite {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-muted-alt);
  line-height: 20px;
  text-align: center;
  display: block;
}

/* Last article paragraph — color override to dark */
.article-body-wrap p:last-child.article-para {
  color: var(--color-dark);
}

/* Product grid centered variant */
.product-grid-header--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: none;
}

.product-grid-header--centered h2,
.product-grid-header--centered p {
  text-align: center;
  width: 100%;
}

.product-grid-sub {
  font-family: var(--font-article);
  font-size: 12px;
  color: var(--color-muted-alt);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 16px;
  text-align: center;
}

.product-grid--figma {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.product-card--figma .product-card-image {
  aspect-ratio: 1;
  height: 338px;
}

.product-card-info--centered {
  align-items: center;
  text-align: center;
}

.product-card-info--centered .product-card-name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 28px;
  text-align: center;
}

.product-card-medium {
  font-family: var(--font-article);
  font-size: 12px;
  color: var(--color-muted-alt);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  padding-bottom: 16px;
  line-height: 16px;
}

.product-card-btn--full {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  padding: 12px 0;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-article);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--color-dark);
  transition: opacity 0.15s;
}

.product-card-btn--full:hover {
  opacity: 0.85;
}

/* ==========================================================================
   11. ARTICLE PAGE — HERO
   ========================================================================== */
.article-hero {
  position: relative;
  height: 528px;
  overflow: hidden;
  border-radius: var(--radius);
  max-width: var(--max-width);
  margin: 0 auto var(--space-4);
  padding: 0 24px;
}

.article-hero-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-hero-inner img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0) 72%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 48px;
}

.article-hero-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.article-hero-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: #fff;
  line-height: 40px;
}

/* Article meta row (author + date) — matches hero image width (1232px) */
.article-meta {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 33px;
  border-bottom: 1px solid rgba(236,91,19,0.1);
}

.article-meta-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8.7px;
}

.article-meta-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-bg-light);
}

.article-meta-author-name {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-dark);
}

.article-meta-author-role {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-label);
}

.article-meta-details {
  display: flex;
  gap: 32px;
  align-items: center;
}

.article-meta-details span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-label);
}

/* ==========================================================================
   12. ARTICLE PAGE — EDITORIAL STORY (3-col image)
   ========================================================================== */
.editorial-story {
  max-width: var(--max-width);
  margin: var(--space-8) auto;
  padding: 0 var(--content-px);
}

.editorial-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.editorial-image {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  position: relative;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   13. ARTICLE PAGE — BODY
   ========================================================================== */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--content-px);
}

.article-body p {
  font-family: var(--font-article);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-muted-alt);
  line-height: 32.5px;
  margin-bottom: var(--space-5);
}

.article-body p:last-child {
  margin-bottom: 0;
}

.pull-quote {
  border-left: 3px solid var(--color-accent);
  margin: var(--space-6) 0;
  padding: var(--space-4) var(--space-5);
  background: var(--color-bg-light);
}

.pull-quote blockquote {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 36px;
  font-style: italic;
  margin-bottom: var(--space-2);
}

.pull-quote cite {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-muted);
  font-style: normal;
}

/* ==========================================================================
   14. ARTICLE PAGE — PRODUCT GRID
   ========================================================================== */
.product-grid-section {
  padding: var(--space-9) 0;
}

.product-grid-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  padding-bottom: 17px;
  border-bottom: 1px solid var(--color-border-light);
}

.product-grid-header h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-light);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-light);
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-card-info {
  padding: var(--space-2) var(--space-2) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 20px;
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--color-dark);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-dark);
  width: fit-content;
  margin-top: 4px;
  transition: background 0.15s, color 0.15s;
}

.product-card-btn:hover {
  background: var(--color-dark);
  color: #fff;
}

/* ==========================================================================
   15. RELATED ARTICLES
   ========================================================================== */
.related-articles {
  padding: var(--space-7) 0 var(--space-9);
}

.related-articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: var(--space-5);
}

.related-articles-header h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 40px;
  text-align: center;
  width: 100%;
}

/* ==========================================================================
   16. RELATED WORKS SECTION
   ========================================================================== */

.related-works-section {
  padding: 0;
}

/* When rendered inside the article body (max-width 950px), break out to
   full viewport width so the 1280px content-wrapper can center correctly. */
.article-body-wrap .related-works-section {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Override .content-wrapper defaults to match Figma: flex column, left-aligned,
   80px vertical padding, 80px gap between header and grid. */
.related-works-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-8);
  padding: var(--space-8) 24px;
}

.related-works-header {
  width: 100%;
  text-align: center;
}

.related-works-section .related-works-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 40px;
  text-align: center;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 16px;
}

.related-works-subtitle {
  font-family: var(--font-article);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-muted-alt);
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.related-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.work-card-image-wrap {
  background: var(--color-bg-light);
  padding: 1px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.work-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.work-card:hover .work-card-image-wrap img {
  transform: scale(1.03);
}

.work-card-no-image {
  width: 100%;
  height: 100%;
  background: var(--color-bg-light);
}

.work-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}

.work-card-title {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 28px;
}

.work-card-medium {
  font-family: var(--font-article);
  font-size: var(--text-sm);
  color: var(--color-muted-alt);
  line-height: 16px;
  padding-bottom: 8px;
}

.work-card-btn {
  display: block;
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-article);
  font-size: var(--text-sm);
  font-weight: 700;
  text-align: center;
  padding: 13px 0;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.15s;
}

.work-card-btn:hover {
  opacity: 0.85;
  color: #fff;
}

.work-card-btn--no-link {
  cursor: default;
  opacity: 0.5;
}

.related-works-empty {
  padding: 40px;
  text-align: center;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  border: 2px dashed var(--color-border);
}

/* ==========================================================================
   17. RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  :root {
    --content-px: 32px;
  }

  .palette-grid,
  .related-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-works-section .content-wrapper {
    gap: var(--space-6);
    padding: var(--space-6) 24px;
  }

  .product-nav-links li a {
    padding: 0 10px;
    font-size: 12px;
  }

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

  .magazine-main {
    flex: 0 0 60%;
  }

  .magazine-sidebar {
    flex: 0 0 calc(40% - 64px);
  }
}

@media (max-width: 768px) {
  :root {
    --content-px: 20px;
  }

  .top-bar-inner {
    min-height: 40px;
    align-items: center;
    justify-content: center;
  }

  .top-bar-event {
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  /* Logo centered, hamburger left */
  .main-nav {
    position: relative;
    min-height: 40px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    justify-content: flex-start;
    align-items: center;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-self: center;
  }

  .nav-logo img,
  .nav-logo svg {
    width: 128px;
    height: 17.2px;
    object-fit: contain;
  }

  .top-bar-links {
    display: none;
  }

  .site-header.is-open .top-bar-links {
    display: none;
  }

  .top-bar {
    position: relative;
  }

  .product-nav-links {
    display: none;
  }

  /* Hero */
  .hero-content {
    padding: var(--space-4);
  }

  .hero-content h1, .hero-content h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-featured {
    height: 480px;
  }

  /* Magazine grid stacks */
  .magazine-grid {
    flex-direction: column;
  }

  .magazine-main,
  .magazine-sidebar {
    flex: none;
    width: 100%;
  }

  .magazine-articles {
    flex-direction: column;
  }

  /* Palette + Related Works grids */
  .palette-grid,
  .related-works-grid {
    grid-template-columns: 1fr;
  }

  .related-works-section .content-wrapper {
    gap: var(--space-5);
    padding: var(--space-5) 16px;
  }

  /* Journal grid */
  .journal-grid {
    grid-template-columns: 1fr;
  }

  /* Product grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Editorial images */
  .editorial-images {
    grid-template-columns: 1fr;
  }

  /* Mobile hero arrows */
  .hero-arrow {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .hero-arrow i {
    font-size: 18px;
  }

  .breadcrumb-bar {
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
  }

  .article-hero {
    height: auto;
    border-radius: 0;
    padding: 0;
  }

  /* Pull the image out of absolute positioning so it drives the
     container height. height: 100% of an auto parent resolves to 0. */
  .article-hero-inner {
    height: auto;
  }

  .article-hero-inner img.hero-bg {
    position: relative;
    height: 300px;
    width: 100%;
    object-fit: cover;
    display: block;
  }

  .article-hero-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  /* H1 on article hero capped at 335px on mobile */
  .article-hero-title {
    max-width: 335px;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-4) var(--content-px);
  }

  /* Prevent post titles from truncating on mobile */
  .article-hero-title,
  .journal-card-title,
  .card-title-serif {
    overflow: visible;
    -webkit-line-clamp: unset;
    display: block;
    white-space: normal;
  }

  /* Shop By Collection button — full width on mobile */
  .article-hero-header .btn-dark {
    white-space: normal;
    text-align: center;
    width: 100%;
  }

.article-wide-image img {
    height: auto;
    max-height: 300px;
  }

  .editorial-story-wrap {
    flex-direction: column;
  }

  .product-grid--figma {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .breakout-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .journal-section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-content h1, .hero-content h2 {
    font-size: 26px;
  }

  .palette-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Entrance animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-card-featured,
.palette-card,
.journal-card,
.article-wide-image,
.editorial-img-item {
  opacity: 0;
}

.article-card-featured.is-visible,
.palette-card.is-visible,
.journal-card.is-visible,
.article-wide-image.is-visible,
.editorial-img-item.is-visible {
  animation: fadeInUp 0.55s ease forwards;
}

/* ==========================================================================
   17. WORDPRESS CONTENT STYLES
   Styles standard Gutenberg/classic editor output within .article-body-wrap
   ========================================================================== */

/* All paragraphs and misc elements in the article body */
.article-body-wrap > p,
.article-body-wrap .wp-block-paragraph {
  font-family: var(--font-article);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-muted-alt);
  line-height: 29.25px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

/* First paragraph is larger */
.article-body-wrap > p:first-child,
.article-body-wrap .wp-block-paragraph:first-child {
  font-size: 20px;
  line-height: 32.5px;
}

/* Last paragraph slightly darker */
.article-body-wrap > p:last-of-type,
.article-body-wrap .wp-block-paragraph:last-child {
  color: var(--color-dark);
}

/* Headings in article body */
.article-body-wrap h2,
.article-body-wrap h3,
.article-body-wrap h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-dark);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.article-body-wrap h2 { font-size: 28px; line-height: 1.3; }
.article-body-wrap h3 { font-size: 22px; line-height: 1.35; }

/* Miscellaneous elements in article body */
.article-body-wrap > table,
.article-body-wrap > ul,
.article-body-wrap > ol,
.article-body-wrap > .wp-block-columns {
  font-family: var(--font-article);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-muted-alt);
  line-height: 29.25px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;  
}

/* List Styles */
.article-body-wrap > ul li, ul.wp-block-list li {
  list-style-type: disc;
}
.article-body-wrap > ol li, ol.wp-block-list li {
  list-style-type: decimal;
}

/* FAQs block — same contained width as paragraphs */
.article-body-wrap .lba-faqs {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

/* Audience Track CTA */
.article-body-wrap .audience-cta {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-4);
  background: var(--color-bg-light);
}

.article-body-wrap .lba-faqs h2,
.article-body-wrap .lba-faqs h3,
.article-body-wrap .lba-faqs h4,
.article-body-wrap .lba-faqs h5,
.article-body-wrap .lba-faqs h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body-wrap .lba-faqs p {
  margin-bottom: 1.5rem;
}

/* Post tag cloud */
.post-tags-wrap {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 24px var(--space-7);
}

.post-tags {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.03em;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.post-tag:hover,
.post-tag:focus-visible {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: #fff;
  outline: none;
}

/* Images in article body — full width */
.article-body-wrap figure,
.article-body-wrap .wp-block-image {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.article-body-wrap figure img,
.article-body-wrap .wp-block-image img {
  width: 100%;
  height: 534px;
  object-fit: cover;
  overflow: hidden;
  display: block;
}

.article-body-wrap figcaption,
.article-body-wrap .wp-block-image figcaption {
  font-family: var(--font-article);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: var(--color-muted-alt);
  text-align: center;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Blockquote / pull quote */
.article-body-wrap blockquote,
.article-body-wrap .wp-block-quote {
  width: 100%;
  padding: 49px 0;
  border-top: 1px solid var(--color-muted-num);
  border-bottom: 1px solid var(--color-muted-num);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  color: var(--color-dark);
  line-height: 40px;
  margin-left: 0;
  margin-right: 0;
  border-left: none;
}

.article-body-wrap blockquote cite,
.article-body-wrap .wp-block-quote cite {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-muted-alt);
  line-height: 20px;
  display: block;
}

/* Article image columns — restore WordPress default 2em layout gap that the
   frontend omits when no theme.json block-gap is configured */
.article-image-columns {
  gap: 2em;
}

.article-image-columns .wp-block-column > figure + figure,
.article-image-columns .wp-block-column > .wp-block-image + .wp-block-image {
  margin-top: 2em;
}

/* Gallery block */
.article-body-wrap .wp-block-gallery {
  margin-left: 0;
  margin-right: 0;
}

/* WordPress alignment helpers */
.article-body-wrap .alignwide,
.article-body-wrap .alignfull {
  width: 100%;
  max-width: 100%;
}

/* Separator */
.article-body-wrap hr,
.article-body-wrap .wp-block-separator {
  border: none;
  border-top: 1px solid var(--color-muted-num);
  margin: 49px auto;
  max-width: 768px;
}

/* Spacing */
.wp-block-group, .wp-block-columns, .columns-default {
  margin-bottom: 1em;
}

/* WP admin bar spacing */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* ==========================================================================
   18. HERO SLIDESHOW — MULTI-SLIDE
   ========================================================================== */

/* Each slide stacks on top of the others; only .is-active is visible */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-color: black;
  transition: opacity 1.25s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(214.33deg, rgba(0,0,0,0) 48.899%, rgba(0,0,0,0.7) 84.026%);
}

.hero-slide .hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: var(--space-7);
  max-width: 797px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Dot interaction */
.hero-dots .dot {
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

/* Ensure arrows sit above the slides */
.hero-arrow {
  z-index: 10;
}

/* ==========================================================================
   Synced Product Nav
   ========================================================================== */

/* ── Base nav container ────────────────────────────────────────────────── */
.lba-synced-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}

.lba-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 0.5rem 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Top-level nav items ───────────────────────────────────────────────── */
.lba-nav-item {
  position: relative;
}

.lba-nav-link--top {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 0 24px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--text-base);
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(35, 31, 32);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: normal;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}

.lba-nav-link--top:hover,
.lba-nav-link--top:focus-visible {
  color: #f05a47;
  text-shadow: 1px 0 0 #db7b6c;
  text-decoration: none;
}

/* Mobile vs desktop icon containers */
.lba-nav-mobile-icon {
  display: inline-flex;
  align-items: center;
}
.lba-nav-desktop-icon {
  display: none;
}
@media (min-width: 1024px) {
  .lba-nav-mobile-icon { display: none; }
  .lba-nav-desktop-icon { display: inline-flex; align-items: center; }
}

/* Toggle button layout: space-between on mobile, flex-start on desktop */
.lba-nav-toggle {
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 1024px) {
  .lba-nav-toggle {
    justify-content: flex-start;
    width: auto;
  }
}

/* Chevrons: down visible by default, up hidden */
.lba-chevron-up { display: none; }
.lba-chevron-down { display: inline-block; }

/* Desktop hover: swap chevrons */
@media (min-width: 1024px) {
  .lba-nav-item--has-dropdown:hover .lba-chevron-down,
  .lba-nav-item--has-megamenu:hover .lba-chevron-down { display: none; }
  .lba-nav-item--has-dropdown:hover .lba-chevron-up,
  .lba-nav-item--has-megamenu:hover .lba-chevron-up { display: inline-block; }
}

/* JS is-open: swap chevrons (keyboard / mobile click) */
.lba-nav-item--has-dropdown.is-open .lba-chevron-down,
.lba-nav-item--has-megamenu.is-open .lba-chevron-down { display: none; }
.lba-nav-item--has-dropdown.is-open .lba-chevron-up,
.lba-nav-item--has-megamenu.is-open .lba-chevron-up { display: inline-block; }

/* ── Dropdown panel ────────────────────────────────────────────────────── */
.lba-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 900;
  background: #fff;
  min-width: 280px;
  border-radius: 2px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
}

/* Desktop: show on hover */
@media (min-width: 1024px) {
  .lba-nav-item--has-dropdown:hover > .lba-dropdown {
    display: block;
  }
}

@media (min-width: 1024px) {
  .top-bar-inner,
  .main-nav {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1470px) {
  .main-nav {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Mobile / JS: show when .is-open */
.lba-nav-item--has-dropdown.is-open > .lba-dropdown {
  display: block;
}

.lba-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lba-dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 14px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  line-height: 1.3;
}

.lba-dropdown-link:hover {
  color: #f05a47;
  background: #f6f5f4;
  text-decoration: none;
}

.lba-dropdown-desc {
  font-size: 0.7rem;
  font-weight: 400;
  color: #888;
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* ── Mega-menu panel ───────────────────────────────────────────────────── */
.lba-megamenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: #f5f6f8;
  min-width: 820px;
  max-width: 1080px;
  width: 72vw;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 24px 0 28px;
}

@media (min-width: 1024px) {
  .lba-nav-item--has-megamenu:hover > .lba-megamenu {
    display: block;
  }
}

.lba-nav-item--has-megamenu.is-open > .lba-megamenu {
  display: block;
}

.lba-megamenu-tagline {
  font-family: 'Tenor Sans', serif;
  font-size: 1.25rem;
  color: #f05a47;
  margin: 0 28px 18px;
  padding: 0;
  line-height: 1.3;
}

.lba-megamenu-inner {
  display: flex;
  min-height: 420px;
}

/* ── Mega-menu tab sidebar ─────────────────────────────────────────────── */
.lba-megamenu-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 200px;
  flex-shrink: 0;
  border-right: 1px solid #dde0e6;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lba-megamenu-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 18px 13px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s ease, background 0.15s ease;
  gap: 8px;
}

.lba-megamenu-tab:hover,
.lba-megamenu-tab--active {
  color: #f05a47;
  background: #eceef2;
}

.lba-tab-chevron {
  font-size: 0.55em;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Mega-menu panels ──────────────────────────────────────────────────── */
.lba-megamenu-panels {
  flex: 1;
  padding: 6px 28px 6px 24px;
  overflow-y: auto;
}

.lba-megamenu-panel {
  display: none;
}

.lba-megamenu-panel--active {
  display: block;
}

.lba-megamenu-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 2px 16px;
}

.lba-megamenu-grid li a {
  display: block;
  padding: 9px 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.775rem;
  font-weight: 300;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #e4e6ec;
  transition: color 0.15s ease;
  line-height: 1.3;
}

.lba-megamenu-grid li a:hover {
  color: #f05a47;
  text-decoration: none;
}

/* ── Lifestyle subsections ─────────────────────────────────────────────── */
.lba-lifestyle-inner {
  width: 100%;
}

.lba-lifestyle-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lba-lifestyle-tab-item {
  position: relative;
}

.lba-lifestyle-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px 10px 4px;
  border-bottom: 1px solid #e4e6ec;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
  gap: 8px;
}

.lba-lifestyle-tab:hover,
.lba-lifestyle-tab-item.is-active > .lba-lifestyle-tab {
  background: #eceef2;
}

.lba-lifestyle-tab-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.775rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.04em;
  flex: 1;
}

.lba-lifestyle-tab:hover .lba-lifestyle-tab-link,
.lba-lifestyle-tab-item.is-active .lba-lifestyle-tab-link {
  color: #f05a47;
}

.lba-lifestyle-chevron {
  font-size: 0.6em;
  color: #888;
  flex-shrink: 0;
  transition: color 0.15s ease;
}

.lba-lifestyle-tab-item.is-active .lba-lifestyle-chevron {
  color: #f05a47;
}

.lba-lifestyle-subitems {
  display: none;
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 16px;
  background: #eceef2;
}

.lba-lifestyle-tab-item.is-active > .lba-lifestyle-subitems {
  display: block;
}

.lba-lifestyle-subitems li a {
  display: block;
  padding: 7px 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.725rem;
  font-weight: 300;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #dde0e6;
  transition: color 0.15s ease;
}

.lba-lifestyle-subitems li a:hover {
  color: #f05a47;
}

/* ── js-sidebar: fixed drawer on mobile, inline on desktop ────────────── */
.js-sidebar {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: -100%;
  width: 100%;
  bottom: 0;
  overflow-y: auto;
  background: #fff;
  z-index: 200;
  padding: 0 1.5rem;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.3s;
  visibility: hidden;
}
.js-sidebar.is-open {
  left: 0;
  visibility: visible;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
}
@media (min-width: 1024px) {
  .js-sidebar {
    display: flex;
    flex-direction: row;
    position: static;
    left: auto;
    width: auto;
    flex: 1;
    height: auto;
    overflow-y: visible;
    background: transparent;
    bottom: auto;
    padding: 0;
    transition: none;
    visibility: visible;
  }
}

/* ── Mobile nav list: stacked full-width items with dividers ───────────── */
@media (max-width: 1023px) {
  .lba-synced-nav {
    display: block;
    width: 100%;
    flex: none;
    align-items: unset;
    justify-content: unset;
  }
  .lba-nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 100%;
  }
  .lba-nav-item {
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
  }
  .lba-nav-item:first-child {
    border-top: 1px solid #e5e7eb;
  }
  .lba-nav-link--top {
    padding: 1.5rem;
    width: 100%;
    justify-content: space-between;
  }
  /* Dropdowns/megamenus: full-screen panel sliding in from the right */
  .lba-dropdown,
  .lba-megamenu {
    display: block !important;
    position: fixed;
    top: var(--sidebar-top, 80px);
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    background: #fff;
    z-index: 201;
    padding: 0 1.5rem;
    box-shadow: none;
    border: none;
    border-radius: 0;
    width: auto;
    min-width: 0;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.3s;
    visibility: hidden;
  }
  .lba-nav-item.is-open > .lba-dropdown,
  .lba-nav-item.is-open > .lba-megamenu {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
  }
  .lba-megamenu-inner {
    flex-direction: column;
  }
  .lba-megamenu-tabs {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    min-width: 0;
  }
  .lba-megamenu-panel {
    display: block;
  }
  .lba-megamenu-panel:not(.lba-megamenu-panel--active) {
    display: none;
  }
}

/* ── Mobile utility section (login, register, etc.) ───────────────────── */
.lba-mobile-utility {
  display: block;
  margin-top: auto;
}
@media (min-width: 1024px) {
  .lba-mobile-utility {
    display: none;
  }
}

/* Sections wrapper — vertical stack with dividers between children */
.lba-mobile-utility-sections {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0;
}
.lba-mobile-utility-sections > div {
  padding: 2rem 0;
}
.lba-mobile-utility-sections > div + div {
  border-top: 1px solid #e5e7eb;
}

/* Login / Register row */
.lba-mobile-utility-auth {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.lba-mobile-utility-auth-col {
  flex: 1;
  display: flex;
  justify-content: center;
}
.lba-mobile-utility-auth-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.lba-mobile-utility-auth-item i {
  padding-right: 1rem;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lba-mobile-utility-auth-text {
  flex-grow: 1;
}
.lba-mobile-utility-auth-text a {
  color: inherit;
  text-decoration: none;
}
.lba-mobile-utility-auth-item:hover,
.lba-mobile-utility-auth-text a:hover {
  color: #f05a47;
}

/* Other utility links grid */
.lba-mobile-utility-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.lba-mobile-utility-link-cell--right {
  text-align: right;
}
.lba-mobile-utility-link-item {
  display: block;
}
.lba-mobile-utility-link-text a {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: Montserrat, sans-serif;
}
.lba-mobile-utility-link-text a:hover {
  color: #f05a47;
}

/* ── Stacking context: keep mega-menu above other header content ──────── */
.lba-nav-item--has-megamenu,
.lba-nav-item--has-dropdown {
  position: static; /* override to absolute when needed */
}

.lba-nav-item--has-dropdown {
  position: relative;
}
