/* Buzz Viral — Cover Culture: viral magazine, bento intelligence */
:root {
  --bv-bg: #fff5f8;
  --bv-bg-soft: #ffe8ef;
  --bv-surface: #ffffff;
  --bv-ink: #111111;
  --bv-muted: #666666;
  --bv-line: #f0d4dc;
  --bv-accent: #ff3d71;
  --bv-accent-2: #ff8a3d;
  --bv-accent-soft: rgba(255, 61, 113, 0.12);
  --bv-accent-deep: #e02d5a;
  --bv-orange-soft: rgba(255, 138, 61, 0.14);
  --bv-radius: 16px;
  --bv-radius-sm: 10px;
  --bv-radius-lg: 24px;
  --bv-shadow: 0 20px 48px rgba(255, 61, 113, 0.1);
  --bv-shadow-sm: 0 8px 24px rgba(17, 17, 17, 0.06);
  --bv-font: "Figtree", system-ui, sans-serif;
  --bv-display: "Bricolage Grotesque", system-ui, sans-serif;
  --bv-max: 1200px;
  --bv-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.bv-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--bv-font);
  color: var(--bv-ink);
  background: var(--bv-bg);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
}

body.bv-body--cover {
  background: var(--bv-bg);
}

body.bv-nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--bv-accent);
}

.bv-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bv-preview {
  background: var(--bv-accent);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.bv-preview a {
  color: #fff;
  text-decoration: underline;
}

/* ── Header ── */
.bv-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.bv-header--float {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
}

.bv-header-top {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid var(--bv-line);
  transition: background 0.4s var(--bv-ease), border-color 0.4s var(--bv-ease), backdrop-filter 0.4s;
}

.bv-header--float .bv-header-top {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.bv-header--float.is-scrolled .bv-header-top {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--bv-line);
  backdrop-filter: blur(14px);
}

.bv-header-inner {
  max-width: var(--bv-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.bv-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--bv-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.15rem;
  transition: color 0.3s;
}

.bv-header--float:not(.is-scrolled) .bv-brand,
.bv-header--float:not(.is-scrolled) .bv-nav-link,
.bv-header--float:not(.is-scrolled) .bv-icon-btn {
  color: #fff;
}

.bv-header--float:not(.is-scrolled) .bv-brand-text {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.bv-header--float:not(.is-scrolled) .bv-nav-link {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.bv-header--float:not(.is-scrolled) .bv-nav-link.is-active,
.bv-header--float:not(.is-scrolled) .bv-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.bv-header--float:not(.is-scrolled) .bv-icon-btn {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.bv-header--float:not(.is-scrolled) .bv-nav-toggle {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.bv-header--float:not(.is-scrolled) .bv-nav-toggle span {
  background: #fff;
}

.bv-brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, var(--bv-accent) 0%, var(--bv-accent-2) 100%);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  box-shadow: 0 0 0 3px var(--bv-accent-soft);
}

.bv-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  justify-content: center;
}

.bv-nav-link {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bv-muted);
  transition: background 0.2s var(--bv-ease), color 0.2s var(--bv-ease);
}

.bv-nav-link:hover,
.bv-nav-link.is-active {
  color: var(--bv-accent);
  background: var(--bv-accent-soft);
}

.bv-header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.bv-icon-btn {
  width: 2.35rem;
  height: 2.35rem;
  border: 2px solid var(--bv-line);
  border-radius: 999px;
  background: var(--bv-surface);
  color: var(--bv-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.3s;
}

.bv-icon-btn:hover {
  border-color: var(--bv-accent);
  color: var(--bv-accent);
  transform: scale(1.05);
}

.bv-admin-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bv-accent);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--bv-accent-soft);
}

.bv-nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 2px solid var(--bv-line);
  border-radius: 0.65rem;
  background: var(--bv-surface);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: background 0.3s, border-color 0.3s;
}

.bv-nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--bv-ink);
  border-radius: 2px;
  transition: background 0.3s;
}

