/* ==========================================================================
   Bondlyst — main.css
   Design tokens → Reset → Base → Layout → Header/Hero → News Section →
   Subscribe Section → Footer → Single Post → Archive/Category → Search →
   404 → Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. FONT FACES — Meno Banner (licensed, local files)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-SemiBoldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-ExtraBoldItalic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Meno Banner";
  src: url("../fonts/MenoBanner-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours — Sumatra Tonic */
  --bl-navy: #314528;
  --bl-navy-deep: #0b1817;
  --bl-navy-dark: #1d2d24;
  --bl-dark: #1d2d24;
  --bl-mid: #3d5248;
  --bl-muted: #7a9e8a;
  --bl-border: #2a4a35;
  --bl-card-bg: #253d2f;
  --bl-light: #fbfaf6;
  --bl-accent: #314528;
  --bl-accent-dark: #3f5a35;
  --bl-accent-cyan: #27eaa6;
  --bl-accent-gradient: linear-gradient(135deg, #314528 0%, #3f5a35 100%);
  --bl-dot: #7a9e8a;
  --bl-positive: #34d399;
  --bl-negative: #f87171;
  --bl-warm-cream: #fbfaf6;

  /* Type */
  --bl-font-body: "Raleway", sans-serif;
  --bl-font-display: "Meno Banner", serif;
  --bl-font-mono: "DM Mono", monospace;

  /* Spacing */
  --bl-gutter: 90px;
  --bl-max-w: 1320px;
  --bl-radius: 16px;

  /* Transitions */
  --bl-transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--bl-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bl-dark);
  background-color: var(--bl-light);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   3. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.bl-container {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: var(--bl-gutter);
}

.bl-section {
  padding-block: 100px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY HELPERS
   -------------------------------------------------------------------------- */
.bl-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: var(--bl-navy);
}

.bl-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background-color: var(--bl-navy);
  flex-shrink: 0;
}

.bl-eyebrow--white {
  color: rgba(255, 255, 255, 0.85);
}

.bl-eyebrow--white::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.bl-eyebrow--accent {
  color: var(--bl-accent);
}

.bl-eyebrow--accent::before {
  display: none;
}

.bl-display-heading {
  font-family: var(--bl-font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.04px;
}

/* --------------------------------------------------------------------------
   5. CATEGORY BADGE
   -------------------------------------------------------------------------- */
.bl-cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  backdrop-filter: blur(2px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  color: var(--bl-navy);
  line-height: 1.5;
  transition: background var(--bl-transition);
}

.bl-cat-badge:hover {
  background: #fff;
}

/* --------------------------------------------------------------------------
   6. SITE HEADER
   -------------------------------------------------------------------------- */
.bl-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bl-light);
  border-bottom: 1px solid rgba(49, 69, 40, 0.12);
}

/* Mobile hamburger — hidden on desktop, revealed at ≤1200px */
.bl-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--bl-navy);
  flex-shrink: 0;
  cursor: pointer;
}

.bl-menu-toggle:hover {
  opacity: 0.75;
}

/* Mobile nav — backdrop */
.bl-mobile-nav-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.bl-mobile-nav-bg.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile nav — top dropdown popup */
.bl-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--bl-light);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 16px 20px 24px;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
  transform: translateY(-110%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.bl-mobile-nav.is-open {
  transform: translateY(0);
}

/* Popup header row: only X button, pushed right */
.bl-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 56px;
  flex-shrink: 0;
}

.bl-mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--bl-navy);
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.8;
}

.bl-mobile-nav-close:hover {
  opacity: 1;
}

/* Nav links list — right-aligned */
.bl-mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bl-mobile-nav-list li {
  list-style: none;
}

.bl-mobile-nav-list a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--bl-font-body);
  color: var(--bl-navy);
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.15s;
}

.bl-mobile-nav-list a:hover,
.bl-mobile-nav-list .current-menu-item > a {
  opacity: 1;
}

/* Subscribe CTA at the bottom */
.bl-mobile-nav-subscribe {
  display: block;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--bl-navy);
  color: var(--bl-light);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--bl-font-body);
  text-align: center;
  text-decoration: none;
  transition: opacity 0.18s;
  flex-shrink: 0;
}

.bl-mobile-nav-subscribe:hover {
  opacity: 0.88;
}

body.bl-menu-open {
  overflow: hidden;
}

/* Front page news section — pagination & view-all footer */
.bl-news-footer {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.bl-newspag {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Prevent display:flex from overriding the HTML hidden attribute */
.bl-newspag[hidden] {
  display: none;
}

.bl-newspag__btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--bl-border);
  background: #fff;
  color: var(--bl-muted);
  transition:
    background var(--bl-transition),
    color var(--bl-transition),
    border-color var(--bl-transition);
}

.bl-newspag__btn:not(.is-disabled):hover {
  background: var(--bl-accent);
  color: #fff;
  border-color: var(--bl-accent);
}

.bl-newspag__btn.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.bl-newspag__btn svg {
  width: 16px;
  height: 16px;
}

.bl-newspag__pages {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: 4px;
}

.bl-newspag__page {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--bl-border);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--bl-muted);
  transition:
    background var(--bl-transition),
    color var(--bl-transition),
    border-color var(--bl-transition);
}

a.bl-newspag__page:hover {
  background: var(--bl-accent);
  color: #fff;
  border-color: var(--bl-accent);
}

.bl-newspag__page.is-active {
  background: var(--bl-accent);
  color: #fff;
  border-color: var(--bl-accent);
  cursor: default;
  pointer-events: none;
}

.bl-newspag__ellipsis {
  padding: 0 6px;
  color: var(--bl-muted);
  font-size: 14px;
  font-weight: 500;
}

/* "View all [category]" button */
.bl-newspag__viewall-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--bl-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bl-navy);
  background: #fff;
  transition:
    background var(--bl-transition),
    color var(--bl-transition),
    border-color var(--bl-transition);
}

.bl-newspag__viewall-btn:hover {
  background: var(--bl-accent);
  color: #fff;
  border-color: var(--bl-accent);
}

.bl-newspag__viewall-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.bl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding: 12px 20px;
  width: 100%;
}

/* Logo */
.bl-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.bl-nav-logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.bl-nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.bl-nav-logo-wordmark {
  font-family: var(--bl-font-display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bl-navy);
}

.bl-nav-logo-sub {
  font-family: var(--bl-font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--bl-navy);
}

.bl-nav-logo-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bl-navy);
  font-family: var(--bl-font-display);
}

/* Primary nav links — pushed to right by auto left margin */
.bl-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
  margin-inline: 48px;
}

.bl-nav-link,
.bl-nav-list a {
  font-size: 14px;
  font-weight: 300;
  font-family: "Inter", var(--bl-font-body);
  color: var(--bl-navy);
  line-height: 1.5;
  letter-spacing: 0.14px;
  transition: opacity var(--bl-transition);
}

.bl-nav-list a:hover,
.bl-nav-link:hover {
  opacity: 0.7;
}

.bl-nav-list .current-menu-item > a {
  font-weight: 600;
  color: var(--bl-navy);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--bl-navy);
}

/* Right side: search + subscribe */
.bl-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.bl-nav-subscribe-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  background: var(--bl-navy);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--bl-font-body);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bl-light);
  transition: opacity var(--bl-transition);
  flex-shrink: 0;
}

.bl-nav-subscribe-btn:hover {
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.bl-hero {
  position: relative;
  overflow: hidden;
  min-height: 784px;
  display: flex;
  align-items: center;
  background-color: var(--bl-light);
}

.bl-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.bl-hero__bg-mobile {
  display: none;
}

.bl-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding: 88px 20px;
  width: 100%;
}

.bl-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 560px;
}

.bl-hero__title {
  font-family: var(--bl-font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--bl-navy);
}

.bl-hero__excerpt {
  font-family: var(--bl-font-body);
  color: var(--bl-navy);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
}

.bl-hero__cta {
  display: inline-flex;
  padding: 16px 40px;
  background: var(--bl-navy);
  color: var(--bl-light);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--bl-font-body);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity var(--bl-transition);
  cursor: pointer;
}

.bl-hero__cta:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
  /* Full-height portrait photo as background; text overlaid on top */
  .bl-hero {
    display: block;
    min-height: 0;
    height: 728px;
    background-color: #f7efe6;
  }
  .bl-hero__bg {
    display: none;
  }
  .bl-hero__bg-mobile {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .bl-hero__inner {
    position: absolute;
    inset: 0;
    padding: 32px 24px 0;
  }
  .bl-hero__content {
    max-width: 100%;
    align-items: center;
    text-align: center;
    margin-inline: auto;
    gap: 14px;
  }
  .bl-hero__title {
    font-size: 24px;
    line-height: 1.15;
  }
  .bl-hero__excerpt {
    max-width: 340px;
    font-size: 14px;
    line-height: 1.5;
  }
  .bl-hero__cta {
    padding: 14px 32px;
    font-size: 13px;
  }
  .bl-ticker {
    height: 25px;
    padding: 0;
    display: flex;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   8b. TICKER — infinite scrolling brand marquee beneath hero
   -------------------------------------------------------------------------- */
.bl-ticker {
  background: var(--bl-navy);
  overflow: hidden;
  padding: 12px 0;
}

.bl-ticker__track {
  display: flex;
  width: max-content;
  animation: bl-ticker-scroll 22s linear infinite;
}

.bl-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  padding-inline: 22px;
  flex-shrink: 0;
  font-family: var(--bl-font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bl-light);
  white-space: nowrap;
}

.bl-ticker__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .bl-ticker__icon {
    width: 22px;
    height: 22px;
  }
}

@keyframes bl-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-ticker__track {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   8c. WHAT IS SUMATRA TONIC — product photo w/ clickable "+" hotspots
   -------------------------------------------------------------------------- */
.bl-whatis {
  background: var(--bl-light);
}

.bl-whatis__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bl-whatis__media {
  display: flex;
  flex-direction: column;
}

.bl-whatis__photo-wrap {
  position: relative;
}

.bl-whatis__photo {
  width: 100%;
  height: auto;
  display: block;
}

.bl-whatis__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  text-align: center;
  padding: 14px;
  font-family: var(--bl-font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--bl-navy);
}

.bl-whatis__hotspot {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--bl-navy);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(49, 69, 40, 0.22);
  transform: translate(-50%, -50%);
  transition: opacity var(--bl-transition);
}

.bl-whatis__hotspot.is-dimmed {
  opacity: 0.45;
}

.bl-whatis__hotspot--1 {
  left: 42%;
  top: 40%;
}

.bl-whatis__hotspot--2 {
  left: 71%;
  top: 80%;
}

.bl-whatis__tooltip {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 12px 32px rgba(49, 69, 40, 0.22);
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
  z-index: 2;
}

.bl-whatis__tooltip[hidden] {
  display: none;
}

.bl-whatis__tooltip strong {
  font-family: var(--bl-font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--bl-navy);
}

.bl-whatis__tooltip span {
  font-family: var(--bl-font-body);
  font-size: 13px;
  color: var(--bl-navy);
  opacity: 0.75;
}

.bl-whatis__tooltip--1 {
  right: 58%;
  top: 23%;
}

.bl-whatis__tooltip--2 {
  left: 71%;
  top: 63%;
}

.bl-whatis__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bl-whatis__title {
  font-family: var(--bl-font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  color: var(--bl-navy);
}

.bl-whatis__text {
  font-family: var(--bl-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--bl-navy);
}

@media (max-width: 900px) {
  .bl-whatis__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px;
  }
  .bl-whatis__content {
    text-align: center;
  }
  .bl-whatis__title {
    font-size: 27px;
  }
  .bl-whatis__text {
    font-size: 14px;
  }
  .bl-whatis__caption {
    height: 25px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bl-whatis__hotspot {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .bl-whatis__photo-wrap {
    height: 378px;
  }
  .bl-whatis__photo {
    height: 100%;
    object-fit: cover;
  }
  .bl-whatis__tooltip {
    white-space: normal;
    max-width: 220px;
  }
}

/* --------------------------------------------------------------------------
   8d. HOW IT WORKS — bg photo (rock/palm/bottle/badges baked in) + overlay
   -------------------------------------------------------------------------- */
.bl-howitworks {
  background: #a9835c;
}

.bl-howitworks__inner {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  aspect-ratio: 1440 / 1963;
  overflow: hidden;
}

.bl-howitworks__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.bl-howitworks__title {
  position: absolute;
  top: 3.67%;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--bl-font-display);
  font-size: clamp(24px, 2.9167vw, 42px);
  font-weight: 900;
  color: var(--bl-light);
}

.bl-howitworks__timeline {
  position: absolute;
  inset: 0;
}

.bl-howitworks__line {
  position: absolute;
  left: 13.44%;
  width: 1px;
  background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0, rgba(255, 255, 255, 0.6) 7.86px, transparent 7.86px, transparent 15.72px);
}

/* Each segment stops short of the dot on either end, leaving a clear gap */
.bl-howitworks__line--1 {
  top: calc(14.68% + 37px);
  height: calc(13.35% - 64px);
}
.bl-howitworks__line--2 {
  top: calc(28.03% + 27px);
  height: calc(12.9% - 54px);
}
.bl-howitworks__line--3 {
  top: calc(40.93% + 27px);
  height: calc(12.81% - 54px);
}

