/* ── REACH BLOG STYLES ──────────────────────────────────── */

/* ── BLOG INDEX ──────────────────────────────────────────── */
.blog-hero {
  background: var(--black);
  color: var(--white);
  padding: 120px 52px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 52px);
}
.blog-hero::before {
  content: 'THE BRIEF';
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(80px, 14vw, 220px);
  letter-spacing: -0.018em;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  white-space: nowrap;
}
.blog-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.blog-hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 110px);
  letter-spacing: -0.016em;
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 28px;
}
.blog-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  max-width: 52ch;
}

/* ── CATEGORY NAV ── */
.blog-cats {
  background: var(--off);
  padding: 0 52px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.35);
  text-decoration: none;
  padding: 20px 24px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.blog-cat:hover, .blog-cat.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── FEATURED POST ── */
.blog-featured {
  padding: 72px 52px 48px;
  background: var(--white);
}
.blog-featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--off);
  border-radius: 20px;
  overflow: hidden;
}
.blog-featured-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.blog-featured-inner:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body {
  padding: 52px 52px 52px 0;
}
.bc-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.bc-tag.ugc      { background: #7C3AED; }
.bc-tag.talent   { background: #059669; }
.bc-tag.social   { background: #DC2626; }
.bc-tag.college  { background: #D97706; }
.bc-tag.influencer { background: #0891B2; }
.blog-featured-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.012em;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 18px;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.blog-featured-title:hover { color: var(--accent); }
.blog-featured-excerpt {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0,0,0,.5);
  margin-bottom: 28px;
}
.blog-read-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.blog-read-link:hover { gap: 14px; }
.blog-meta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.3);
  margin-bottom: 12px;
}

/* ── POST GRID ── */
.blog-grid-wrap {
  padding: 0 52px 80px;
  background: var(--white);
}
.blog-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.3);
  padding: 40px 0 28px;
  border-top: 1px solid rgba(0,0,0,.07);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.blog-card {
  background: var(--off);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: var(--black);
  margin: 10px 0 12px;
}
.blog-card-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0,0,0,.45);
  flex: 1;
  margin-bottom: 20px;
}
.blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,.3);
}
.blog-card-arrow {
  color: var(--accent);
  font-size: 16px;
  transition: transform 0.2s;
}
.blog-card:hover .blog-card-arrow { transform: translate(3px,-3px); }

/* ── BLOG POST ARTICLE ───────────────────────────────────── */
.bp-wrap {
  background: var(--white);
}
.bp-header {
  background: var(--black);
  color: var(--white);
  padding: 160px 52px 80px;
  position: relative;
  overflow: hidden;
}
.bp-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(26,101,252,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.bp-header-inner { position: relative; z-index: 1; max-width: 820px; }
.bp-category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 24px;
}
.bp-category-link:hover { opacity: 0.75; }
.bp-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 80px);
  letter-spacing: -0.015em;
  line-height: 0.91;
  color: var(--white);
  margin-bottom: 28px;
}
.bp-deck {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.5);
  max-width: 60ch;
  margin-bottom: 40px;
}
.bp-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.bp-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #333;
  flex-shrink: 0;
}
.bp-author-img img { width: 100%; height: 100%; object-fit: cover; }
.bp-author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.bp-author-meta {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-top: 2px;
}

/* ── ARTICLE HERO IMAGE ── */
.bp-hero-img {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}
.bp-hero-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* ── ARTICLE BODY ── */
.bp-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 52px 100px;
  align-items: start;
}
.bp-body {
  min-width: 0;
}
.bp-body p {
  font-size: 17px;
  line-height: 1.82;
  color: rgba(0,0,0,.72);
  margin-bottom: 24px;
}
.bp-body h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 38px);
  letter-spacing: -0.012em;
  line-height: 0.95;
  color: var(--black);
  margin: 56px 0 20px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,.07);
}
.bp-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.bp-body h2[id], .bp-body h3[id] { scroll-margin-top: 84px; }
.bp-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.009em;
  color: var(--black);
  margin: 32px 0 12px;
}
.bp-body ul, .bp-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.bp-body li {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(0,0,0,.72);
  margin-bottom: 8px;
}
.bp-body strong { color: var(--black); font-weight: 700; }
.bp-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bp-pullquote {
  border-left: 3px solid var(--accent);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--off);
  border-radius: 0 12px 12px 0;
}
.bp-pullquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px !important;
  line-height: 1.55 !important;
  color: var(--black) !important;
  margin-bottom: 0 !important;
}