.bv-search {
  max-width: var(--bv-max);
  margin: 0 auto;
  padding: 0 1.25rem 0.85rem;
  display: none;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.94);
}

.bv-header--float .bv-search {
  background: rgba(255, 255, 255, 0.96);
}

.bv-search.is-open {
  display: flex;
}

.bv-search input {
  flex: 1;
  border: 2px solid var(--bv-line);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  background: var(--bv-surface);
}

.bv-search input:focus {
  outline: 2px solid var(--bv-accent-soft);
  border-color: var(--bv-accent);
}

.bv-search button,
.bv-btn {
  border: 0;
  border-radius: 999px;
  background: var(--bv-accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--bv-ease), background 0.2s;
}

.bv-search button:hover,
.bv-btn:hover {
  background: var(--bv-accent-deep);
  color: #fff;
  transform: translateY(-1px);
}

.bv-btn-ghost {
  background: transparent;
  color: var(--bv-accent);
  border: 2px solid var(--bv-accent);
}

.bv-btn-ghost:hover {
  background: var(--bv-accent-soft);
  color: var(--bv-accent-deep);
}

.bv-btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.bv-btn-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ── Main ── */
.bv-main {
  max-width: var(--bv-max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3.5rem;
  flex: 1;
  width: 100%;
}

body.bv-body--cover .bv-main {
  max-width: none;
  padding: 0;
}

.bv-home-body {
  max-width: var(--bv-max);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 1.25rem 3.5rem;
}

[data-bv-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--bv-ease), transform 0.65s var(--bv-ease);
}

[data-bv-reveal].is-in {
  opacity: 1;
  transform: none;
}

.bv-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--bv-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bv-accent-2);
}

/* ── Magazine cover (first viewport) ── */
.bv-cover {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: var(--bv-ink);
}

.bv-cover-media {
  position: absolute;
  inset: 0;
}

.bv-cover-media img,
.bv-fallback-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bv-fallback-cover {
  display: grid;
  place-items: center;
  font-family: var(--bv-display);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 800;
  color: var(--bv-accent);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5), transparent 45%),
    linear-gradient(160deg, #ffd6e3 0%, #ff8a3d 100%);
}

.bv-cover-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 72%;
  background: linear-gradient(
    to top,
    rgba(255, 61, 113, 0.88) 0%,
    rgba(255, 61, 113, 0.45) 28%,
    rgba(255, 245, 248, 0.08) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.bv-cover-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 2.5rem));
  text-align: center;
  padding: 0 0 clamp(3rem, 8vh, 5.5rem);
  color: #fff;
}

.bv-cover-content[data-bv-cover-reveal] {
  opacity: 0;
  transform: translateY(32px);
  animation: bv-cover-rise 1s var(--bv-ease) 0.25s forwards;
}

@keyframes bv-cover-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.bv-cover-kicker {
  margin: 0 0 1rem;
  font-family: var(--bv-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.92;
}

.bv-cover-title {
  margin: 0 0 1.1rem;
  font-family: var(--bv-display);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
}

.bv-cover-title a {
  color: inherit;
}

.bv-cover-title a:hover {
  color: #fff;
  opacity: 0.92;
}

.bv-cover-lede {
  margin: 0 auto 1.75rem;
  max-width: 38rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  opacity: 0.92;
  text-wrap: pretty;
}

.bv-cover-cta {
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
}

/* ── Podium ── */
.bv-podium {
  margin-bottom: clamp(4rem, 10vw, 7rem);
}

.bv-podium-head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.bv-podium-head h2 {
  margin: 0;
  font-family: var(--bv-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 1;
}

.bv-podium-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
}

.bv-podium-item {
  position: relative;
}

.bv-podium-item--first {
  transform: translateY(-1.5rem);
}

.bv-podium-rank {
  display: block;
  font-family: var(--bv-display);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--bv-accent);
  opacity: 0.35;
  margin-bottom: 0.5rem;
  font-size: clamp(3rem, 8vw, 5rem);
  pointer-events: none;
  user-select: none;
}