.bl-howitworks__dot {
  position: absolute;
  left: 13.44%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.bl-howitworks__dot--1 {
  top: 14.68%;
  width: clamp(36px, 3.75vw, 54px);
  height: clamp(36px, 3.75vw, 54px);
  background: transparent;
  border: 2px solid var(--bl-light);
}
.bl-howitworks__dot--2,
.bl-howitworks__dot--3,
.bl-howitworks__dot--4 {
  width: clamp(22px, 2.3611vw, 34px);
  height: clamp(22px, 2.3611vw, 34px);
  background: var(--bl-light);
  border: 2px solid var(--bl-light);
}
.bl-howitworks__dot--2 {
  top: 28.03%;
}
.bl-howitworks__dot--3 {
  top: 40.93%;
}
.bl-howitworks__dot--4 {
  top: 53.74%;
}

.bl-howitworks__steps {
  position: absolute;
  inset: 0;
}

.bl-howitworks__step {
  position: absolute;
  left: 21.25%;
  width: 57.57%;
  height: 11.87%;
  box-sizing: border-box;
  border-radius: 12px 62px 12px 12px;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(18px, 2.4306vw, 35px) clamp(20px, 3.6111vw, 52px) clamp(18px, 2.4306vw, 35px) clamp(18px, 2.2917vw, 33px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.9167vw, 42px);
  overflow: hidden;
}

.bl-howitworks__step--1 {
  top: 9.32%;
}
.bl-howitworks__step--2 {
  top: 23.17%;
}
.bl-howitworks__step--3 {
  top: 37.04%;
}
.bl-howitworks__step--4 {
  top: 50.89%;
}

.bl-howitworks__step-title {
  font-family: var(--bl-font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  color: var(--bl-light);
}

.bl-howitworks__step-text {
  font-family: var(--bl-font-body);
  font-size: clamp(13px, 1.3889vw, 20px);
  line-height: 1.85;
  color: var(--bl-light);
}

@media (max-width: 900px) {
  /* Same overlay-on-image treatment as desktop, re-tuned: timeline/dots
     hidden, cards span near-full width. Cards use auto-height + an even
     flex gap (not fixed %-height boxes) so text can never be clipped,
     regardless of exact device width or copy length; the container is
     taller than desktop's crop to leave enough room for the stack. */
  .bl-howitworks__inner {
    /* aspect-ratio can't interpolate via vw (its ratio is unitless), so the
       375px-tall(1030)-to-899px-tall(434) scale-down is done as an explicit
       height clamp instead, linearly interpolated between those two points. */
    aspect-ratio: auto;
    height: clamp(790px, calc(1081.66px - 14.4427vw), 980px);
  }
  .bl-howitworks__title {
    top: 3%;
    font-size: 24px;
  }
  .bl-howitworks__timeline {
    display: none;
  }
  .bl-howitworks__steps {
    top: 8%;
    left: 5%;
    width: 91%;
    right: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .bl-howitworks__step {
    position: static;
    left: auto;
    width: auto;
    height: auto;
    padding: 20px 14px;
    gap: 10px;
    overflow: visible;
  }
  .bl-howitworks__step-title {
    font-size: 20px;
  }
  .bl-howitworks__step-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* --------------------------------------------------------------------------
   8e. KEY BENEFITS — "Why Sumatra Tonic". Responsive card grid from tablet
   up through desktop (columns auto-fit the available width, fonts fluid-
   scale up to the 1440px Figma spec); a horizontal scroll-snap / drag
   slider only below 901px (phone), matching the mobile Figma reference.
   -------------------------------------------------------------------------- */

.bl-benefits {
  background: var(--bl-light);
}

.bl-benefits__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-block: 61px 82px;
}

.bl-benefits__header {
  max-width: 628px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  text-align: center;
  padding-inline: 20px;
}

.bl-benefits__eyebrow {
  font-family: var(--bl-font-body);
  font-size: clamp(14px, 3.97px + 1.1132vw, 20px);
  letter-spacing: 0.45em;
  line-height: 1.35;
  color: var(--bl-navy);
}

.bl-benefits__title {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: clamp(27px, -19.805px + 5.1948vw, 55px);
  line-height: 1.2;
  color: var(--bl-navy);
}

.bl-benefits__track {
  margin-top: 67px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  column-gap: 24px;
  row-gap: 46px;
  padding-inline: 80px;
  cursor: auto;
}

.bl-benefits__card {
  min-height: 395px;
  background: #fff;
  border-radius: 12px 55px 12px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bl-benefits__card-content {
  padding: 37px 23px 0 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.bl-benefits__icon {
  width: 28px;
  height: 28px;
}

.bl-benefits__card-title {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: 27px;
  line-height: 1.2;
  color: var(--bl-navy);
}

.bl-benefits__card-text {
  font-family: var(--bl-font-body);
  font-size: clamp(16px, 12.657px + 0.3711vw, 18px);
  line-height: 1.85;
  color: var(--bl-navy);
}

.bl-benefits__tag {
  padding: 12px;
  background: var(--bl-navy);
  border-radius: 0 0 12px 12px;
  font-family: var(--bl-font-body);
  font-size: clamp(14px, 10.657px + 0.3711vw, 16px);
  letter-spacing: 0.45em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
}

/* Mobile (phone only) — same fixed-size cards as the Figma mobile frame,
   arranged as a horizontal scroll-snap / drag slider instead of a grid. */
@media (max-width: 900px) {
  .bl-benefits__inner {
    padding-block: 41px 53px;
  }
  .bl-benefits__header {
    max-width: 335px;
    gap: 15px;
    padding-inline: 20px;
  }
  .bl-benefits__track {
    margin-top: 44px;
    display: flex;
    gap: 20px;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
    cursor: grab;
  }
  .bl-benefits__track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
    user-select: none;
  }
  .bl-benefits__track::-webkit-scrollbar {
    display: none;
  }
  .bl-benefits__card {
    flex: 0 0 302px;
    width: 302px;
    min-height: 330px;
    scroll-snap-align: start;
  }
  .bl-benefits__card-content {
    padding: 34px 23px 0 25px;
  }
  .bl-benefits__card-title {
    font-size: 21px;
  }
  .bl-benefits__tag {
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   8f. INGREDIENTS — "Inside Every Bottle". Two ingredient-card columns
   flanking a centered product photo on tablet/desktop; a single stacked
   column with the photo inserted after the 4th card on mobile.
   -------------------------------------------------------------------------- */

.bl-ingredients {
  background: #fff;
}

.bl-ingredients__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 80px;
}

.bl-ingredients__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(15px, -35.148px + 5.5659vw, 45px);
  text-align: center;
}

.bl-ingredients__eyebrow {
  font-family: var(--bl-font-body);
  font-size: clamp(16px, 9.3141px + 0.7421vw, 20px);
  letter-spacing: 0.45em;
  line-height: 1.35;
  color: var(--bl-navy);
}

.bl-ingredients__title {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: clamp(24px, -27.8175px + 5.7514vw, 55px);
  line-height: 1.2;
  color: var(--bl-navy);
}

.bl-ingredients__subtitle {
  max-width: 846px;
  margin-inline: auto;
  font-family: var(--bl-font-body);
  font-size: clamp(16px, 12.6563px + 0.3711vw, 18px);
  line-height: 1.85;
  color: var(--bl-navy);
}

.bl-ingredients__row {
  margin-top: 67px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.bl-ingredients__col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.bl-ingredients__photo {
  flex: 1 1 0;
  aspect-ratio: 416 / 954;
  border-radius: 12px;
  overflow: hidden;
}

.bl-ingredients__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-ingredients__photo-img--desktop {
  display: block;
}

.bl-ingredients__photo-img--mobile {
  display: none;
}

.bl-ingredients__card {
  min-height: 285px;
  background: var(--bl-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bl-ingredients__card-content {
  padding: 45px 45px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.bl-ingredients__card-head {
  display: flex;
  align-items: center;
  gap: 25px;
}

.bl-ingredients__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bl-ingredients__card-title {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
  color: var(--bl-navy);
}

.bl-ingredients__card-text {
  font-family: var(--bl-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--bl-navy);
}

.bl-ingredients__tag {
  padding: 12px;
  background: var(--bl-navy);
  border-radius: 0 0 12px 12px;
  font-family: var(--bl-font-body);
  font-size: 14px;
  letter-spacing: 0.45em;
  line-height: 1.35;
  text-align: center;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 900px) {
  .bl-ingredients__inner {
    padding: 48px 20px;
  }
  .bl-ingredients__row {
    margin-top: 44px;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
  }
  .bl-ingredients__col {
    gap: 25px;
  }
  .bl-ingredients__photo {
    flex: 0 0 auto;
    aspect-ratio: 335 / 328;
  }
  .bl-ingredients__photo-img--desktop {
    display: none;
  }
  .bl-ingredients__photo-img--mobile {
    display: block;
  }
  .bl-ingredients__card {
    min-height: 189px;
  }
  .bl-ingredients__card-content {
    padding: 15px 15px 0;
  }
  .bl-ingredients__card-title {
    font-size: 20px;
  }
  .bl-ingredients__tag {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   8g. REVIEWS — "Loved by Nightly Ritual Seekers". Header + photo (photo
   bleeds to the top/right edge on desktop) above a horizontally
   scrollable, arrow-driven review-card carousel.
   -------------------------------------------------------------------------- */

.bl-reviews {
  background: var(--bl-navy);
  overflow: hidden;
}

.bl-reviews__inner {
  max-width: 1440px;
  margin-inline: auto;
}

.bl-reviews__top {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-left: 80px;
}

.bl-reviews__header {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.bl-reviews__eyebrow {
  font-family: var(--bl-font-body);
  font-size: 20px;
  letter-spacing: 0.45em;
  line-height: 1.35;
  color: var(--bl-light);
}

.bl-reviews__title {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: 55px;
  line-height: 1.2;
  color: var(--bl-light);
}

.bl-reviews__subtitle {
  font-family: var(--bl-font-body);
  font-size: 18px;
  line-height: 1.85;
  color: var(--bl-light);
}

.bl-reviews__photo {
  flex: 0 0 706px;
  aspect-ratio: 706 / 597;
  border-radius: 0 12px 0 12px;
  overflow: hidden;
}

.bl-reviews__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl-reviews__photo-img--desktop {
  display: block;
}

.bl-reviews__photo-img--mobile {
  display: none;
}

.bl-reviews__cards {
  margin-top: 42px;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 80px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-inline: 80px;
}

.bl-reviews__cards::-webkit-scrollbar {
  display: none;
}

.bl-reviews__card {
  flex: 0 0 519px;
  scroll-snap-align: start;
  background: var(--bl-light);
  border-radius: 12px 32px 12px 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.bl-reviews__card-head {
  display: flex;
  align-items: center;
  gap: 35px;
}

.bl-reviews__card-person {
  display: flex;
  align-items: center;
  gap: 35px;
}

.bl-reviews__avatar {
  width: 81px;
  height: 81px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bl-reviews__name {
  font-family: var(--bl-font-body);
  font-size: 20px;
  color: #000;
}

.bl-reviews__stars {
  display: flex;
  gap: 1.5px;
  font-size: 20px;
  line-height: 1;
  color: #650d13;
  letter-spacing: 0;
}

.bl-reviews__text {
  font-family: var(--bl-font-body);
  font-size: 18px;
  line-height: 1.85;
  color: var(--bl-navy);
}

.bl-reviews__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--bl-font-body);
  font-style: italic;
  font-size: 20px;
  color: #a7a7a7;
}

.bl-reviews__arrows {
  margin-top: 61px;
  padding-inline: 80px;
  padding-bottom: 64px;
  display: flex;
  justify-content: center;
  gap: 49px;
}

.bl-reviews__arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.31;
  transition: opacity var(--bl-transition);
}

.bl-reviews__arrow:hover {
  opacity: 0.6;
}

.bl-reviews__arrow img {
  display: block;
  width: 19px;
  height: 38px;
}

.bl-reviews__arrow--next img {
  transform: scaleX(-1);
}

@media (max-width: 900px) {
  .bl-reviews__top {
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
  }
  .bl-reviews__header {
    gap: 25px;
  }
  .bl-reviews__eyebrow {
    font-size: 14px;
  }
  .bl-reviews__title {
    font-size: 32px;
  }
  .bl-reviews__subtitle {
    font-size: 14px;
  }
  .bl-reviews__photo {
    flex: 0 0 auto;
    aspect-ratio: 335 / 279;
  }
  .bl-reviews__photo-img--desktop {
    display: none;
  }
  .bl-reviews__photo-img--mobile {
    display: block;
  }
  .bl-reviews__cards {
    margin-top: 41px;
    gap: 15px;
    scroll-padding-inline: 20px;
    padding-inline: 20px;
  }
  .bl-reviews__card {
    flex: 0 0 310px;
    gap: 15px;
  }
  .bl-reviews__card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .bl-reviews__card-person {
    gap: 24px;
  }
  .bl-reviews__name {
    font-size: 16px;
  }
  .bl-reviews__stars {
    font-size: 16px;
  }
  .bl-reviews__text {
    font-size: 16px;
    line-height: 1.45;
  }
  .bl-reviews__meta {
    font-size: 16px;
  }
  .bl-reviews__arrows {
    margin-top: 30px;
    padding-bottom: 40px;
  }
}

/* --------------------------------------------------------------------------
   8h. SPECIAL DEAL TICKER — infinite scrolling marquee (reuses the
   section-2 ticker mechanism with a different color + copy)
   -------------------------------------------------------------------------- */

.bl-deal-ticker {
  background: #a74737;
  overflow: hidden;
  padding: 12px 0;
}

.bl-deal-ticker__track {
  display: flex;
  width: max-content;
  animation: bl-ticker-scroll 22s linear infinite;
}

.bl-deal-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  padding-inline: 22px;
  flex-shrink: 0;
  font-family: var(--bl-font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bl-light);
  white-space: nowrap;
}

.bl-deal-ticker__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .bl-deal-ticker__icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 900px) {
  .bl-deal-ticker {
    height: 39px;
    padding: 0;
    display: flex;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bl-deal-ticker__track {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   8i. SPECIAL PRICING — 3-tier cards; the middle "6 bottles" plan is
   featured (bordered, taller, ribbon, free shipping) and visually
   centered/first even though it's the middle option in the DOM.
   -------------------------------------------------------------------------- */

.bl-pricing {
  background: #fff;
  padding-block: 80px;
}

.bl-pricing__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 20px;
}

.bl-pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  text-align: center;
}

.bl-pricing__eyebrow {
  font-family: var(--bl-font-body);
  font-size: 20px;
  letter-spacing: 0.45em;
  line-height: 1.35;
  color: var(--bl-navy);
}

.bl-pricing__title {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: 55px;
  line-height: 1.2;
  color: var(--bl-navy);
}

.bl-pricing__cards {
  margin-top: 67px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.bl-pricing__card {
  position: relative;
  flex: 1 1 0;
  max-width: 411px;
  border-radius: 38px;
  background: var(--bl-light);
  overflow: hidden;
}

.bl-pricing__row-break {
  display: none;
  flex-basis: 100%;
  order: -1;
  width: 0;
  height: 0;
}

.bl-pricing__card--featured {
  background: #f8f1da;
  border: 4px solid var(--bl-navy);
}

.bl-pricing__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  padding: 22px;
}

.bl-pricing__ribbon {
  padding: 12px;
  background: rgba(53, 217, 56, 0.36);
  font-family: var(--bl-font-body);
  font-size: 16px;
  letter-spacing: 0.45em;
  color: var(--bl-navy);
  text-align: center;
}

.bl-pricing__bottles {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--bl-navy);
}

.bl-pricing__bottle-img {
  width: 100%;
  max-width: 354px;
  aspect-ratio: 354 / 290;
  object-fit: cover;
  border-radius: 12px;
}

.bl-pricing__supply {
  font-family: var(--bl-font-body);
  font-size: 22px;
  color: var(--bl-navy);
}

.bl-pricing__price {
  display: flex;
  flex-direction: column;
}

.bl-pricing__price-old {
  font-family: var(--bl-font-body);
  font-size: clamp(34px, 20.628px + 1.4842vw, 42px);
  font-variant-numeric: lining-nums proportional-nums;
  text-decoration: line-through;
  color: var(--bl-navy);
  opacity: 0.16;
  line-height: 1.1;
}

.bl-pricing__price-new {
  margin-top: -6px;
  font-family: var(--bl-font-body);
  font-size: clamp(34px, 20.628px + 1.4842vw, 42px);
  font-weight: 700;
  color: var(--bl-navy);
  line-height: 1.1;
}

.bl-pricing__payment {
  width: 100%;
  max-width: 283px;
  height: auto;
  border-radius: 12px;
}

.bl-pricing__buy-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.bl-pricing__buy {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(82, 175, 41, 0.14);
  font-family: var(--bl-font-body);
  font-size: 16px;
  letter-spacing: 0.45em;
  color: var(--bl-navy);
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
}

.bl-pricing__card--featured .bl-pricing__buy {
  background: var(--bl-navy);
  color: var(--bl-light);
}

.bl-pricing__shipping {
  font-family: var(--bl-font-body);
  font-size: 22px;
  color: var(--bl-navy);
}

@media (max-width: 900px) {
  .bl-pricing {
    padding-block: 48px;
  }
  .bl-pricing__header {
    gap: 15px;
  }
  .bl-pricing__eyebrow {
    font-size: 14px;
  }
  .bl-pricing__title {
    font-size: 32px;
  }
  .bl-pricing__cards {
    margin-top: 44px;
    row-gap: 25px;
    column-gap: 16px;
  }
  .bl-pricing__row-break {
    display: block;
  }
  .bl-pricing__card {
    flex: 0 0 411px;
    max-width: none;
    border-radius: 22px;
  }
  .bl-pricing__card-content {
    gap: 15px;
    padding: 16px;
  }
  .bl-pricing__card--featured {
    flex-basis: 69%;
    margin-inline: auto;
    order: -1;
    border-width: 2px;
  }
  .bl-pricing__card:not(.bl-pricing__card--featured) {
    flex: 1 1 0;
  }
  .bl-pricing__ribbon {
    height: 22px;
    padding: 6.816px;

    text-align: center;
    font-size: 9.087px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 4.089px;
  }
  .bl-pricing__bottles {
    font-size: 18px;
  }
  .bl-pricing__supply {
    font-size: 14px;
  }
  .bl-pricing__price-old,
  .bl-pricing__price-new {
    font-size: 16px;
  }
  .bl-pricing__buy {
    font-size: 13px;
    letter-spacing: 2.86px;
  }
  .bl-pricing__shipping {
    font-size: 12px;
  }
}

/* --------------------------------------------------------------------------
   8j. 100% SATISFACTION GUARANTEE — lifestyle photo (with a small
   "polaroid" overlay photo + wordmark sticker) beside title + copy.
   -------------------------------------------------------------------------- */

.bl-guarantee {
  background: var(--bl-light);
  padding-block: 80px;
}

.bl-guarantee__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 80px;
}

.bl-guarantee__row {
  display: flex;
  align-items: center;
  gap: 104px;
}

.bl-guarantee__photo-wrap {
  position: relative;
  flex: 706 1 0;
  max-width: 706px;
}

.bl-guarantee__photo {
  width: 100%;
  aspect-ratio: 706 / 898;
  object-fit: cover;
  border-radius: 55px 12px 55px 12px;
  display: block;
}

.bl-guarantee__photo--mobile {
  display: none;
}

.bl-guarantee__polaroid {
  position: absolute;
  left: 70.96%;
  top: 3.23%;
  width: 23.65%;
  height: 21.94%;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.bl-guarantee__polaroid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bl-guarantee__polaroid-img--mobile {
  display: none;
}

.bl-guarantee__badge {
  position: absolute;
  left: 17.96%;
  top: 78.68%;
  width: 65.87%;
  height: 13.71%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #273f2f;
}

.bl-guarantee__badge-title {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  color: #f5f1e8;
}

.bl-guarantee__badge-sub {
  font-family: var(--bl-font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: #f5f1e8;
}

.bl-guarantee__content {
  flex: 470 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.bl-guarantee__title {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: clamp(32px, -6.446px + 4.2671vw, 55px);
  line-height: 1.2;
  color: var(--bl-navy);
}

.bl-guarantee__text {
  font-family: var(--bl-font-body);
  font-size: clamp(16px, 9.314px + 0.7421vw, 20px);
  line-height: 1.85;
  color: var(--bl-navy);
}

.bl-guarantee__text p + p {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .bl-guarantee {
    padding-block: 48px;
  }
  .bl-guarantee__inner {
    padding-inline: 20px;
  }
  .bl-guarantee__row {
    flex-direction: column;
    gap: 25px;
  }
  .bl-guarantee__photo-wrap {
    flex-basis: auto;
    width: 100%;
    max-width: none;
  }
  .bl-guarantee__photo {
    aspect-ratio: 335 / 426;
  }
  .bl-guarantee__photo--desktop {
    display: none;
  }
  .bl-guarantee__photo--mobile {
    display: block;
  }
  .bl-guarantee__polaroid-img--desktop {
    display: none;
  }
  .bl-guarantee__polaroid-img--mobile {
    display: block;
  }
  .bl-guarantee__badge-title {
    font-size: 7px;
  }
  .bl-guarantee__badge-sub {
    font-size: 4.6px;
  }
  .bl-guarantee__content {
    gap: 25px;
    text-align: center;
  }
  .bl-guarantee__title {
    font-size: 32px;
  }
  .bl-guarantee__text {
    font-size: 16px;
    line-height: 1.45;
  }
  .bl-guarantee__text p + p {
    margin-top: 14px;
  }
}

/* --------------------------------------------------------------------------
   8k. JOIN / NEWSLETTER SIGNUP — full-bleed photo bg (darkened via inline
   gradient) with a centered email-subscribe form. Custom validation only,
   no 3rd-party service, no real request sent (see main.js).
   -------------------------------------------------------------------------- */

.bl-join {
  background-size: cover;
  background-position: center;
  border-radius: 0 100px 0 0;
  overflow: hidden;
  padding-block: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Sold Out page: same section, standalone (not sandwiched between other
   sections like the homepage join block), so no corner cutout. It's also
   the only section in <main>, so it must fill #main's sticky-footer height
   (main.bl-main { flex: 1 0 auto }) itself, or its own content height can
   fall short of the viewport on tablet and expose the page's background
   below it, before the footer. */
.bl-soldout {
  border-radius: 0;
  flex: 1 0 auto;
  justify-content: center;
}

.bl-join__inner {
  max-width: 846px;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  text-align: center;
}

.bl-join__eyebrow {
  font-family: var(--bl-font-body);
  font-size: 20px;
  letter-spacing: 0.45em;
  line-height: 1.35;
  color: var(--bl-light);
}

.bl-join__title {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: 55px;
  line-height: 1.2;
  color: var(--bl-light);
}

.bl-join__subtitle {
  font-family: var(--bl-font-body);
  font-size: 18px;
  line-height: 1.85;
  color: var(--bl-light);
}

.bl-join__form {
  position: relative;
  width: 100%;
  max-width: 629px;
  display: flex;
  flex-direction: column;
  gap: 29px;
  padding: 36px 46px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 0 40px rgba(255, 255, 255, 0.05);
}

/* Liquid-glass edge: brightness sweeps around the corners (bright at
   top-left/bottom-right, dim at top-right/bottom-left) like light catching
   the rim of a glass panel — a flat border can't do this, so it's a
   conic-gradient ring masked to just the 1px edge. */
.bl-join__form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from -45deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.08) 75%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bl-join__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.bl-join__field {
  position: relative;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.bl-join__field::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from -45deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.06) 25%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0.06) 75%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.bl-join__input {
  width: 100%;
  padding: 24px 30px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-family: var(--bl-font-body);
  font-size: 20px;
  text-align: center;
  color: var(--bl-light);
  outline: none;
}

.bl-join__input:focus-visible {
  outline: 2px solid var(--bl-light);
  outline-offset: 2px;
}

.bl-join__input::placeholder {
  color: #d7dec1;
}

.bl-join__input:invalid.bl-join__input--touched {
  box-shadow: 0 0 0 2px var(--bl-negative);
}

.bl-join__consent {
  display: flex;
  align-items: flex-start;
  gap: 29px;
}

.bl-join__checkbox {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  accent-color: var(--bl-light);
}

.bl-join__consent-label {
  font-family: var(--bl-font-body);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  color: var(--bl-light);
}

.bl-join__error {
  font-family: var(--bl-font-body);
  font-size: 14px;
  color: #ffb4b4;
}

.bl-join__submit {
  width: 100%;
  padding: 24px 30px;
  border: none;
  border-radius: 999px;
  background: var(--bl-light);
  font-family: var(--bl-font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--bl-navy);
  cursor: pointer;
}

.bl-join__success {
  font-family: var(--bl-font-body);
  font-size: 16px;
  color: var(--bl-light);
}

@media (max-width: 1024px) {
  .bl-join {
    padding-block: 96px;
  }
  .bl-join__inner {
    gap: 32px;
  }
  .bl-join__eyebrow {
    font-size: 18px;
  }
  .bl-join__title {
    font-size: 42px;
  }
  .bl-join__subtitle {
    font-size: 17px;
    line-height: 1.6;
  }
  .bl-join__form {
    gap: 24px;
    padding: 28px;
  }
  .bl-join__input {
    padding: 20px 24px;
    font-size: 18px;
  }
  .bl-join__consent-label {
    font-size: 12.5px;
  }
  .bl-join__submit {
    padding: 20px 24px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .bl-join {
    padding-block: 64px;
  }
  .bl-join__inner {
    gap: 25px;
  }
  .bl-join__eyebrow {
    font-size: 16px;
  }
  .bl-join__title {
    font-size: 32px;
  }
  .bl-join__subtitle {
    font-size: 16px;
    line-height: 1.45;
  }
  .bl-join__form {
    gap: 20px;
    padding: 20px;
  }
  .bl-join__input {
    padding: 16px 20px;
    font-size: 16px;
  }
  .bl-join__consent {
    gap: 12px;
  }
  .bl-join__consent-label {
    font-size: 12px;
  }
  .bl-join__submit {
    padding: 16px 20px;
    font-size: 14px;
  }
}

/* --------------------------------------------------------------------------
   12. BRIEFING LIST — "This week's briefing"
   -------------------------------------------------------------------------- */

.bl-briefing {
  background-color: var(--bl-light);
  padding-block: 80px 60px;
}

.bl-briefing__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 20px;
}

.bl-briefing__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.bl-briefing__heading-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bl-briefing__title {
  font-family: var(--bl-font-display);
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.04px;
  color: var(--bl-dark);
}

.bl-briefing__title em {
  font-style: italic;
}

.bl-briefing__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bl-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--bl-transition);
}

.bl-briefing__view-all:hover {
  opacity: 0.6;
}

.bl-briefing__view-all svg {
  width: 18px;
  height: 10px;
  flex-shrink: 0;
}

.bl-briefing__list {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--bl-border);
}

/* Single item — 3-column grid: [number] [content] [aside] */
.bl-briefing__item {
  display: grid;
  grid-template-columns: 72px 1fr 140px;
  column-gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--bl-border);
  align-items: start;
}

/* Left: big episode number */
.bl-briefing__num {
  font-family: var(--bl-font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.72px;
  color: var(--bl-dot);
  line-height: 1;
  padding-top: 6px;
  text-align: right;
  user-select: none;
}

/* Center: content */
.bl-briefing__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bl-briefing__meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.76px;
  text-transform: uppercase;
}

.bl-briefing__ep {
  color: var(--bl-muted);
}

.bl-briefing__meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--bl-muted);
  flex-shrink: 0;
}

.bl-briefing__cat {
  color: var(--bl-accent);
  transition: opacity var(--bl-transition);
}

.bl-briefing__cat:hover {
  opacity: 0.75;
}

.bl-briefing__post-title {
  font-family: var(--bl-font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.52px;
  margin-top: 3px;
}

.bl-briefing__title-link {
  color: var(--bl-dark);
  transition: color var(--bl-transition);
}

.bl-briefing__title-link:hover {
  color: var(--bl-accent);
}

.bl-briefing__excerpt {
  color: var(--bl-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 640px;
  margin-top: 4px;
}

/* Right: aside — duration + date */
.bl-briefing__aside {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 6px;
  text-align: right;
}

.bl-briefing__dur {
  color: var(--bl-dark);
  font-family: var(--bl-font-mono);
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.bl-briefing__date {
  color: var(--bl-muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24px;
}

/* Tablet: aside moves below body */
@media (max-width: 900px) {
  .bl-briefing__inner {
    padding-inline: 24px;
  }

  .bl-briefing__item {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "num  body"
      ".    aside";
    column-gap: 20px;
  }

  .bl-briefing__num {
    grid-area: num;
  }
  .bl-briefing__body {
    grid-area: body;
  }

  .bl-briefing__aside {
    grid-area: aside;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    text-align: left;
    padding-top: 12px;
  }
}

/* Phone: number hidden, single-column */
@media (max-width: 600px) {
  .bl-briefing {
    padding-block: 56px 40px;
  }

  .bl-briefing__item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "body"
      "aside";
    column-gap: 0;
  }

  .bl-briefing__num {
    display: none;
  }

  .bl-briefing__aside {
    padding-top: 12px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .bl-briefing__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .bl-analysis__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   10. MARKET OVERVIEW + TOP MOVERS
   -------------------------------------------------------------------------- */

.bl-markets {
  background-color: var(--bl-light);
  padding-block: 64px 72px;
}

.bl-markets__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Shared card shell */
.bl-markets__card {
  display: flex;
  flex-direction: column;
  background-color: #fffcf7;
  border: 1px solid var(--bl-border);
  border-radius: 10px;
  padding: 28px 28px 0;
}

/* Split card — title full width, two-column body below */
.bl-markets__card--split {
  overflow: hidden;
}

.bl-markets__card-body {
  display: flex;
  flex: 1;
  border-top: 1px solid var(--bl-border);
  min-height: 0;
}

.bl-markets__card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border-right: 1px solid var(--bl-border);
  flex: 0 0 50%;
}

.bl-markets__card-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.bl-markets__card-img .bl-markets__card-foot {
  border-top: none;
  padding: 0;
  margin: 0;
  width: auto;
}

.bl-markets__card-content {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  min-width: 0;
  padding-block: 4px 0;
  padding-left: 16px;
}

/* Card header row */
.bl-markets__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bl-border);
}

.bl-markets__card-label {
  font-family: var(--bl-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: var(--bl-navy);
}

.bl-markets__view-more {
  font-family: var(--bl-font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--bl-accent);
  transition: opacity var(--bl-transition);
}

.bl-markets__view-more:hover {
  opacity: 0.7;
}

/* Card footer row */
.bl-markets__card-foot {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 0;
  border-top: 1px solid var(--bl-border);
  margin-top: auto;
  font-family: var(--bl-font-body);
  font-size: 11px;
  color: #9aa3c1;
}

.bl-markets__clock {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #9aa3c1;
}

/* Spacer footer for Top Movers card (equalises card height) */
.bl-markets__card-foot--movers {
  visibility: hidden;
}

/* ── Market Overview table ── */

.bl-mkto {
  width: 100%;
  border-collapse: collapse;
  flex: 1;
}

.bl-mkto thead tr {
  border-bottom: 1px solid var(--bl-border);
}

.bl-mkto__th {
  font-family: var(--bl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.54px;
  text-transform: uppercase;
  color: #9aa3c1;
  text-align: left;
  padding: 14px 0 10px;
}

.bl-mkto__th--value,
.bl-mkto__th--change {
  text-align: right;
}

.bl-mkto__row {
  border-bottom: 1px solid var(--bl-border);
}
.bl-mkto__row:last-child {
  border-bottom: none;
}

.bl-mkto__index {
  font-family: var(--bl-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bl-navy);
  padding: 14px 0;
}

.bl-mkto__value {
  font-family: var(--bl-font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--bl-navy);
  text-align: right;
  padding: 14px 0;
}

.bl-mkto__change {
  font-family: var(--bl-font-mono);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  padding: 14px 0;
  white-space: nowrap;
}

.bl-mkto__change--up {
  color: var(--bl-positive);
}
.bl-mkto__change--down {
  color: var(--bl-negative);
}

.bl-mkto__arrow {
  font-size: 10px;
  margin-right: 2px;
}

/* ── Top Movers two-column layout ── */

.bl-movers {
  display: flex;
  align-items: stretch;
  flex: 1;
}

.bl-movers__col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bl-movers__divider {
  width: 1px;
  background-color: var(--bl-border);
  margin: 0 20px;
  align-self: stretch;
}

.bl-movers__col-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--bl-border);
}

.bl-movers__col-arrow {
  font-size: 10px;
}

.bl-movers__col-arrow--up {
  color: var(--bl-positive);
}
.bl-movers__col-arrow--down {
  color: var(--bl-negative);
}

.bl-movers__col-label {
  font-family: var(--bl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.bl-movers__col-label--up {
  color: var(--bl-positive);
}
.bl-movers__col-label--down {
  color: var(--bl-negative);
}

.bl-movers__list {
  margin: 0;
  padding: 0;
}

.bl-movers__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--bl-border);
}

.bl-movers__item:last-child {
  border-bottom: none;
}
.bl-movers__item--first {
  padding-top: 15px;
}

.bl-movers__ticker {
  font-family: var(--bl-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--bl-navy);
}

.bl-movers__pct {
  font-family: var(--bl-font-mono);
  font-size: 13px;
  font-weight: 700;
}

.bl-movers__pct--up {
  color: var(--bl-positive);
}
.bl-movers__pct--down {
  color: var(--bl-negative);
}

/* ── Responsive ── */

@media (max-width: 1200px) {
  .bl-markets__inner {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }
  .bl-markets__card-body {
    flex-direction: column;
  }
  .bl-markets__card-img {
    border-right: none;
    border-bottom: 1px solid var(--bl-border);
    flex: none;
  }
  .bl-markets__card-content {
    flex: none;
  }
}

@media (max-width: 600px) {
  .bl-markets {
    padding-block: 48px 56px;
  }
}

/* --------------------------------------------------------------------------
   11. IN-DEPTH ANALYSIS
   -------------------------------------------------------------------------- */

.bl-analysis {
  padding-block: 64px 72px;
}

.bl-analysis__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 20px;
}

/* Section header */
.bl-analysis__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.bl-analysis__title {
  font-family: var(--bl-font-display);
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.04px;
  color: var(--bl-dark);
}

.bl-analysis__title em {
  font-style: italic;
}

.bl-analysis__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bl-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--bl-transition);
}

.bl-analysis__view-all:hover {
  opacity: 0.6;
}

.bl-analysis__view-all svg {
  width: 18px;
  height: 10px;
  flex-shrink: 0;
}

/* 2-column grid */
.bl-analysis__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}

/* Single article row */
.bl-analysis__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding-block: 28px;
  border-top: 1px solid var(--bl-border);
}