/* ── ARTICLE SIDEBAR ── */
.bp-sidebar {
  position: sticky;
  top: 100px;
}
.bp-toc {
  background: var(--off);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
}
.bp-toc-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.35);
  margin-bottom: 16px;
}
.bp-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.bp-toc li {
  counter-increment: toc;
  margin-bottom: 10px;
  font-size: 13px !important;
  line-height: 1.4 !important;
  color: rgba(0,0,0,.55) !important;
}
.bp-toc li::before {
  content: counter(toc, decimal-leading-zero) '. ';
  color: var(--accent);
  font-weight: 700;
  font-size: 10px;
}
.bp-toc a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.15s;
}
.bp-toc a:hover { color: var(--accent) !important; }
.bp-sidebar-cta {
  background: var(--black);
  color: var(--white);
  border-radius: 14px;
  padding: 28px;
}
.bp-sidebar-cta-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 12px;
}
.bp-sidebar-cta-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.012em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 14px;
}
.bp-sidebar-cta p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.bp-sidebar-cta a.btn-small {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.bp-sidebar-cta a.btn-small:hover { opacity: 0.8; }

/* ── ARTICLE BOTTOM CTA ── */
.bp-bottom-cta {
  background: var(--accent);
  padding: 80px 52px;
  text-align: center;
}
.bp-bottom-cta-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -0.015em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 20px;
}
.bp-bottom-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 48ch;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.bp-bottom-cta-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RELATED POSTS ── */
.bp-related {
  padding: 72px 52px 80px;
  background: var(--off);
}
.bp-related-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.3);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.bp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── SEO BREADCRUMB ── */
.bp-breadcrumb {
  background: var(--off);
  padding: 14px 52px;
  font-size: 11px;
  color: rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.bp-breadcrumb a {
  color: rgba(0,0,0,.45);
  text-decoration: none;
}
.bp-breadcrumb a:hover { color: var(--accent); }
.bp-breadcrumb span { margin: 0 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bp-layout { grid-template-columns: 1fr; gap: 48px; }
  .bp-sidebar { position: static; }
  .blog-featured-inner { grid-template-columns: 1fr; }
  .blog-featured-body { padding: 36px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-hero { padding: 100px 24px 64px; min-height: calc(100svh - 52px); }
  .blog-cats { padding: 0 24px; }
  .blog-featured { padding: 48px 24px; }
  .blog-grid-wrap { padding: 0 24px 60px; }
  .blog-grid { grid-template-columns: 1fr; }
  .bp-header { padding: 120px 24px 60px; }
  .bp-layout { padding: 48px 24px 72px; }
  .bp-related { padding: 48px 24px 60px; }
  .bp-related-grid { grid-template-columns: 1fr; }
  .bp-bottom-cta { padding: 60px 24px; }
  .blog-featured-inner { border-radius: 12px; }
}

/* ── BLOG INDEX REDESIGN ENHANCEMENTS ────────────────────── */

/* Hero animated glow orb */
.blog-hero { position: relative; }
.blog-hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,101,252,0.22) 0%, transparent 65%);
  top: -120px; right: -80px;
  pointer-events: none;
  animation: blogHeroGlow 10s ease-in-out infinite alternate;
}
@keyframes blogHeroGlow {
  from { transform: translate(0, 0) scale(1); opacity: 0.8; }
  to   { transform: translate(-100px, 80px) scale(1.25); opacity: 1; }
}
.blog-hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,101,252,0.12) 0%, transparent 70%);
  bottom: 0; left: 0;
  pointer-events: none;
  animation: blogHeroGlow2 14s ease-in-out infinite alternate;
}
@keyframes blogHeroGlow2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, -40px) scale(1.15); }
}

/* Hero inner + stats */
.blog-hero-inner { position: relative; z-index: 1; }
.blog-hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-pill-outline-w {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.18);
  transition: color 0.2s, border-color 0.2s;
}
.btn-pill-outline-w:hover { color: var(--white); border-color: rgba(255,255,255,.45); }

.blog-hero-stats {
  position: relative; z-index: 1;
  display: flex;
  gap: 0;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.blog-stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,.07);
  margin-right: 32px;
}
.blog-stat:last-child { border-right: none; margin-right: 0; }
.blog-stat-num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--white);
}
.blog-stat-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-top: 6px;
}

/* ── FILTER BAR ── */
.bf-filter {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.07);
  position: sticky;
  top: 52px;
  z-index: 99;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bf-filter::-webkit-scrollbar { display: none; }
.bf-filter-inner {
  display: flex;
  gap: 8px;
  padding: 16px 52px;
  min-width: max-content;
  align-items: center;
}
.bf-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid rgba(0,0,0,.13);
  color: rgba(0,0,0,.4);
  padding: 8px 16px;
  border-radius: 100px;
  cursor: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
}
.bf-pill-count {
  font-size: 9px;
  font-weight: 700;
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.35);
  padding: 2px 7px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.bf-pill:hover { border-color: var(--accent); color: var(--accent); }
.bf-pill:hover .bf-pill-count { background: rgba(26,101,252,.1); color: var(--accent); }
.bf-pill.active { background: var(--black); border-color: var(--black); color: var(--white); }
.bf-pill.active .bf-pill-count { background: rgba(255,255,255,.15); color: rgba(255,255,255,.65); }