.bv-podium-item--first .bv-podium-rank {
  font-size: clamp(4.5rem, 12vw, 7.5rem);
  opacity: 0.5;
}

.bv-podium-link {
  display: block;
  color: inherit;
}

.bv-podium-link:hover {
  color: inherit;
}

.bv-podium-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, #ffd6e3, #fff0f4);
}

.bv-podium-item--first .bv-podium-visual {
  aspect-ratio: 3 / 4;
}

.bv-podium-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--bv-ease);
}

.bv-podium-link:hover .bv-podium-visual img {
  transform: scale(1.04);
}

.bv-podium-cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bv-accent-2);
  margin-bottom: 0.35rem;
}

.bv-podium-title {
  margin: 0 0 0.45rem;
  font-family: var(--bv-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bv-podium-item--first .bv-podium-title {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.bv-podium-excerpt {
  margin: 0;
  color: var(--bv-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Bento board ── */
.bv-bento-section {
  margin-bottom: clamp(3.5rem, 8vw, 5.5rem);
}

.bv-section-head--spacious {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.bv-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: minmax(200px, 26vw) minmax(150px, 16vw) auto;
  gap: 1rem;
}

.bv-bento-cell {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s var(--bv-ease),
    transform 0.55s var(--bv-ease);
  transition-delay: calc(var(--bv-stagger, 0) * 80ms);
}

.bv-bento.is-in .bv-bento-cell,
[data-bv-bento].is-in .bv-bento-cell {
  opacity: 1;
  transform: none;
}

.bv-bento-cell--big {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.bv-bento-cell--tall {
  grid-column: 4 / 7;
  grid-row: 1;
}

.bv-bento-cell--sm {
  grid-column: 4 / 7;
  grid-row: 2;
}

.bv-bento-cell--mid:nth-of-type(4) {
  grid-column: 1 / 3;
  grid-row: 3;
}

.bv-bento-cell--mid:nth-of-type(5) {
  grid-column: 3 / 5;
  grid-row: 3;
}

.bv-bento-cell--mid:nth-of-type(6) {
  grid-column: 5 / 7;
  grid-row: 3;
}

.bv-bento-link {
  display: block;
  height: 100%;
  min-height: 100%;
  position: relative;
  color: #fff;
  background: var(--bv-ink);
}

.bv-bento-link:hover {
  color: #fff;
}

.bv-bento-media {
  position: absolute;
  inset: 0;
}

.bv-bento-media img,
.bv-bento-media .bv-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--bv-ease);
}

.bv-bento-link:hover .bv-bento-media img {
  transform: scale(1.05);
}

.bv-bento-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.82) 0%, rgba(17, 17, 17, 0.15) 55%, transparent 100%);
}

.bv-bento-ribbon {
  position: absolute;
  top: 1rem;
  left: -0.35rem;
  z-index: 3;
  transform: rotate(-3deg);
}

.bv-bento-ribbon-inner {
  display: inline-block;
  padding: 0.35rem 1rem 0.35rem 0.85rem;
  background: var(--bv-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(17, 17, 17, 0.2);
}

.bv-bento-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.25rem 1.15rem 1.15rem;
}

.bv-bento-copy h3 {
  margin: 0;
  font-family: var(--bv-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.bv-bento-cell--big .bv-bento-copy h3 {
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
}

.bv-bento-copy p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  opacity: 0.88;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bv-bento-cell--sm .bv-bento-copy h3 {
  font-size: 0.95rem;
}

.bv-bento-cell--mid .bv-bento-copy {
  padding: 0.85rem 0.9rem;
}

.bv-bento-cell--mid .bv-bento-copy h3 {
  font-size: 0.92rem;
}

/* ── Ribbon marquee ── */
.bv-marquee-wrap {
  margin: 0 -1.25rem clamp(3.5rem, 8vw, 5rem);
  width: calc(100% + 2.5rem);
}

.bv-marquee {
  overflow: hidden;
  background: var(--bv-ink);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.bv-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: bv-marquee 38s linear infinite;
}

.bv-marquee-item {
  flex-shrink: 0;
  padding: 0 2.5rem;
  font-family: var(--bv-display);
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.bv-marquee-item a {
  color: inherit;
  transition: color 0.25s;
}

.bv-marquee-item a:hover {
  color: var(--bv-accent);
}

.bv-marquee-item::after {
  content: "—";
  margin-left: 2.5rem;
  opacity: 0.25;
}

@keyframes bv-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Polaroid editorial strip ── */
.bv-strip {
  margin-bottom: 2rem;
}

.bv-strip-scroll {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  padding: 1.5rem 0.25rem 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--bv-accent) transparent;
}

.bv-strip-scroll::-webkit-scrollbar {
  height: 4px;
}

.bv-strip-scroll::-webkit-scrollbar-thumb {
  background: var(--bv-accent);
  border-radius: 999px;
}

.bv-polaroid {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  transform: rotate(var(--bv-rot, 0deg));
  transition: transform 0.35s var(--bv-ease), box-shadow 0.35s var(--bv-ease);
}

.bv-polaroid:hover {
  transform: rotate(0deg) translateY(-8px);
  z-index: 2;
}

.bv-polaroid-frame {
  display: block;
  background: #fff;
  padding: 0.75rem 0.75rem 1.25rem;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.12);
  color: inherit;
  transition: box-shadow 0.35s var(--bv-ease);
}

.bv-polaroid:hover .bv-polaroid-frame {
  box-shadow: 0 24px 48px rgba(255, 61, 113, 0.18);
}

.bv-polaroid-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(145deg, #ffd6e3, #fff5f8);
  margin-bottom: 0.85rem;
}

.bv-polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bv-polaroid-cat {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bv-accent);
  margin-bottom: 0.3rem;
}

.bv-polaroid-caption h3 {
  margin: 0 0 0.35rem;
  font-family: var(--bv-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bv-polaroid-caption time {
  font-size: 0.78rem;
  color: var(--bv-muted);
}

/* ── Shared UI ── */
.bv-lede {
  color: var(--bv-muted);
  font-size: 1.02rem;
  margin: 0;
  max-width: 46rem;
}

.bv-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 1rem;
  color: var(--bv-muted);
  font-size: 0.88rem;
  align-items: center;
}

.bv-read-link {
  color: var(--bv-accent);
  font-weight: 700;
}

.bv-badge {
  display: inline-block;
  background: var(--bv-orange-soft);
  color: #b85a00;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.bv-section {
  margin-bottom: 2.6rem;
}

.bv-section-head,
.bv-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.bv-page-head {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.bv-section-head h2,
.bv-page-head h1 {
  margin: 0;
  font-family: var(--bv-display);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 800;
}

.bv-section-head h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
}

.bv-page-head h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.bv-section-head h2 a:hover {
  color: var(--bv-accent);
}

.bv-more,
.bv-count {
  color: var(--bv-muted);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.bv-more:hover {
  color: var(--bv-accent);
}

.bv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

/* ── Cards (article / category / search) ── */
.bv-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--bv-surface);
  border: 1.5px solid var(--bv-line);
  color: var(--bv-muted);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.bv-chip:hover {
  background: var(--bv-accent-soft);
  border-color: var(--bv-accent);
  color: var(--bv-accent);
}

.bv-chip-hot {
  background: var(--bv-accent);
  border-color: var(--bv-accent);
  color: #fff;
}

.bv-chip-hot:hover {
  background: var(--bv-accent-deep);
  border-color: var(--bv-accent-deep);
  color: #fff;
}

.bv-card {
  background: var(--bv-surface);
  border: 2px solid var(--bv-line);
  border-radius: var(--bv-radius);
  overflow: hidden;
  box-shadow: var(--bv-shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s var(--bv-ease), box-shadow 0.3s var(--bv-ease);
}

.bv-card:hover {
  transform: scale(1.02);
  box-shadow: var(--bv-shadow);
}

.bv-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #ffd6e3, #fff5f8);
}

.bv-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--bv-ease);
}