.bl-analysis__item:nth-child(3),
.bl-analysis__item:nth-child(4) {
  border-bottom: 1px solid var(--bl-border);
}

/* Thumbnail */
.bl-analysis__thumb {
  flex-shrink: 0;
  width: 180px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.bl-analysis__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient fallbacks when no featured image */
.bl-analysis__thumb--terracotta {
  background: linear-gradient(128deg, var(--bl-accent) 0%, var(--bl-accent-dark) 100%);
}

.bl-analysis__thumb--navy {
  background: linear-gradient(128deg, var(--bl-navy-dark) 0%, var(--bl-navy) 100%);
}

/* Category badge over image */
.bl-analysis__cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--bl-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--bl-dark);
  background-color: rgba(241, 232, 211, 0.95);
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.4;
  white-space: nowrap;
}

/* Body */
.bl-analysis__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.bl-analysis__post-title {
  font-family: var(--bl-font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

.bl-analysis__post-title a {
  color: var(--bl-dark);
  transition: color var(--bl-transition);
}

.bl-analysis__post-title a:hover {
  color: var(--bl-accent);
}

.bl-analysis__excerpt {
  font-family: var(--bl-font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bl-muted);
}

.bl-analysis__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-family: var(--bl-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.48px;
  color: var(--bl-muted);
}

.bl-analysis__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--bl-muted);
  flex-shrink: 0;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .bl-analysis__inner {
    padding-inline: 24px;
  }

  .bl-analysis__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .bl-analysis__item:nth-child(3),
  .bl-analysis__item:nth-child(4) {
    border-bottom: none;
  }

  .bl-analysis__item:last-child {
    border-bottom: 1px solid var(--bl-border);
  }
}