/* ── SECTION LABEL REDESIGN ── */
.blog-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 52px 0 28px;
  border-top: 1px solid rgba(0,0,0,.07);
  margin-bottom: 4px;
}
.blog-section-label-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.blog-section-accent {
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.blog-section-accent.ugc     { background: #7C3AED; }
.blog-section-accent.talent  { background: #059669; }
.blog-section-accent.social  { background: #DC2626; }
.blog-section-accent.college { background: #D97706; }
.blog-section-accent.influencer { background: #0891B2; }
.blog-section-accent.strategy { background: #0891B2; }
.blog-section-accent.collegiate { background: #D97706; }
.blog-section-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,.45);
}
.blog-section-count {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,.22);
}

/* ── FEATURED ARTICLE (cinematic) ── */
.bf-featured-full {
  background: var(--black);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.bf-featured-full img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s;
}
.bf-featured-full:hover img { transform: scale(1.04); opacity: 0.55; }
.bf-featured-full-body {
  position: relative;
  z-index: 1;
  padding: 64px 72px;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.bf-featured-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bf-featured-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.bf-featured-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -0.015em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 22ch;
}
.bf-featured-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 60ch;
  margin-bottom: 32px;
}
.bf-featured-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.bf-featured-meta .bc-tag {
  margin-bottom: 0;
}
.bf-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.bf-read-btn:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); }

/* ── CARD ENHANCEMENTS ── */
.blog-card {
  position: relative;
}
.blog-card-num {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

/* ── EDITORIAL MID-BREAK ── */
.bf-editorial {
  background: var(--black);
  padding: 120px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bf-editorial::before {
  content: '"';
  position: absolute;
  font-family: var(--serif);
  font-size: 500px;
  line-height: 0.8;
  color: rgba(255,255,255,.025);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  font-style: italic;
}
.bf-editorial-inner { position: relative; z-index: 1; }
.bf-editorial-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.bf-editorial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.15;
  color: var(--white);
  max-width: 20ch;
  margin: 0 auto 48px;
  letter-spacing: -0.007em;
}
.bf-editorial-quote em { color: var(--accent); font-style: normal; }

/* ── INLINE BODY IMAGE ── */
.bp-body-img {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}
.bp-body-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ── SECTION HIDE FOR FILTER ── */
.bf-section-hidden { display: none !important; }

/* ── BLOG STAT ITEM ── */
.blog-stat-item { display: flex; flex-direction: column; padding-right: 40px; margin-right: 40px; border-right: 1px solid rgba(255,255,255,.08); }
.blog-stat-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }

/* ── EDITORIAL ATTRIBUTION ── */
.bf-editorial-attr {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 40px;
}

/* ── SECTION VIEW ALL LINK ── */
.blog-section-all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,.35);
  text-decoration: none;
  transition: color 0.2s;
}
.blog-section-all:hover { color: var(--accent); }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 1024px) {
  .blog-hero-stats { gap: 0; }
  .blog-stat, .blog-stat-item { padding-right: 20px; margin-right: 20px; }
  .bf-featured-full { min-height: 400px; }
  .bf-featured-full-body { padding: 40px 40px; }
  .bf-featured-title { font-size: clamp(28px, 4vw, 48px); }
}
@media (max-width: 768px) {
  .bf-filter-inner { padding: 12px 24px; }
  .blog-hero-stats { flex-wrap: wrap; gap: 24px; }
  .blog-stat, .blog-stat-item { border-right: none; margin-right: 0; padding-right: 0; min-width: 40%; }
  .bf-featured-full { min-height: 360px; }
  .bf-featured-full-body { padding: 32px 24px; }
  .bf-editorial { padding: 80px 24px; }
  .blog-hero-ctas { flex-direction: column; align-items: flex-start; }
  .blog-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  .blog-hero { padding: 88px 20px 56px; }
  .blog-hero-title { font-size: clamp(38px, 12vw, 60px); line-height: 0.9; }
  .blog-hero-sub { font-size: 14px; max-width: 100%; }
  .blog-hero-ctas { margin-top: 28px; gap: 10px; }
  .bf-filter-inner { padding: 10px 20px; gap: 6px; }
  /* Featured full card — compact on small phones */
  .bf-featured-full { min-height: 300px; border-radius: 12px; }
  .bf-featured-full-body { padding: 24px 20px; }
  .bf-featured-title { font-size: clamp(22px, 6vw, 32px); line-height: 1.05; }
  .bf-featured-excerpt { display: none; } /* hide excerpt on smallest screens — title + tag is enough */
  .bf-featured-meta { margin-bottom: 10px; }
  /* Blog grid cards — tighter body padding */
  .blog-card-body { padding: 20px 20px 24px; }
  .blog-card-title { font-size: clamp(17px, 5vw, 22px); margin: 8px 0 10px; }
  .blog-card-excerpt { font-size: 13px; line-height: 1.6; -webkit-line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  /* Category nav */
  .blog-cats { padding: 0 16px; }
  .blog-cat { padding: 16px 18px; font-size: 10px; }
  /* Grid wraps */
  .blog-featured { padding: 36px 16px; }
  .blog-grid-wrap { padding: 0 16px 52px; }
  /* Stats */
  .blog-hero-stats { margin-top: 40px; padding-top: 28px; }
  .blog-stat-num { font-size: 32px; }
  /* Read link */
  .blog-read-link { font-size: 11px; }
  /* Glow orb — hide on small screens for perf */
  .blog-hero-glow, .blog-hero-glow-2 { display: none; }
}