.bv-card:hover .bv-card-media img {
  transform: scale(1.06);
}

.bv-card-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.bv-card-title {
  margin: 0;
  font-family: var(--bv-display);
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bv-card-excerpt {
  margin: 0;
  color: var(--bv-muted);
  font-size: 0.9rem;
  flex: 1;
}

.bv-card-date {
  color: var(--bv-muted);
  font-size: 0.8rem;
}

.bv-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: var(--bv-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--bv-accent);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.7), transparent 45%),
    linear-gradient(145deg, #ffd6e3, #fff0f4);
}

.bv-empty,
.bv-empty-page {
  text-align: center;
  color: var(--bv-muted);
  padding: 2rem 1rem;
}

.bv-empty-page {
  background: var(--bv-surface);
  border: 2px solid var(--bv-line);
  border-radius: var(--bv-radius-lg);
  box-shadow: var(--bv-shadow-sm);
  max-width: 520px;
  margin: 2rem auto;
}

.bv-empty-page h1 {
  font-family: var(--bv-display);
  color: var(--bv-ink);
  margin: 0.4rem 0 0.7rem;
  font-weight: 800;
}

.bv-empty-page .bv-btn {
  margin-top: 1rem;
}

/* ── Article ── */
.bv-article {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.bv-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--bv-muted);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}