@media (max-width: 600px) {
  .bl-analysis {
    padding-block: 48px 56px;
  }

  .bl-analysis__item {
    flex-direction: column;
    gap: 16px;
  }

  .bl-analysis__thumb {
    width: 100%;
    height: 180px;
  }
}

/* --------------------------------------------------------------------------
   8. ARCHIVE PAGE HEADER + LATEST NEWS SECTION
   -------------------------------------------------------------------------- */

/* Archive page header */
.bl-archive-header {
  background-color: var(--bl-light);
  padding-block: 100px 72px;
}

.bl-archive-header__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl-archive-header__title {
  font-family: var(--bl-font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.44px;
  color: var(--bl-dark);
  max-width: 900px;
}

.bl-archive-header__desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--bl-muted);
  line-height: 1.55;
  max-width: 640px;
}

/* Archive tab + search filter row */
.bl-tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bl-border);
  margin-bottom: 48px;
}

.bl-archive-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: #fff;
  border: 1px solid var(--bl-border);
  border-radius: 999px;
  flex-shrink: 0;
  transition: border-color var(--bl-transition);
}

.bl-archive-search:focus-within {
  border-color: var(--bl-navy);
}

.bl-archive-search__submit {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--bl-muted);
  transition: color var(--bl-transition);
  flex-shrink: 0;
}

.bl-archive-search__submit:hover {
  color: var(--bl-navy);
}

.bl-archive-search__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.bl-archive-search__input {
  width: 180px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--bl-dark);
  line-height: 1.5;
}

.bl-archive-search__input::placeholder {
  color: var(--bl-muted);
}

/* Latest news section */
.bl-latest-news {
  background-color: var(--bl-light);
  padding-block: 100px;
}

/* When used on archive page — top padding reduced (header above already pads) */
.bl-latest-news--archive {
  padding-top: 72px;
}

.bl-latest-news__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 40px;
}

/* Header row: eyebrow + heading side by side with tabs */
.bl-latest-news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.bl-latest-news__heading-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bl-latest-news__title {
  font-family: var(--bl-font-display);
  font-size: clamp(40px, 4.4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.04px;
  color: var(--bl-dark);
}

.bl-latest-news__title em {
  font-style: italic;
  color: var(--bl-navy);
}

/* Category tabs */
.bl-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.bl-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  min-height: 38px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bl-muted);
  background: #fff;
  border: 1px solid var(--bl-border);
  transition:
    background var(--bl-transition),
    color var(--bl-transition),
    border-color var(--bl-transition);
}

.bl-tab-btn:hover {
  border-color: var(--bl-navy);
  color: var(--bl-navy);
}

.bl-tab-btn.is-active {
  background: var(--bl-navy);
  border-color: var(--bl-navy);
  color: #fff;
}

/* Post grid */
.bl-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Hidden cards for tab filtering */
.bl-post-card[hidden] {
  display: none;
}

/* Pagination */
.bl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}

.bl-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bl-muted);
  border: 1px solid var(--bl-border);
  background: #fff;
  transition:
    background var(--bl-transition),
    color var(--bl-transition);
}

.bl-pagination .page-numbers:hover {
  background: var(--bl-accent);
  color: #fff;
  border-color: var(--bl-accent);
}

.bl-pagination .page-numbers.current {
  background: var(--bl-accent);
  color: #fff;
  border-color: var(--bl-accent);
}

.bl-pagination .prev,
.bl-pagination .next {
  width: auto;
  padding-inline: 16px;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   9. POST CARD
   -------------------------------------------------------------------------- */
.bl-post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bl-border);
  border-radius: var(--bl-radius);
  overflow: hidden;
}

/* Thumbnail — 5:3 ratio, top corners rounded via parent overflow:hidden */
.bl-post-card__thumb-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 5 / 3;
}

/* Image fills the fixed-ratio container */
.bl-post-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bl-post-card:hover .bl-post-card__thumb {
  transform: scale(1.03);
}

.bl-post-card__thumb-placeholder {
  width: 100%;
  aspect-ratio: 5 / 3;
  background: var(--bl-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Category badge — top of image */
.bl-post-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
}

/* Card body: wraps title, excerpt, meta */
.bl-post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 24px 24px;
  gap: 8px;
}

/* Card title */
.bl-post-card__title {
  font-family: var(--bl-font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.38px;
  color: var(--bl-dark);
}

.bl-post-card__title a {
  color: inherit;
  transition: color var(--bl-transition);
}

.bl-post-card__title a:hover {
  color: var(--bl-navy);
}

/* Excerpt */
.bl-post-card__excerpt {
  font-size: 14px;
  font-weight: 400;
  color: var(--bl-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Date + reading time — pushed to bottom */
.bl-post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.bl-post-card__date {
  font-size: 12px;
  font-weight: 500;
  color: var(--bl-mid);
  letter-spacing: 0.24px;
  line-height: 1.5;
}

.bl-post-card__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--bl-dot);
  flex-shrink: 0;
}

.bl-post-card__read-time {
  font-size: 12px;
  font-weight: 400;
  color: var(--bl-muted);
  letter-spacing: 0.24px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   10. SUBSCRIBE SECTION
   -------------------------------------------------------------------------- */
/* Section wrapper — page-background colour, provides the gutter from viewport */
.bl-subscribe {
  background: linear-gradient(112deg, #103029 0%, #15463a 50%, #1e6e54 100%);
}

.bl-subscribe__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding: 96px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.bl-subscribe__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #27eaa6;
  margin: 0;
}

.bl-subscribe__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: #ecf6f0;
  margin: 0;
  max-width: 680px;
}

.bl-subscribe__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #d7eee4;
  max-width: 600px;
  margin: 0;
}

/* Form wrap */
.bl-subscribe__form-wrap {
  width: 100%;
  max-width: 580px;
}

/* ── CF7 skin ── */
.bl-subscribe__form-wrap .wpcf7 {
  margin: 0;
  padding: 0;
  width: 100%;
}

.bl-subscribe__form-wrap .wpcf7-form p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  width: 100%;
}

.bl-subscribe__form-wrap .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 0;
  position: static;
}

.bl-subscribe__form-wrap .wpcf7-form p br {
  display: none;
}

.bl-subscribe__form-wrap .wpcf7-form-control.wpcf7-email {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  line-height: 1.4;
  color: #ecf6f0;
  font-family: var(--bl-font-body);
  text-align: left;
  box-sizing: border-box;
  transition: border-color 0.18s;
}

.bl-subscribe__form-wrap .wpcf7-form-control.wpcf7-email::placeholder {
  color: #d7eee4;
}

.bl-subscribe__form-wrap .wpcf7-form-control.wpcf7-email:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.bl-subscribe__form-wrap .wpcf7-form-control.wpcf7-submit {
  padding: 15px 26px;
  background: #d0ff71;
  border-radius: 10px;
  font-family: var(--bl-font-display);
  font-size: 15px;
  font-weight: 700;
  color: #0b1817;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  transition: opacity 0.18s;
}

.bl-subscribe__form-wrap .wpcf7-form-control.wpcf7-submit:hover {
  opacity: 0.88;
}

.bl-subscribe__form-wrap .wpcf7-spinner {
  display: none;
}

/* ── CF7 response messages ── */
.bl-subscribe__form-wrap .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  border: none;
  width: 100%;
  text-align: left;
}

.bl-subscribe__form-wrap .wpcf7-form.sent .wpcf7-response-output {
  background: rgba(39, 234, 166, 0.12);
  color: #27eaa6;
  border: 1px solid rgba(39, 234, 166, 0.25);
}

.bl-subscribe__form-wrap .wpcf7-form.invalid .wpcf7-response-output,
.bl-subscribe__form-wrap .wpcf7-form.unaccepted .wpcf7-response-output {
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.bl-subscribe__form-wrap .wpcf7-form.spam .wpcf7-response-output,
.bl-subscribe__form-wrap .wpcf7-form.failed .wpcf7-response-output {
  background: rgba(200, 130, 0, 0.12);
  color: #fcd34d;
  border: 1px solid rgba(200, 130, 0, 0.25);
}

.bl-subscribe__form-wrap .wpcf7-not-valid-tip {
  display: none;
}

.bl-subscribe__form-wrap .wpcf7-not-valid {
  border-color: rgba(248, 113, 113, 0.7) !important;
}

/* Tagline */
.bl-subscribe__tagline {
  font-size: 13px;
  color: #a6c6bb;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bl-subscribe__inner {
    padding: 72px 20px;
  }
}