.bv-breadcrumb a:hover {
  color: var(--bv-accent);
}

.bv-article h1 {
  font-family: var(--bv-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0.5rem 0 0.85rem;
  font-weight: 800;
}

.bv-article-cover {
  margin: 1.5rem 0;
  border-radius: var(--bv-radius);
  overflow: hidden;
  border: 2px solid var(--bv-line);
  box-shadow: var(--bv-shadow-sm);
}

.bv-article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bv-prose {
  font-size: 1.05rem;
  line-height: 1.75;
}

.bv-prose p,
.bv-prose ul,
.bv-prose ol,
.bv-prose blockquote {
  margin: 0 0 1.1rem;
}

.bv-prose h2,
.bv-prose h3 {
  font-family: var(--bv-display);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 1.8rem 0 0.7rem;
}

.bv-prose a {
  color: var(--bv-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bv-prose img {
  border-radius: var(--bv-radius-sm);
  margin: 1rem 0;
}

.bv-prose blockquote {
  border-left: 4px solid var(--bv-accent);
  padding: 0.2rem 0 0.2rem 1rem;
  color: var(--bv-muted);
  font-style: italic;
}

.bv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.bv-source {
  margin-top: 1.5rem;
}

/* ── Footer ── */
.bv-footer {
  border-top: 2px solid var(--bv-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 245, 248, 0.98));
  margin-top: auto;
}

.bv-footer-inner {
  max-width: var(--bv-max);
  margin: 0 auto;
  padding: 2.4rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}

.bv-footer-brand p {
  color: var(--bv-muted);
  max-width: 28rem;
  margin: 0.8rem 0 0;
}

.bv-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.bv-footer-cols h3 {
  margin: 0 0 0.7rem;
  font-family: var(--bv-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bv-accent);
  font-weight: 800;
}

.bv-footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.bv-footer-cols a {
  color: var(--bv-muted);
  font-weight: 600;
}

.bv-footer-cols a:hover {
  color: var(--bv-accent);
}

.bv-footer-bar {
  max-width: var(--bv-max);
  margin: 0 auto;
  padding: 0.95rem 1.25rem 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--bv-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--bv-line);
}

.bv-footer-theme {
  font-family: var(--bv-display);
  font-weight: 800;
  color: var(--bv-accent);
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .bv-podium-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bv-podium-item--first {
    transform: none;
  }

  .bv-podium-rank {
    font-size: clamp(3.5rem, 14vw, 5rem);
  }

  .bv-podium-item--first .bv-podium-rank {
    font-size: clamp(4rem, 16vw, 6rem);
  }

  .bv-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bv-bento-cell--big,
  .bv-bento-cell--tall,
  .bv-bento-cell--sm,
  .bv-bento-cell--mid:nth-of-type(4),
  .bv-bento-cell--mid:nth-of-type(5),
  .bv-bento-cell--mid:nth-of-type(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .bv-bento-cell--big {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .bv-bento-cell--tall {
    min-height: 240px;
  }

  .bv-bento-cell--sm {
    min-height: 180px;
  }

  .bv-bento-cell--mid {
    min-height: 200px;
  }

  .bv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bv-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .bv-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .bv-nav-toggle {
    display: inline-flex;
  }

  .bv-nav {
    position: fixed;
    inset: 3.7rem 0.85rem auto;
    background: var(--bv-surface);
    border: 2px solid var(--bv-line);
    border-radius: var(--bv-radius);
    box-shadow: var(--bv-shadow);
    padding: 0.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 50;
  }

  .bv-nav.is-open {
    display: flex;
  }

  .bv-nav-link {
    border-radius: var(--bv-radius-sm);
  }

  .bv-grid {
    grid-template-columns: 1fr;
  }

  .bv-bento {
    grid-template-columns: 1fr;
  }

  .bv-cover-title {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .bv-footer-cols {
    grid-template-columns: 1fr;
  }

  .bv-footer-bar {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-bv-reveal],
  [data-bv-cover-reveal],
  .bv-bento-cell {
    opacity: 1;
    transform: none;
  }

  .bv-marquee-track {
    animation: none;
  }
}
/* === ARTICLE READ v2 — Spread cover → page === */
.bv-spread{display:grid;grid-template-columns:1fr 1fr;min-height:80vh;max-width:1200px;margin:0 auto;padding:1rem 1rem 3rem;gap:1rem}
.bv-spread-cover{position:relative;border-radius:24px;overflow:hidden;background:#111;min-height:70vh;color:#fff}
.bv-spread-cover-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.bv-spread-cover-ink{position:relative;z-index:1;height:100%;display:flex;flex-direction:column;justify-content:flex-end;padding:clamp(1.2rem,3vw,2rem);background:linear-gradient(180deg,transparent 20%,rgba(0,0,0,.78))}
.bv-spread-brand{font-size:.75rem;letter-spacing:.16em;text-transform:uppercase;opacity:.8;margin:0 0 .5rem}
.bv-spread-cover-title{font-size:clamp(2rem,4vw,3.2rem);line-height:1.05;margin:.5rem 0}
.bv-spread-cover-dek{opacity:.85;max-width:28rem}
.bv-spread-page{background:var(--bv-card,#fff);border-radius:24px;padding:clamp(1.3rem,3vw,2.2rem);border:1px solid rgba(0,0,0,.06);box-shadow:0 10px 30px rgba(0,0,0,.06)}
.bv-related{max-width:1200px;margin:0 auto 3rem;padding:0 1rem}
@media(max-width:900px){.bv-spread{grid-template-columns:1fr}.bv-spread-cover{min-height:55vh}}
/* === MEMBER NAV + RELATED FIX === */
.bv-header .member-nav-sep { background: #ff2d55; }
.bv-header .member-nav-link {
  font-weight: 700;
  font-size: .78rem;
  color: inherit;
  background: rgba(255,45,85,.08);
  border-radius: 12px;
  padding: .4rem .75rem;
}
.bv-header .member-nav-link--up { background: #ff2d55; color: #fff; }
.bv-related .bv-bento-cell,
.bv-related [data-bv-bento] .bv-bento-cell { opacity: 1 !important; transform: none !important; }