@media (max-width: 768px) {
  .bl-subscribe__inner {
    padding: 24px;
    gap: 20px;
  }

  .bl-subscribe__heading {
    font-size: 28px;
  }

  .bl-subscribe__form-wrap {
    max-width: 100%;
  }

  .bl-subscribe__form-wrap .wpcf7-form p {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .bl-subscribe__form-wrap .wpcf7-form-control-wrap {
    width: 100%;
  }

  .bl-subscribe__form-wrap .wpcf7-form-control.wpcf7-email {
    width: 100%;
    box-sizing: border-box;
  }

  .bl-subscribe__form-wrap .wpcf7-form-control.wpcf7-submit {
    width: 100%;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   10b. CATEGORIES SECTION (home page)
   -------------------------------------------------------------------------- */

.bl-categories {
  background: #122624;
}

.bl-categories__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding: 88px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bl-categories__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.bl-categories__heading-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl-categories__eyebrow {
  font-family: var(--bl-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #27eaa6;
  margin: 0;
}

.bl-categories__title {
  font-family: var(--bl-font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  color: #ecf6f0;
  margin: 0;
}

.bl-categories__all {
  font-family: var(--bl-font-display);
  font-size: 15px;
  font-weight: 500;
  color: #8fa8a0;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.18s;
}

.bl-categories__all:hover {
  color: #ecf6f0;
}

.bl-categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.bl-cat-card {
  background: #19332f;
  border: 1px solid #2a4a44;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.bl-cat-card:hover {
  opacity: 0.85;
}

.bl-cat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.bl-cat-card__tx {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bl-cat-card__name {
  font-family: var(--bl-font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #ecf6f0;
  margin: 0;
}

.bl-cat-card__count {
  font-family: var(--bl-font-body);
  font-size: 13px;
  color: #8fa8a0;
  margin: 0;
}

@media (max-width: 1024px) {
  .bl-categories__inner {
    padding: 72px 20px;
  }

  .bl-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .bl-categories__inner {
    padding: 40px 24px;
  }

  .bl-categories__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .bl-categories__title {
    font-size: 28px;
  }

  .bl-categories__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* --------------------------------------------------------------------------
   10c. MOST READ SECTION (home page — numbered post list)
   -------------------------------------------------------------------------- */

.bl-most-read {
  background: #070b16;
  border-top: 1px solid #1a2540;
}

.bl-most-read__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bl-most-read__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bl-most-read__eyebrow {
  font-family: var(--bl-font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00c2ff;
  margin: 0;
}

.bl-most-read__title {
  font-family: var(--bl-font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  color: #f3f4f6;
  margin: 0;
}

.bl-most-read__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.bl-most-read__item {
  border-top: 1px solid #243044;
}

.bl-most-read__item:last-child {
  border-bottom: 1px solid #243044;
}

.bl-most-read__link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  text-decoration: none;
  transition: opacity 0.15s;
}

.bl-most-read__link:hover {
  opacity: 0.8;
}

.bl-most-read__num {
  font-family: var(--bl-font-display);
  font-size: 28px;
  font-weight: 700;
  color: #00c2ff;
  min-width: 44px;
  flex-shrink: 0;
  line-height: 1;
}

.bl-most-read__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.bl-most-read__item-title {
  font-family: var(--bl-font-display);
  font-size: 17px;
  font-weight: 700;
  color: #f3f4f6;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s;
}

.bl-most-read__link:hover .bl-most-read__item-title {
  color: #00c2ff;
}

.bl-most-read__meta {
  font-size: 13px;
  color: #94a3b8;
  display: block;
}

@media (max-width: 640px) {
  .bl-most-read__num {
    font-size: 22px;
    min-width: 34px;
  }

  .bl-most-read__item-title {
    font-size: 15px;
    white-space: normal;
  }

  .bl-most-read__inner {
    padding: 60px 16px;
  }
}

/* --------------------------------------------------------------------------
   10d. FUTURE TRENDS SECTION (home page — 3-col card grid)
   -------------------------------------------------------------------------- */

.bl-future-trends {
  background: #070b16;
  border-top: 1px solid #1a2540;
}

.bl-future-trends__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bl-future-trends__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bl-future-trends__eyebrow {
  font-family: var(--bl-font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00c2ff;
  margin: 0;
}

.bl-future-trends__title {
  font-family: var(--bl-font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  color: #f3f4f6;
  margin: 0;
}

.bl-future-trends__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bl-future-card {
  background: #111827;
  border: 1px solid #1f2d4a;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition:
    border-color 0.18s,
    transform 0.18s;
}

.bl-future-card:hover {
  border-color: rgba(0, 194, 255, 0.35);
  transform: translateY(-2px);
}

.bl-future-card__label {
  font-family: var(--bl-font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00c2ff;
  margin: 0;
}

.bl-future-card__title {
  font-family: var(--bl-font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #f3f4f6;
  margin: 0;
  transition: color 0.15s;
}

.bl-future-card:hover .bl-future-card__title {
  color: #00c2ff;
}

.bl-future-card__excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0;
  flex: 1;
}

.bl-future-card__bar {
  display: block;
  height: 4px;
  background: var(--bl-accent-gradient);
  border-radius: 2px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .bl-future-trends__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .bl-future-trends__grid {
    grid-template-columns: 1fr;
  }

  .bl-future-trends__inner {
    padding: 60px 16px;
  }
}

/* --------------------------------------------------------------------------
   10f. ABOUT PAGE  (page-about-us.php — ab-* classes)
   -------------------------------------------------------------------------- */

/* Match body bg to the dark hero so no cream flash under sticky header */
.page-template-page-about-us {
  background-color: #122624;
}

/* ── Shared eyebrow ── */
.ab-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #27eaa6;
  display: block;
  margin: 0 0 16px;
}
.ab-eyebrow--center {
  text-align: center;
}

/* ── Shared buttons ── */
.ab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--bl-font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.ab-btn:hover {
  opacity: 0.82;
}
.ab-btn--primary {
  background-color: #d0ff71;
  color: #0b1817;
}
.ab-btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.ab-btn--ghost:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
}

/* ── HERO ── */
.ab-hero {
  background: linear-gradient(135deg, #122624 0%, #163a30 100%);
  padding: 88px 0 96px;
}
.ab-hero__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: stretch;
}
.ab-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ab-hero__heading {
  font-family: var(--bl-font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  color: #ffffff;
  margin: 0 0 22px;
}
.ab-hero__desc {
  font-size: 17px;
  line-height: 1.7;
  color: #7a9e8a;
  margin: 0 0 36px;
  max-width: 540px;
}
.ab-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
/* Right card */
.ab-hero__card {
  background-color: #122824;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  height: 100%;
  box-sizing: border-box;
}
.ab-hero__card-icon {
  flex-shrink: 0;
  width: 140px;
  height: auto;
}
.ab-hero__card-since {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #27eaa6;
  margin: 4px 0 0;
}
.ab-hero__card-tagline {
  font-family: var(--bl-font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

/* ── MISSION ── */
.ab-mission {
  background-color: #122624;
  padding: 80px 0 96px;
}
.ab-mission__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ab-mission__statement {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 42px;
  color: #ffffff;
  margin: 0;
}

/* ── STATS ── */
.ab-stats {
  background-color: #0e1f1d;
  padding: 64px 0;
}
.ab-stats__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ab-stat-card {
  background-color: #19332f;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ab-stat-card__val {
  font-family: var(--bl-font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 700;
  color: #27eaa6;
  line-height: 1;
}
.ab-stat-card__label {
  font-size: 13px;
  color: #7a9e8a;
  line-height: 1.4;
}

/* ── HOW WE WORK / VALUES ── */
.ab-values {
  background-color: #0e1f1d;
  padding: 96px 0;
}
.ab-values__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 80px;
}
.ab-values__head {
  margin-bottom: 40px;
}
.ab-values__heading {
  font-family: var(--bl-font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ab-val-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ab-val-card__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #27eaa6;
}
.ab-val-card__title {
  font-family: var(--bl-font-display);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.ab-val-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #7a9e8a;
  margin: 0;
}

/* ── TEAM ── */
.ab-team {
  background-color: #0e1f1d;
  padding: 96px 0;
}
.ab-team__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 80px;
}
.ab-team__head {
  margin-bottom: 40px;
}
.ab-team__heading {
  font-family: var(--bl-font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #5f7872;
  margin: 0;
}
.ab-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ab-team-card {
  background-color: #19332f;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ab-team-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ab-team-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ab-team-card__name {
  font-family: var(--bl-font-display);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.ab-team-card__role {
  font-size: 13px;
  color: #7a9e8a;
  margin: 0;
}

/* ── About page responsive ── */

/* ≤1100px — large tablet / small laptop */
@media (max-width: 1100px) {
  .ab-hero {
    padding: 72px 0 80px;
  }
  .ab-hero__inner {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }
}

/* ≤900px — tablet portrait */
@media (max-width: 900px) {
  .ab-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* hide forced desktop break — heading wraps naturally on tablet */
  .ab-hero__heading br {
    display: none;
  }
  .ab-hero__right {
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
  .ab-hero__card {
    padding: 40px 32px;
  }
  /* 3 → 2 columns for tablet, not straight to 1 */
  .ab-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ab-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ab-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ≤640px — mobile */
@media (max-width: 640px) {
  .ab-hero__inner,
  .ab-mission__inner,
  .ab-stats__inner,
  .ab-values__inner,
  .ab-team__inner {
    padding-inline: 20px;
  }
  .ab-hero {
    padding: 56px 0 64px;
  }
  .ab-hero__right {
    max-width: 100%;
  }
  .ab-hero__card {
    padding: 32px 24px;
  }
  .ab-hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .ab-btn {
    width: 100%;
    text-align: center;
  }
  .ab-mission {
    padding: 56px 0 64px;
  }
  .ab-mission__inner {
    align-items: flex-start;
    text-align: left;
    padding-inline: 20px;
  }
  .ab-mission__statement {
    font-size: 28px;
    line-height: 40px;
  }
  .ab-stats {
    padding: 48px 0;
  }
  .ab-stats__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ab-stat-card {
    padding: 24px 20px;
  }
  .ab-values {
    padding: 72px 0;
  }
  .ab-values__grid {
    grid-template-columns: 1fr;
  }
  .ab-team {
    padding: 72px 0;
  }
  .ab-team__grid {
    grid-template-columns: 1fr;
  }
  /* Horizontal card layout on mobile: photo left, info right */
  .ab-team-card {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .ab-team-card__photo {
    width: 80px;
    height: 80px;
  }
}

/* --------------------------------------------------------------------------
   10g. ALL POSTS PAGE  (ap-* classes)
   -------------------------------------------------------------------------- */

.ap-hero {
  background: #fbfaf6;
  padding: 35px 40px 0;
}

.ap-hero__inner {
  position: relative;
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding: 40px;
  border-radius: 22px;
  overflow: hidden;
  background: url("../img/all-posts-hero-bg.webp") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ap-hero__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(50, 54, 36, 0.48);
}

.ap-hero__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.ap-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0) invert(1);
}

.ap-hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--bl-font-display);
  font-size: 55px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.ap-intro {
  background: #fbfaf6;
}

.ap-intro__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ap-intro__desc {
  font-family: var(--bl-font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 185%;
  text-align: center;
  color: #314528;
  max-width: 940px;
  margin: 0 auto;
}

.ap-grid-section {
  background: #fbfaf6;
  padding-bottom: 80px;
}

.ap-grid-section__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ap-card {
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 25px;
  transition: opacity 0.2s;
  position: relative;
}

.ap-card:hover {
  opacity: 0.92;
}

.ap-card__img-wrap {
  position: relative;
  display: block;
  height: 342px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
}

.ap-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: #e4e2d8;
}

.ap-card__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
}

.ap-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ap-card__date,
.ap-card__author {
  font-family: var(--bl-font-body);
  font-size: 16px;
  color: #929292;
}

.ap-card__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ap-card__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.ap-card__title {
  font-family: var(--bl-font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: #314528;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ap-card__title-link {
  color: inherit;
  text-decoration: none;
}

.ap-card__title-link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.ap-card__title-link:hover {
  opacity: 0.85;
}

.ap-card__excerpt {
  font-family: var(--bl-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: #6c7667;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ap-card__arrow {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14.5px;
  background: #314528;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.18s;
}

.ap-card__arrow:hover {
  background: #1e6e54;
}

.ap-no-posts {
  font-family: var(--bl-font-body);
  color: #5f7872;
  text-align: center;
  padding: 40px 0;
}

.ap-pagination {
  display: flex;
  justify-content: center;
}

.ap-pagination ul.page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
}

.ap-pagination .page-numbers li {
  list-style: none;
}

.ap-pagination .page-numbers a,
.ap-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-family: var(--bl-font-display);
  font-size: 15px;
  font-weight: 600;
  color: #19332f;
  background: #c8d9bb;
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
}

.ap-pagination .page-numbers a:hover {
  background: #19332f;
  color: #ecf6f0;
}
.ap-pagination .page-numbers span.current {
  background: #d0ff71;
  color: #0b1817;
}
.ap-pagination .page-numbers .dots {
  background: transparent;
  color: #5f7872;
}

.ap-quote {
  background: #fbfaf6;
  padding: 40px 40px 100px;
}

.ap-quote__inner {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.ap-quote__mark {
  display: block;
  width: 20px;
  height: 18px;
  color: #000000;
}

.ap-quote__mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ap-quote__text {
  font-family: var(--bl-font-body);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 155%;
  letter-spacing: 1.54px;
  text-transform: uppercase;
  text-align: center;
  color: #889284;
  margin: 0;
}

.ap-quote__byline {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ap-quote__avatar {
  display: block;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.ap-quote__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-quote__name {
  font-family: var(--bl-font-body);
  font-size: 20px;
  font-weight: 700;
  color: #314528;
}

.ap-quote__name-break {
  display: none;
}

@media (max-width: 1024px) {
  .ap-hero,
  .ap-intro__inner,
  .ap-grid-section__inner {
    padding-inline: 40px;
  }
  .ap-hero__title {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .ap-hero {
    padding-inline: 20px;
  }
  .ap-intro__inner,
  .ap-grid-section__inner,
  .ap-quote {
    padding-inline: 20px;
  }
  .ap-hero__title {
    font-size: 32px;
  }
  .ap-intro__desc {
    font-size: 17px;
  }
  .ap-mid-flow {
    display: flex;
    flex-direction: column;
  }
  .ap-quote {
    order: -1;
  }
  .ap-grid {
    grid-template-columns: 1fr;
  }
  .ap-card__img-wrap {
    height: 280px;
  }
  .ap-card__title {
    font-size: 22px;
  }
  .ap-card__arrow {
    width: 35px;
    height: 35px;
    border-radius: 9px;
  }
  .ap-card__arrow svg {
    width: 14px;
    height: 14px;
  }
  .ap-quote__name {
    font-size: 16px;
  }
  .ap-quote__name-break {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */

/* Sticky footer — page wrapper grows to fill the viewport so the footer
   always sits at the bottom even when content is short. */
#page.bl-page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main.bl-main {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.grecaptcha-badge {
  display: none !important;
}

.bl-nav-logo-img {
  max-height: 50px;
}

.bl-site-footer {
  background: #323624;
  font-family: var(--bl-font-body);
}

.bl-site-footer__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 39px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 49px;
  text-align: center;
}

.bl-site-footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.bl-site-footer__logo-wordmark {
  font-family: var(--bl-font-display);
  font-weight: 900;
  font-size: 44px;
  color: #fff;
}

.bl-site-footer__logo-sub {
  font-family: var(--bl-font-body);
  font-weight: 300;
  font-size: 29px;
  letter-spacing: 0.42em;
  color: #fff;
}

.bl-site-footer__div {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.bl-site-footer__fda {
  font-size: 14px;
  line-height: 1.18;
  color: #fff;
}

.bl-site-footer__fda p + p {
  margin-top: 1em;
}

.bl-site-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.bl-site-footer__links a {
  font-family: var(--bl-font-body);
  font-size: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f0f0ee;
  text-decoration: none;
}

.bl-site-footer__links a:hover {
  text-decoration: underline;
}

.bl-site-footer__copy {
  font-size: 14px;
  color: #fff;
}

@media (max-width: 900px) {
  .bl-site-footer__inner {
    padding: 32px 20px;
    gap: 25px;
  }
  .bl-site-footer__logo-wordmark {
    font-size: 21px;
  }
  .bl-site-footer__logo-sub {
    font-size: 14px;
  }
  .bl-site-footer__fda {
    line-height: 1.35;
  }
  .bl-site-footer__links {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .bl-site-footer__links a {
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   12. SINGLE POST  (bls-* classes)
   -------------------------------------------------------------------------- */

.bls-article {
  background: #fbfaf6;
}

/* ── Hero ── */
.bls-hero {
  position: relative;
  height: 745px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  padding-inline: 40px;
  background: #314528 center / cover no-repeat;
}

.bls-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.31);
}

.bls-hero__inner {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.bls-hero__title {
  font-family: var(--bl-font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}

.bls-hero__subtitle {
  color: #ffffff;
  text-align: center;
  font-family: var(--bl-font-body);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 185%;
  max-width: 640px;
  margin: 0;
}

/* ── Prose ── */
.bls-prose-wrap {
  background: #fbfaf6;
  padding: 80px 40px;
}

.bls-prose {
  max-width: 845px;
  margin-inline: auto;
  font-family: var(--bl-font-body);
  font-size: 20px;
  line-height: 1.85;
  text-align: center;
  color: #314528;
}

.bls-prose p {
  margin: 0 0 37px;
}

.bls-prose p:last-child {
  margin-bottom: 0;
}

.bls-prose h2,
.bls-prose h3 {
  font-family: var(--bl-font-display);
  font-weight: 800;
  color: #314528;
  text-align: center;
  margin: 48px 0 20px;
}

.bls-prose h2 {
  font-size: 32px;
}

.bls-prose h3 {
  font-size: 24px;
}

.bls-prose a {
  color: inherit;
  text-decoration: underline;
}

.bls-prose ul,
.bls-prose ol {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 37px;
}

.bls-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ── Byline strip ── */
.bls-byline-wrap {
  background: #fbfaf6;
  padding: 0 40px 80px;
}

.bls-byline {
  max-width: 845px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
  border-top: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
}

.bls-byline__author {
  display: contents;
}

.bls-byline__avatar {
  display: block;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bls-byline__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bls-byline__name {
  font-family: var(--bl-font-body);
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.bls-byline__date {
  font-family: var(--bl-font-body);
  font-size: 20px;
  font-weight: 400;
  color: #929292;
}

.bls-byline__likes {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.bls-byline__like-icon {
  display: block;
  width: 65px;
  height: 65px;
  flex-shrink: 0;
}

.bls-byline__like-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bls-byline__like-count {
  font-family: var(--bl-font-body);
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

/* ── More from the Journal ── */
.bls-more {
  background: #fbfaf6;
  padding: 0 40px 100px;
}

.bls-more__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bls-more__title {
  font-family: var(--bl-font-display);
  font-size: 32px;
  font-weight: 800;
  color: #314528;
  text-align: center;
  margin: 0;
}

/* ── Single post responsive ── */
@media (max-width: 1024px) {
  .bls-hero {
    height: 560px;
  }
  .bls-hero__title {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .bls-hero {
    height: 418px;
    padding-inline: 20px;
  }
  .bls-hero__title {
    font-size: 32px;
  }
  .bls-hero__subtitle {
    font-size: 18px;
  }
  .bls-prose-wrap {
    padding: 48px 20px;
  }
  .bls-prose {
    font-size: 16px;
  }
  .bls-prose h2 {
    font-size: 26px;
  }
  .bls-prose h3 {
    font-size: 20px;
  }
  .bls-byline-wrap {
    padding: 0 20px 48px;
  }
  .bls-byline {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 0;
    gap: 20px;
  }
  .bls-byline__author {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
  .bls-byline__avatar {
    width: 69px;
    height: 69px;
  }
  .bls-byline__name,
  .bls-byline__date {
    font-size: 16px;
  }
  .bls-byline__likes {
    justify-content: center;
  }
  .bls-byline__like-icon {
    width: 36px;
    height: 36px;
  }
  .bls-byline__like-count {
    font-size: 16px;
  }
  .bls-more {
    padding: 0 20px 60px;
  }
  .bls-more__title {
    font-size: 27px;
  }
}

/* ── Post body typography (shared: single + page) ── */
.bl-post-body {
  font-size: 17px;
  line-height: 1.75;
  color: #1a2b27;
}

.bl-post-body h2,
.bl-post-body h3,
.bl-post-body h4 {
  font-family: var(--bl-font-display);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 1.2em;
  margin-bottom: 0.4em;
  color: #0e1f1d;
}

.bl-post-body h2 {
  font-size: 28px;
}
.bl-post-body h3 {
  font-size: 22px;
}
.bl-post-body h4 {
  font-size: 18px;
}

.bl-post-body p {
  margin-bottom: 1.4em;
}

.bl-post-body a {
  color: #0d9488;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bl-post-body ul,
.bl-post-body ol {
  margin-bottom: 1.4em;
  padding-left: 1.5em;
}

.bl-post-body ul {
  list-style: disc;
}
.bl-post-body ol {
  list-style: decimal;
}
.bl-post-body li {
  margin-bottom: 0.5em;
}

.bl-post-body blockquote {
  border-left: 3px solid #0d9488;
  padding-left: 24px;
  margin-left: 0;
  margin-bottom: 1.4em;
  font-style: italic;
  color: #4a5a55;
}

.bl-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-block: 2em;
}

.bl-post-body figure {
  margin-block: 2em;
}

.bl-post-body figcaption {
  font-size: 14px;
  color: #7a8a85;
  margin-top: 8px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   12c. PRIVACY POLICY / TERMS PAGES  (pp-* classes)
   -------------------------------------------------------------------------- */

.pp-hero {
  background: #fbfaf6;
  padding: 60px 40px 0;
}

.pp-hero__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
}

.pp-hero__title {
  font-family: var(--bl-font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #314528;
  margin: 0;
}

.pp-body {
  background: #fbfaf6;
  padding: 40px 0 100px;
}

.pp-body__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 40px;
}

.pp-body__inner p,
.pp-body__inner ul,
.pp-body__inner ol {
  font-family: var(--bl-font-body);
  font-size: 20px;
  line-height: 185%;
  text-align: center;
  color: #314528;
  margin: 0 0 30px;
}

.pp-body__inner ul,
.pp-body__inner ol {
  text-align: left;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 30px;
  padding-left: 24px;
}

.pp-body__inner ul {
  list-style: disc;
}
.pp-body__inner ol {
  list-style: decimal;
}

.pp-body__inner li {
  margin-bottom: 8px;
}

.pp-body__inner strong {
  font-weight: 700;
}

.pp-body__inner a {
  color: inherit;
  text-decoration: underline;
}

.pp-body__inner a:hover {
  opacity: 0.75;
}

.pp-body__inner h2 {
  font-family: var(--bl-font-display);
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  color: #314528;
  margin: 50px 0 20px;
}

.pp-body__inner h2:first-child {
  margin-top: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pp-hero {
    padding: 48px 24px 0;
  }
  .pp-body__inner {
    padding-inline: 24px;
  }
}

@media (max-width: 640px) {
  .pp-hero {
    padding: 40px 20px 0;
  }
  .pp-hero__title {
    font-size: 28px;
  }
  .pp-body {
    padding: 32px 0 64px;
  }
  .pp-body__inner {
    padding-inline: 20px;
  }
  .pp-body__inner p,
  .pp-body__inner ul,
  .pp-body__inner ol {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .pp-body__inner h2 {
    font-size: 22px;
    margin: 36px 0 16px;
  }
}

/* --------------------------------------------------------------------------
   13. PAGE (standard page)
   -------------------------------------------------------------------------- */
.bl-page-header {
  background: #fff;
  padding: 80px var(--bl-gutter) 60px;
  border-bottom: 1px solid var(--bl-border);
}

.bl-page-header__inner {
  max-width: 820px;
  margin-inline: auto;
}

.bl-page-title {
  font-family: var(--bl-font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.04px;
  color: var(--bl-dark);
}

.bl-page-content {
  max-width: 820px;
  margin-inline: auto;
  padding: 60px var(--bl-gutter);
}

/* --------------------------------------------------------------------------
   13b. ABOUT US PAGE
   -------------------------------------------------------------------------- */

/* ── Page wrapper ── */
.bl-au-main {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ── Shared inner container ── */
.bl-au-inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: var(--bl-gutter);
}

/* ── 1. Hero ── */
.bl-au-hero .bl-au-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bl-au-hero__title {
  font-family: var(--bl-font-display);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -2px;
  color: var(--bl-dark);
  max-width: 900px;
}

.bl-au-hero__lead {
  max-width: 820px;
  color: var(--bl-mid);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

/* ── 2. What we do ── */
.bl-au-what .bl-au-inner {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 80px;
  align-items: start;
}

.bl-au-what__title {
  font-family: var(--bl-font-display);
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.8px;
  color: var(--bl-mid);
  position: sticky;
  top: 80px;
}

.bl-au-what__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: var(--bl-mid);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
}

/* ── 3. Our team ── */
.bl-au-team-sec .bl-au-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.bl-au-team-sec__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl-au-team-sec__title {
  font-family: var(--bl-font-display);
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.8px;
  color: var(--bl-mid);
}

.bl-au-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bl-au-team-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bl-light);
  border: 1px solid var(--bl-border);
  border-radius: 10px;
  padding: 36px;
}

.bl-au-team-card__top {
  display: flex;
  align-items: center;
  gap: 22px;
}

.bl-au-team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--bl-font-display);
  font-size: 44px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}

.bl-au-team-avatar--warm {
  background: linear-gradient(135deg, var(--bl-accent) 0%, var(--bl-accent-dark) 100%);
}

.bl-au-team-avatar--navy {
  background: linear-gradient(135deg, var(--bl-mid) 0%, var(--bl-dark) 100%);
}

.bl-au-team-card__name {
  font-family: var(--bl-font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.52px;
  color: var(--bl-dark);
}

.bl-au-team-card__role {
  color: var(--bl-muted);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.28px;
  margin-top: 5px;
}

.bl-au-team-card__beat {
  color: var(--bl-mid);
  font-size: 15px;
  line-height: 1.6;
}

/* ── 4. Editorial independence ── */
.bl-au-independence {
  background: var(--bl-dark);
  border-radius: 18px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.bl-au-independence__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 48px;
}

.bl-au-independence__title {
  font-family: var(--bl-font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.96px;
  color: #fff;
}

.bl-au-independence__right {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.bl-au-independence__lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.65;
}

.bl-au-independence__items {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 8px;
}

.bl-au-independence__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.bl-au-independence__item:first-child {
  padding-left: 0;
  border-left: none;
}

.bl-au-independence__item-title {
  font-family: var(--bl-font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.bl-au-independence__item-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* ── 5. Pitch us / Contact ── */
.bl-au-pitch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.bl-au-pitch__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bl-au-pitch__title {
  font-family: var(--bl-font-display);
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.8px;
  color: var(--bl-mid);
}

.bl-au-pitch__lead {
  color: var(--bl-mid);
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
}

.bl-au-contacts {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bl-au-contacts__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--bl-muted);
}

.bl-au-contacts__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl-au-contacts__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bl-au-contacts__type {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--bl-muted);
}

.bl-au-contacts__email {
  font-family: var(--bl-font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--bl-dark);
  transition: color var(--bl-transition);
}

.bl-au-contacts__email:hover {
  color: var(--bl-accent);
}

.bl-au-pitch__form {
  background: var(--bl-light);
  border: 1px solid var(--bl-border);
  border-radius: 16px;
  padding: 40px;
}

/* ── CF7 form inside pitch card ── */
.bl-au-pitch__form form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl-au-pitch__form .form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Name + Email in one row */
.bl-au-pitch__form .contact-form-email-name {
  display: flex;
  gap: 20px;
}

.bl-au-pitch__form .contact-form-email-name > p {
  flex: 1;
  margin: 0;
}

.bl-au-pitch__form .form-fields > p,
.bl-au-pitch__form .form-privacy > p,
.bl-au-pitch__form form.wpcf7-form > p {
  margin: 0;
}

.bl-au-pitch__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  color: var(--bl-dark);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--bl-font-body);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: text;
}

.bl-au-pitch__form label br {
  display: none;
}

.bl-au-pitch__form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.bl-au-pitch__form input[type="text"],
.bl-au-pitch__form input[type="email"],
.bl-au-pitch__form input[type="url"] {
  display: block;
  width: 100%;
  min-height: 44px;
  color: var(--bl-muted);
  font-size: 15px;
  font-family: var(--bl-font-body);
  font-weight: 400;
  background: var(--bl-light);
  padding: 11px 20px;
  border: 1px solid var(--bl-border);
  border-radius: 999px;
  outline: none;
  transition: border-color var(--bl-transition);
  -webkit-appearance: none;
  appearance: none;
}

.bl-au-pitch__form input[type="text"]:focus,
.bl-au-pitch__form input[type="email"]:focus,
.bl-au-pitch__form input[type="url"]:focus {
  border-color: var(--bl-mid);
}

.bl-au-pitch__form textarea {
  display: block;
  width: 100%;
  min-height: 120px;
  color: var(--bl-muted);
  font-size: 15px;
  font-family: var(--bl-font-body);
  font-weight: 400;
  line-height: 1.6;
  background: var(--bl-light);
  padding: 13px 18px;
  border: 1px solid var(--bl-border);
  border-radius: 10px;
  resize: vertical;
  outline: none;
  transition: border-color var(--bl-transition);
}

.bl-au-pitch__form textarea:focus {
  border-color: var(--bl-mid);
}

/* URL field — "Optional" label tag via CSS */
.bl-au-pitch__form p:has(input[type="url"]) {
  position: relative;
}

.bl-au-pitch__form p:has(input[type="url"])::before {
  content: "Optional";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.44px;
  color: var(--bl-muted);
  text-transform: none;
  font-family: var(--bl-font-body);
}

/* Acceptance / checkbox */
.bl-au-pitch__form .wpcf7-acceptance {
  margin-top: 4px;
}

.bl-au-pitch__form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  margin: 0;
}

.bl-au-pitch__form .wpcf7-acceptance label {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--bl-muted);
  cursor: pointer;
}

.bl-au-pitch__form .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: unset;
  flex-shrink: 0;
  margin: 2px 0 0;
  background: var(--bl-light);
  border: 1px solid var(--bl-border);
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition:
    background var(--bl-transition),
    border-color var(--bl-transition);
}

.bl-au-pitch__form .wpcf7-acceptance input[type="checkbox"]:checked {
  background: var(--bl-dark);
  border-color: var(--bl-dark);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
}

.bl-au-pitch__form .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 13px;
  color: var(--bl-muted);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

/* Submit button */
.bl-au-pitch__form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f1e8d3;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--bl-font-body);
  letter-spacing: 0.78px;
  text-transform: uppercase;
  background: var(--bl-dark);
  padding: 13px 28px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--bl-transition);
  -webkit-appearance: none;
  appearance: none;
  margin-top: 4px;
}

.bl-au-pitch__form input[type="submit"]:hover {
  background: var(--bl-mid);
}

/* Validation messages */
.bl-au-pitch__form .wpcf7-not-valid-tip {
  display: block;
  color: var(--bl-accent);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}

.bl-au-pitch__form .wpcf7-response-output {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .bl-au-main {
    gap: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .bl-au-what .bl-au-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bl-au-what__title {
    position: static;
  }

  .bl-au-independence {
    grid-template-columns: 1fr;
    padding: 48px;
    gap: 40px;
  }

  .bl-au-independence__left {
    padding-top: 0;
  }

  .bl-au-pitch {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .bl-au-main {
    gap: 64px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .bl-au-team-grid {
    grid-template-columns: 1fr;
  }

  .bl-au-independence {
    padding: 36px 28px;
  }

  .bl-au-independence__items {
    flex-direction: column;
    gap: 0;
  }

  .bl-au-independence__item {
    padding: 18px 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .bl-au-independence__item:first-child {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 600px) {
  .bl-au-team-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .bl-au-pitch__form {
    padding: 28px 24px;
  }

  .bl-au-pitch__form .contact-form-email-name {
    flex-direction: column;
  }
}

/* --------------------------------------------------------------------------
   13d. DISCLAIMER PAGE
   -------------------------------------------------------------------------- */

.bl-disclaimer-wrap {
  background: var(--bl-light);
}

.bl-disclaimer-header {
  padding: 80px var(--bl-gutter) 64px;
}

.bl-disclaimer-header__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl-disclaimer-divider {
  height: 1px;
  background: var(--bl-border);
  margin-block: 8px;
}

.bl-disclaimer-title {
  font-family: var(--bl-font-display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.44px;
  color: var(--bl-dark);
}

.bl-disclaimer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--bl-muted);
  font-size: 15px;
}

.bl-disclaimer-meta__date {
  color: var(--bl-accent);
  font-weight: 600;
}

.bl-disclaimer-body {
  padding-block: 72px 100px;
}

.bl-disclaimer-inner {
  max-width: 760px;
  width: calc(100% - 2 * var(--bl-gutter));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Intro */
.bl-disclaimer-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 56px;
  color: var(--bl-mid);
  font-size: 17px;
  line-height: 1.65;
}

/* Section — 2-col grid: [number] [title + body] */
.bl-disclaimer-section {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 8px;
  row-gap: 20px;
  padding-block: 48px;
  align-items: start;
}

.bl-disclaimer-section__head {
  display: contents;
}

.bl-disclaimer-section__num {
  font-family: var(--bl-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--bl-accent);
  grid-column: 1;
  padding-top: 6px;
}

.bl-disclaimer-section--featured .bl-disclaimer-section__num {
  letter-spacing: 0;
  padding-top: 2px;
}

.bl-disclaimer-section__title {
  font-family: var(--bl-font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--bl-dark);
  grid-column: 2;
}

.bl-disclaimer-section--simple {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bl-disclaimer-section__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--bl-mid);
  font-size: 16px;
  line-height: 1.65;
  grid-column: 2;
}

/* List */
.bl-disclaimer-list {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bl-disclaimer-list li {
  position: relative;
  padding-left: 17px;
}

.bl-disclaimer-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bl-mid);
  position: absolute;
  left: 0;
  top: 9px;
}

/* Sub-label within section body */
.bl-disclaimer-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--bl-dark);
}

/* Address block */
.bl-disclaimer-address {
  background: var(--bl-card-bg);
  border: 1px solid var(--bl-border);
  border-radius: 10px;
  padding: 22px 26px;
  font-style: normal;
  font-family: var(--bl-font-mono);
  font-size: 14px;
  line-height: 1.8;
  color: var(--bl-dark);
  width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.bl-disclaimer-address a {
  color: var(--bl-accent);
  text-decoration: none;
}

.bl-disclaimer-address a:hover {
  text-decoration: underline;
}

/* Final notice */
.bl-disclaimer-final {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 56px;
  color: var(--bl-mid);
  font-size: 16px;
  line-height: 1.65;
}

.bl-disclaimer-copyright {
  font-size: 13px;
  color: var(--bl-muted);
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--bl-border);
}

/* Responsive */
@media (max-width: 768px) {
  .bl-disclaimer-header {
    padding-block: 56px 48px;
  }

  .bl-disclaimer-section {
    padding-block: 36px;
    grid-template-columns: 40px 1fr;
  }

  .bl-disclaimer-section__title {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .bl-disclaimer-section {
    grid-template-columns: 32px 1fr;
    column-gap: 4px;
  }

  .bl-disclaimer-section__title {
    font-size: 22px;
  }

  .bl-disclaimer-section__num,
  .bl-disclaimer-section--featured .bl-disclaimer-section__num {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding-top: 5px;
  }
}

/* --------------------------------------------------------------------------
   14. ARCHIVE / CATEGORY
   -------------------------------------------------------------------------- */
.bl-archive {
  padding-block: 80px;
}

.bl-archive__header {
  background: #fff;
  padding: 60px var(--bl-gutter) 48px;
  border-bottom: 1px solid var(--bl-border);
}

.bl-archive__header-inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
}

.bl-archive__title {
  font-family: var(--bl-font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.04px;
  color: var(--bl-dark);
  margin-bottom: 8px;
}

.bl-archive__title em {
  font-style: italic;
  color: var(--bl-navy);
}

.bl-archive__description {
  font-size: 16px;
  color: var(--bl-muted);
}

.bl-archive__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding-inline: 40px;
  padding-top: 64px;
}

.bl-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* --------------------------------------------------------------------------
   15. SEARCH RESULTS
   -------------------------------------------------------------------------- */
.bl-search-header {
  background: #fff;
  padding: 60px var(--bl-gutter) 48px;
  border-bottom: 1px solid var(--bl-border);
}

.bl-search-header__inner {
  max-width: var(--bl-max-w);
  margin-inline: auto;
}

.bl-search-title {
  font-family: var(--bl-font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.86px;
  color: var(--bl-dark);
}

.bl-search-title em {
  font-style: italic;
  color: var(--bl-navy);
}

.bl-search-count {
  font-size: 15px;
  color: var(--bl-muted);
  margin-top: 10px;
}

.bl-search-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 540px;
  margin-top: 24px;
  border: 1px solid var(--bl-border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.bl-search-form__input {
  flex: 1;
  padding: 12px 20px;
  font-size: 15px;
  border: none;
  outline: none;
  color: var(--bl-dark);
  background: transparent;
}

.bl-search-form__btn {
  padding: 12px 20px;
  background: var(--bl-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity var(--bl-transition);
}

.bl-search-form__btn:hover {
  opacity: 0.85;
}

.bl-search-content {
  max-width: var(--bl-max-w);
  margin-inline: auto;
  padding: 64px var(--bl-gutter);
}

.bl-search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bl-search-no-results {
  text-align: center;
  padding-block: 80px;
}

.bl-search-no-results p {
  font-size: 18px;
  color: var(--bl-muted);
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   16. 404 PAGE
   -------------------------------------------------------------------------- */
.bl-404 {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bl-light);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bl-404__code {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--bl-font-display);
  font-size: clamp(200px, 38vw, 400px);
  font-weight: 800;
  color: var(--bl-navy);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

.bl-404__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bl-404__eyebrow {
  display: inline-block;
  font-family: var(--bl-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bl-navy);
  margin-bottom: 22px;
}

.bl-404__heading {
  font-family: var(--bl-font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bl-navy);
  line-height: 1.15;
  margin-bottom: 18px;
}

.bl-404__text {
  font-family: var(--bl-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--bl-navy);
  opacity: 0.75;
  max-width: 400px;
  margin-bottom: 36px;
}

.bl-404__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.bl-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--bl-navy);
  color: var(--bl-light);
  font-family: var(--bl-font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.bl-404__btn:hover {
  opacity: 0.85;
}

.bl-404__btn--ghost {
  background-color: transparent;
  color: var(--bl-navy);
  border: 1.5px solid rgba(49, 69, 40, 0.3);
}

.bl-404__btn--ghost:hover {
  opacity: 1;
  border-color: rgba(49, 69, 40, 0.5);
  background-color: rgba(49, 69, 40, 0.06);
}

@media (max-width: 640px) {
  .bl-404 {
    padding: 60px 24px;
  }
  .bl-404__actions {
    flex-direction: column;
    width: 100%;
  }
  .bl-404__btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE — Desktop-small (≤1200px)
   Nav collapses to hamburger; footer copyright wraps to centred second row.
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  /* Hide desktop nav links + subscribe; show hamburger */
  .bl-nav-list {
    display: none;
  }

  .bl-nav {
    justify-content: space-between;
  }

  .bl-menu-toggle {
    display: flex;
  }

  .bl-site-header {
    background: var(--bl-light);
  }

  .bl-nav {
    padding: 6px 20px;
  }

  .bl-nav-subscribe-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE — Tablet (~1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  :root {
    --bl-gutter: 48px;
  }

  .bl-nav-list {
    gap: 20px;
  }

  .bl-latest-news__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bl-archive-header {
    padding-block: 72px 56px;
  }

  .bl-archive-header__inner {
    padding-inline: 24px;
  }

  .bl-tabs-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .bl-archive-search {
    width: 100%;
  }

  .bl-archive-search__input {
    width: 100%;
  }

  .bl-posts-grid,
  .bl-archive__grid,
  .bl-search-grid,
  .bl-popular-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Hide 9th post card in grid on tablet (8 posts → cleaner layout) */
  .bl-posts-grid .bl-post-card:nth-child(9) {
    display: none;
  }

  /* Hide 3rd popular news post on tablet */
  .bl-popular-news__grid .bl-post-card:nth-child(3) {
    display: none;
  }

  .bl-archive {
    padding-block: 20px;
  }
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE — Mobile (~768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --bl-gutter: 24px;
  }

  /* Nav */
  .bl-nav {
    padding-inline: 20px;
  }

  /* Latest news */
  .bl-latest-news {
    padding-block: 64px;
  }

  .bl-latest-news__inner {
    padding-inline: 24px;
  }

  .bl-archive-header {
    padding-block: 56px 40px;
  }

  .bl-archive-header__inner {
    padding-inline: 24px;
  }

  .bl-posts-grid,
  .bl-archive__grid,
  .bl-search-grid {
    grid-template-columns: 1fr;
  }

  /* Archive */
  .bl-archive__header,
  .bl-search-header {
    padding-inline: 24px;
  }

  .bl-archive__inner,
  .bl-search-content {
    padding-inline: 24px;
  }

  /* Single */
  .bl-single-header {
    padding: 40px 24px 36px;
  }

  .bl-single-thumb-wrap {
    padding-inline: 20px;
    margin-top: 32px;
    border-radius: 12px;
  }

  .bl-single-content {
    display: block;
    padding: 40px 24px;
  }

  .bl-post-body {
    font-size: 17px;
  }

  .bl-single-tags {
    padding: 24px 24px 40px;
    gap: 12px;
  }

  .bl-popular-news {
    padding-block: 60px;
  }

  .bl-popular-news__inner {
    padding-inline: 24px;
  }

  .bl-popular-news__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
  }

  .bl-popular-news__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Keep 3rd popular news post hidden on mobile too */
  .bl-popular-news__grid .bl-post-card:nth-child(3) {
    display: none;
  }

  .bl-tab-btn {
    padding: 5px 10px;
  }
}

/* --------------------------------------------------------------------------
   SEARCH OVERLAY
   Full-viewport dialog: white panel drops from the top, backdrop below.
   -------------------------------------------------------------------------- */

/* Overlay wrapper — covers entire viewport */
.bl-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
}

.bl-search-overlay[hidden] {
  display: none;
}

/* Semi-transparent backdrop behind the panel */
.bl-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 36, 0.45);
  z-index: 0;
  cursor: default;
}

/* White panel */
.bl-search-overlay__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 8px 48px rgba(4, 31, 125, 0.14);
  animation: bl-search-panel-in 0.22s ease;
}

/* Inner width-constrained container */
.bl-search-overlay__wrap {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 48px;
}

@keyframes bl-search-panel-in {
  from {
    transform: translateY(-16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- Input bar row --- */
.bl-search-overlay__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1.5px solid var(--bl-border);
}

.bl-search-overlay__icon {
  flex-shrink: 0;
  color: var(--bl-navy);
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 6px;
  transition: opacity var(--bl-transition);
}
.bl-search-overlay__icon:hover {
  opacity: 0.7;
}

/* Remove browser-native search cancel button */
.bl-search-overlay__input[type="search"]::-webkit-search-decoration,
.bl-search-overlay__input[type="search"]::-webkit-search-cancel-button,
.bl-search-overlay__input[type="search"]::-webkit-search-results-button,
.bl-search-overlay__input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.bl-search-overlay__input {
  flex: 1;
  min-width: 0;
  font-size: 28px;
  font-weight: 400;
  font-family: var(--bl-font-display);
  color: var(--bl-dark);
  border: none;
  outline: none;
  background: transparent;
  line-height: 1.2;
}

.bl-search-overlay__input::placeholder {
  color: var(--bl-muted);
}

/* Clear (✕) button */
.bl-search-overlay__clear {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--bl-muted);
  transition:
    color var(--bl-transition),
    background var(--bl-transition);
}

.bl-search-overlay__clear:hover {
  color: var(--bl-dark);
  background: var(--bl-border);
}

.bl-search-overlay__clear[hidden] {
  display: none;
}

/* "Close  esc" button */
.bl-search-overlay__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bl-dark);
  padding: 7px 14px;
  border: 1.5px solid var(--bl-border);
  border-radius: 10px;
  transition:
    background var(--bl-transition),
    border-color var(--bl-transition);
  white-space: nowrap;
}

.bl-search-overlay__close:hover {
  background: var(--bl-card-bg);
  border-color: var(--bl-navy);
}

.bl-search-overlay__close kbd {
  font-family: var(--bl-font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--bl-muted);
  background: var(--bl-border);
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 0;
}

/* --- Results body: two-column grid (results | sidebar) --- */
.bl-search-overlay__body {
  display: grid;
  grid-template-columns: 1fr 296px;
}

.bl-search-overlay__main {
  padding: 24px 0 40px;
  min-width: 0;
  padding-right: 40px;
}

.bl-search-overlay__sidebar {
  padding: 28px 0 40px 32px;
  border-left: 1px solid var(--bl-border);
  background: #fff;
  min-width: 0;
}

.bl-search-sidebar__section {
  margin-bottom: 28px;
}

.bl-search-sidebar__section:last-child {
  margin-bottom: 0;
}

.bl-search-sidebar__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bl-muted);
  margin-bottom: 16px;
}

/* Trending list */
.bl-search-trending {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.bl-search-trending__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid var(--bl-border);
}

.bl-search-trending__item:last-child {
  border-bottom: none;
}

.bl-search-trending__num {
  font-size: 11px;
  font-weight: 600;
  color: var(--bl-dot);
  flex-shrink: 0;
  width: 18px;
  text-align: right;
}

.bl-search-trending__term {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  color: var(--bl-dark);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--bl-transition);
}

.bl-search-trending__term:hover {
  color: var(--bl-navy);
}

.bl-search-trending__pct {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #1a9b5f;
}

/* Recent searches list */
.bl-search-recent {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.bl-search-recent__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 7px 0;
  font-size: 14px;
  color: var(--bl-muted);
  text-align: left;
  transition: color var(--bl-transition);
}

.bl-search-recent__btn:hover {
  color: var(--bl-dark);
}

.bl-search-recent__icon {
  flex-shrink: 0;
  color: var(--bl-dot);
  display: flex;
  align-items: center;
}

.bl-search-overlay__status {
  font-size: 14px;
  color: var(--bl-muted);
  margin-bottom: 16px;
  min-height: 20px;
}

.bl-search-overlay__status strong {
  font-weight: 600;
  color: var(--bl-dark);
}

/* --- Result list --- */
.bl-search-overlay__results {
  display: flex;
  flex-direction: column;
}

.bl-search-result {
  border-bottom: 1px solid var(--bl-border);
}

.bl-search-result:last-child {
  border-bottom: none;
}

.bl-search-result__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  transition: opacity var(--bl-transition);
}

.bl-search-result__link:hover {
  opacity: 0.72;
}

/* Thumbnail */
.bl-search-result__thumb {
  flex-shrink: 0;
  width: 96px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bl-card-bg);
}

.bl-search-result__thumb--empty {
  flex-shrink: 0;
  width: 96px;
  height: 68px;
  border-radius: 8px;
  background: var(--bl-card-bg);
}

/* Content */
.bl-search-result__content {
  flex: 1;
  min-width: 0;
}

.bl-search-result__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.bl-search-result__cat {
  color: var(--bl-navy);
}

.bl-search-result__dot {
  color: var(--bl-muted);
  font-weight: 400;
}

.bl-search-result__date,
.bl-search-result__time {
  color: var(--bl-muted);
  font-weight: 400;
}

.bl-search-result__title {
  font-family: var(--bl-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--bl-dark);
  line-height: 1.35;
}

/* Prevent body scroll when overlay is open */
body.bl-search-open {
  overflow: hidden;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .bl-search-overlay__wrap {
    padding-inline: 24px;
  }

  .bl-search-overlay__body {
    grid-template-columns: 1fr;
  }

  .bl-search-overlay__main {
    padding-right: 0;
  }

  .bl-search-overlay__sidebar {
    display: none;
  }

  .bl-search-overlay__input {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .bl-search-overlay__wrap {
    padding-inline: 16px;
  }

  .bl-search-overlay__input {
    font-size: 18px;
  }

  /* Hide the text label, keep only the "esc" badge */
  .bl-search-overlay__close span:first-child {
    display: none;
  }

  .bl-search-result__thumb,
  .bl-search-result__thumb--empty {
    width: 72px;
    height: 52px;
  }
}

/* --------------------------------------------------------------------------
   (Subscribe popup removed — subscribe buttons now link to /subscribe/)
   -------------------------------------------------------------------------- */
