/* ==========================================================================
   BeeHiwe home feed - body content only.

   This stylesheet is loaded by layout/home/beehiwe/shell.html and applies to
   the homepage content area only. The header, sidebar and footer are the
   parent theme's and are deliberately untouched, so every rule below is
   namespaced under .bh-* and nothing here can reach another page.

   Surfaces are tuned to sit on the parent theme's night background
   (#191C1D) rather than the near-black of the original mockup, so the
   content area reads as part of the same page.
   ========================================================================== */

.bh-app {
   --bh-card:        #202325;
   --bh-raise:       #2b2e31;
   --bh-line:        rgba(255, 255, 255, .09);
   --bh-line-soft:   rgba(255, 255, 255, .06);
   --bh-text:        #e8eaed;
   --bh-text-dim:    #a8aeb4;  /* 6.7:1 on --bh-card */
   --bh-text-mute:   #8b9299;  /* 4.7:1 on --bh-card */
   --bh-accent:      #ffb800;
   --bh-accent-wash: rgba(255, 184, 0, .10);
   --bh-accent-line: rgba(255, 184, 0, .24);

   --bh-rail:   300px;
   --bh-gap:    12px;
   --bh-r-card: 10px;
   --bh-r-btn:  8px;

   color: var(--bh-text);
   font-size: 14px;
}

.bh-app *,
.bh-app *::before,
.bh-app *::after { box-sizing: border-box; }

/* :where() keeps this reset at zero added specificity so component rules
   below can still set their own colour. */
.bh-app :where(a) { color: inherit; text-decoration: none; }
.bh-app :where(a:hover) { text-decoration: none; color: inherit; }
.bh-app :where(img) { max-width: 100%; display: block; }
.bh-app :where(h1, h2, h3, p, ul, ol) { margin: 0; padding: 0; font-weight: inherit; }
.bh-app :where(ul, ol) { list-style: none; }
.bh-app :where(button) { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.bh-app :focus-visible {
   outline: 2px solid var(--bh-accent);
   outline-offset: 2px;
   border-radius: 4px;
}

.bh-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;
}

.bh-dot { color: var(--bh-text-mute); margin: 0 3px; }
.bh-verified { flex: none; vertical-align: -2px; }

/* --- layout ------------------------------------------------------------- */

.bh-body {
   display: grid;
   grid-template-columns: minmax(0, 1fr) var(--bh-rail);
   gap: var(--bh-gap);
   align-items: start;
}
.bh-col-main,
.bh-col-side {
   display: flex; flex-direction: column;
   gap: var(--bh-gap); min-width: 0;
}
.bh-col-side { align-self: stretch; }
.bh-cta { margin-top: auto; }

/* Watch reads wider than Read in the reference; keep that weighting. */
.bh-duo {
   display: grid;
   grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
   gap: var(--bh-gap);
   align-items: start;
}

/* --- shared controls ---------------------------------------------------- */

.bh-btn-primary {
   display: inline-flex; align-items: center; justify-content: center; gap: 7px;
   height: 34px; padding: 0 14px;
   border-radius: var(--bh-r-btn);
   background: linear-gradient(135deg, #ffc62b 0%, #ff9d00 100%);
   color: #17120a; font-size: 13px; font-weight: 600; white-space: nowrap;
   transition: filter .15s ease;
}
.bh-btn-primary:hover { filter: brightness(1.07); color: #17120a; }

.bh-btn-ghost {
   display: inline-flex; align-items: center; justify-content: center; gap: 7px;
   height: 34px; padding: 0 14px;
   border-radius: var(--bh-r-btn);
   background: rgba(255, 255, 255, .06);
   border: 1px solid var(--bh-line);
   color: var(--bh-text); font-size: 13px; font-weight: 500; white-space: nowrap;
   transition: background .15s ease;
}
.bh-btn-ghost:hover { background: rgba(255, 255, 255, .11); color: var(--bh-text); }

.bh-btn-lg { height: 38px; padding: 0 18px; font-size: 13.5px; }

.bh-card {
   background: var(--bh-card);
   border: 1px solid var(--bh-line);
   border-radius: var(--bh-r-card);
   padding: 14px;
}

.bh-sec-head {
   display: flex; align-items: center; justify-content: space-between;
   gap: 12px; margin-bottom: 12px;
}
.bh-sec-title {
   display: flex; align-items: center; gap: 8px;
   font-size: 15px; font-weight: 600; letter-spacing: -.01em;
}
.bh-sec-icon { display: inline-flex; }
.bh-ico-loops { color: #d946ef; }
.bh-ico-watch { color: #ec4899; }
.bh-ico-read  { color: #f43f5e; }
.bh-ico-fire  { color: #f97316; }

.bh-view-all {
   display: inline-flex; align-items: center; gap: 4px;
   font-size: 11.5px; font-weight: 500; color: var(--bh-text-dim);
   transition: color .15s ease;
}
.bh-view-all:hover { color: var(--bh-accent); }

.bh-sec-empty {
   font-size: 12.5px; color: var(--bh-text-mute);
   padding: 14px 2px; text-align: center;
}

.bh-duration {
   position: absolute; left: 6px; bottom: 6px;
   background: rgba(0, 0, 0, .82);
   color: #fff; font-size: 10.5px; font-weight: 500;
   padding: 1px 5px; border-radius: 4px;
}

.bh-mini-avatar {
   width: 20px; height: 20px; border-radius: 50%;
   object-fit: cover; flex: none; overflow: hidden;
}
.bh-mini-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* --- hero --------------------------------------------------------------- */

.bh-hero {
   position: relative;
   border-radius: var(--bh-r-card);
   border: 1px solid var(--bh-line);
   overflow: hidden;
   aspect-ratio: 16 / 5;
   min-height: 260px;
   background: var(--bh-card);
}
.bh-hero-track { position: absolute; inset: 0; }

.bh-hero-slide {
   position: absolute; inset: 0;
   opacity: 0; visibility: hidden;
   transition: opacity .45s ease;
}
.bh-hero-slide.is-active { opacity: 1; visibility: visible; }

.bh-hero-img {
   position: absolute; inset: 0;
   width: 100%; height: 100%;
   object-fit: cover; object-position: center right;
}
.bh-hero-veil {
   position: absolute; inset: 0;
   background: linear-gradient(90deg, #0b0e10 0%, rgba(11, 14, 16, .92) 30%, rgba(11, 14, 16, .55) 52%, rgba(11, 14, 16, .05) 74%, transparent 100%);
}

.bh-hero-body {
   position: relative;
   max-width: 52%;
   height: 100%;
   display: flex; flex-direction: column; justify-content: center;
   padding: 22px 26px;
}
.bh-hero-kicker {
   display: inline-flex; align-items: center; gap: 6px;
   font-size: 10.5px; font-weight: 700;
   letter-spacing: .1em; text-transform: uppercase;
   color: var(--bh-accent); margin-bottom: 10px;
}
.bh-hero-title {
   font-size: 30px; font-weight: 700; line-height: 1.16;
   letter-spacing: -.02em; color: #fff;
   margin-bottom: 10px;
   display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
   overflow: hidden;
}
.bh-hero-title a { color: #fff; }
.bh-hero-desc {
   font-size: 12.5px; line-height: 1.55; color: #c6ccd2;
   margin-bottom: 14px;
   display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
   overflow: hidden;
}

.bh-hero-meta { display: flex; align-items: center; gap: 9px; margin-bottom: 15px; }
.bh-hero-avatar {
   width: 32px; height: 32px; border-radius: 50%;
   overflow: hidden; flex: none;
}
.bh-hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bh-hero-owner {
   display: flex; align-items: center; gap: 5px;
   font-size: 12.5px; font-weight: 600; color: #fff;
}
.bh-hero-sub { font-size: 11px; color: #c6ccd2; margin-top: 1px; }

.bh-hero-actions { display: flex; align-items: center; gap: 9px; }

.bh-hero-dots {
   position: absolute; left: 50%; bottom: 12px;
   transform: translateX(-50%);
   display: flex; align-items: center; gap: 5px; z-index: 2;
}
.bh-hero-dot {
   width: 18px; height: 3px; border-radius: 2px;
   background: rgba(255, 255, 255, .30);
   padding: 0; transition: background .2s ease, width .2s ease;
}
.bh-hero-dot.is-active { width: 26px; background: var(--bh-accent); }

.bh-hero-empty { display: grid; place-items: center; min-height: 150px; }
.bh-hero-empty p { font-size: 12.5px; color: var(--bh-text-mute); }

/* --- loops -------------------------------------------------------------- */

.bh-rail-wrap { position: relative; }

.bh-rail {
   display: flex; gap: 10px;
   overflow-x: auto; scroll-behavior: smooth;
   scrollbar-width: none; -ms-overflow-style: none;
   scroll-snap-type: x proximity;
}
.bh-rail::-webkit-scrollbar { display: none; }

.bh-loop {
   flex: 0 0 112px; min-width: 0;
   scroll-snap-align: start;
   display: flex; flex-direction: column; gap: 5px;
}
.bh-loop-thumb {
   position: relative; display: block;
   aspect-ratio: 9 / 16;
   border-radius: 8px; overflow: hidden;
   background: var(--bh-raise);
}
.bh-loop-thumb img {
   width: 100%; height: 100%; object-fit: cover;
   transition: transform .3s ease;
}
.bh-loop:hover .bh-loop-thumb img { transform: scale(1.04); }
.bh-loop-veil {
   position: absolute; inset: 0;
   background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .85) 100%);
}
.bh-loop-title {
   position: absolute; left: 8px; right: 8px; bottom: 7px;
   font-size: 11.5px; font-weight: 600; line-height: 1.3; color: #fff;
   display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
   overflow: hidden;
}
.bh-loop-badge {
   position: absolute; top: 6px; right: 6px;
   background: #d946ef; color: #fff;
   font-size: 8.5px; font-weight: 700; letter-spacing: .04em;
   padding: 2px 5px; border-radius: 4px;
}
.bh-loop-meta {
   display: inline-flex; align-items: center; gap: 4px;
   font-size: 11px; color: var(--bh-text-dim);
}

.bh-rail-next,
.bh-rail-prev {
   position: absolute; top: 50%; transform: translateY(-50%);
   width: 32px; height: 32px; border-radius: 50%;
   display: flex; align-items: center; justify-content: center;
   background: var(--bh-raise);
   border: 1px solid var(--bh-line);
   color: var(--bh-text); z-index: 3;
   box-shadow: 0 4px 14px rgba(0, 0, 0, .5);
}
.bh-rail-next { right: 0; }
.bh-rail-prev { left: 0; }
.bh-rail-next:hover,
.bh-rail-prev:hover { background: #363a3e; }
.bh-rail-next[hidden],
.bh-rail-prev[hidden] { display: none; }

/* --- watch -------------------------------------------------------------- */

.bh-watch-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
   gap: 14px;
   align-items: start;
}

.bh-vfeature-thumb {
   position: relative; display: block;
   aspect-ratio: 16 / 9;
   border-radius: 8px; overflow: hidden;
   background: var(--bh-raise);
   margin-bottom: 9px;
}
.bh-vfeature-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bh-vfeature-title {
   font-size: 13.5px; font-weight: 600; line-height: 1.35;
   margin-bottom: 7px;
   display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
   overflow: hidden;
}
.bh-vfeature-meta {
   display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
   font-size: 11px; color: var(--bh-text-dim);
}
.bh-owner-name { color: var(--bh-text); font-weight: 500; }

.bh-vlist { display: flex; flex-direction: column; gap: 11px; }

.bh-vcompact { display: flex; gap: 9px; align-items: flex-start; }
.bh-vcompact-thumb {
   position: relative; flex: 0 0 96px;
   aspect-ratio: 16 / 9;
   border-radius: 7px; overflow: hidden;
   background: var(--bh-raise);
}
.bh-vcompact-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bh-vcompact-body { min-width: 0; }
.bh-vcompact-title {
   font-size: 12.5px; font-weight: 600; line-height: 1.35;
   margin-bottom: 4px;
   display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
   overflow: hidden;
}
.bh-vcompact-owner {
   display: flex; align-items: center; gap: 4px;
   font-size: 11px; color: var(--bh-text-dim);
   overflow: hidden; white-space: nowrap;
}
.bh-vcompact-sub { font-size: 10.5px; color: var(--bh-text-mute); margin-top: 2px; }

/* --- read --------------------------------------------------------------- */

.bh-read-grid {
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
   gap: 14px;
   align-items: start;
}

.bh-afeature-link {
   position: relative; display: block;
   aspect-ratio: 4 / 3.35;
   border-radius: 8px; overflow: hidden;
   background: var(--bh-raise);
}
.bh-afeature-img { width: 100%; height: 100%; object-fit: cover; }
.bh-afeature-veil {
   position: absolute; inset: 0;
   background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, .88) 100%);
}
.bh-afeature-badge {
   position: absolute; top: 10px; left: 10px;
   background: rgba(10, 13, 17, .85);
   border: 1px solid var(--bh-line);
   color: #fff; font-size: 8.5px; font-weight: 700;
   letter-spacing: .08em; text-transform: uppercase;
   padding: 3px 7px; border-radius: 4px;
}
.bh-afeature-body {
   position: absolute; left: 13px; right: 13px; bottom: 12px;
   display: block;
}
.bh-afeature-title {
   display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
   overflow: hidden;
   font-size: 17px; font-weight: 700; line-height: 1.25;
   color: #fff; margin-bottom: 8px; letter-spacing: -.01em;
}
.bh-afeature-meta {
   display: flex; align-items: center; gap: 6px;
   font-size: 11px; color: rgba(255, 255, 255, .82);
}
.bh-afeature-author { font-weight: 500; color: #fff; }

.bh-alist { display: flex; flex-direction: column; gap: 11px; }

.bh-acompact { display: flex; gap: 9px; align-items: flex-start; }
.bh-acompact-thumb {
   flex: 0 0 76px; aspect-ratio: 16 / 11;
   border-radius: 7px; overflow: hidden;
   background: var(--bh-raise);
}
.bh-acompact-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bh-acompact-body { min-width: 0; }
.bh-acompact-title {
   font-size: 12.5px; font-weight: 600; line-height: 1.35;
   margin-bottom: 4px;
   display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
   overflow: hidden;
}
.bh-acompact-sub { font-size: 10.5px; color: var(--bh-text-mute); }

/* --- trending ----------------------------------------------------------- */

.bh-trend-list { display: flex; flex-direction: column; gap: 14px; }

.bh-trend-item { display: flex; align-items: center; gap: 9px; }
.bh-trend-rank {
   flex: none; width: 20px;
   font-size: 13px; font-weight: 700;
   color: var(--bh-text-mute); font-variant-numeric: tabular-nums;
}
.bh-trend-item:first-child .bh-trend-rank { color: var(--bh-accent); }
.bh-trend-thumb {
   flex: 0 0 72px; aspect-ratio: 16 / 10;
   border-radius: 6px; overflow: hidden;
   background: var(--bh-raise);
}
.bh-trend-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bh-trend-body { min-width: 0; flex: 1 1 auto; }
.bh-trend-title {
   font-size: 12.5px; font-weight: 600; line-height: 1.32;
   display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
   overflow: hidden;
}
.bh-trend-sub { font-size: 10.5px; color: var(--bh-text-mute); margin-top: 3px; }
.bh-trend-more {
   flex: none; width: 22px; height: 22px;
   display: flex; align-items: center; justify-content: center;
   border-radius: 5px; color: var(--bh-text-mute);
}
.bh-trend-more:hover { background: rgba(255, 255, 255, .08); color: var(--bh-text); }

/* --- creators ----------------------------------------------------------- */

.bh-creator-list { display: flex; flex-direction: column; gap: 12px; }

.bh-creator { display: flex; align-items: center; gap: 9px; }
.bh-creator-avatar {
   flex: none; width: 32px; height: 32px;
   border-radius: 50%; overflow: hidden;
}
.bh-creator-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bh-creator-body { min-width: 0; flex: 1 1 auto; }
.bh-creator-name {
   display: flex; align-items: center; gap: 5px;
   font-size: 12.5px; font-weight: 600;
   overflow: hidden; white-space: nowrap;
}
.bh-creator-topics {
   font-size: 10.5px; color: var(--bh-text-mute); margin-top: 2px;
   overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.bh-follow {
   flex: none; height: 26px; padding: 0 12px;
   border-radius: 6px;
   border: 1px solid var(--bh-line);
   background: rgba(255, 255, 255, .05);
   font-size: 11.5px; font-weight: 500; color: var(--bh-text);
   transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.bh-follow:hover { background: rgba(255, 255, 255, .11); }
.bh-follow.is-following {
   background: var(--bh-accent-wash);
   border-color: var(--bh-accent-line);
   color: var(--bh-accent);
}

/* --- interests ---------------------------------------------------------- */

.bh-interests-title { margin-bottom: 12px; }

.bh-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.bh-chip {
   display: inline-flex; align-items: center; gap: 7px;
   height: 34px; padding: 0 13px;
   border-radius: var(--bh-r-btn);
   background: var(--bh-raise);
   border: 1px solid var(--bh-line);
   font-size: 12px; font-weight: 500; color: var(--bh-text);
   transition: border-color .15s ease, background .15s ease;
}
.bh-chip:hover { background: #363a3e; border-color: rgba(255, 255, 255, .16); color: var(--bh-text); }
.bh-chip-icon { display: inline-flex; }

.bh-hue-violet .bh-chip-icon { color: #a78bfa; }
.bh-hue-blue   .bh-chip-icon { color: #60a5fa; }
.bh-hue-pink   .bh-chip-icon { color: #f472b6; }
.bh-hue-green  .bh-chip-icon { color: #4ade80; }
.bh-hue-amber  .bh-chip-icon { color: #fbbf24; }
.bh-hue-red    .bh-chip-icon { color: #f87171; }
.bh-hue-cyan   .bh-chip-icon { color: #22d3ee; }
.bh-hue-orange .bh-chip-icon { color: #fb923c; }

/* --- creator CTA -------------------------------------------------------- */

.bh-cta { display: flex; align-items: center; gap: 11px; }
.bh-cta-icon {
   flex: none; width: 34px; height: 34px;
   display: flex; align-items: center; justify-content: center;
   border-radius: 8px;
   background: var(--bh-accent-wash);
   color: var(--bh-accent);
}
.bh-cta-body { min-width: 0; flex: 1 1 auto; }
.bh-cta-title { font-size: 13px; font-weight: 700; }
.bh-cta-sub { font-size: 11px; color: var(--bh-text-dim); margin-top: 2px; }
.bh-cta-btn { flex: none; height: 32px; }

/* --- platform-empty onboarding ------------------------------------------ */

.bh-onboarding {
   max-width: 460px; margin: 0 auto; text-align: center;
   padding: 56px 24px;
}
.bh-onboarding-mark { color: var(--bh-accent); display: inline-block; margin-bottom: 16px; }
.bh-onboarding-title {
   font-size: 22px; font-weight: 700; letter-spacing: -.02em;
   margin-bottom: 8px;
}
.bh-onboarding-sub {
   font-size: 13px; line-height: 1.6; color: var(--bh-text-dim);
   margin-bottom: 22px;
}
.bh-onboarding-actions {
   display: flex; align-items: center; justify-content: center;
   gap: 10px; flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
   .bh-app *, .bh-app *::before, .bh-app *::after {
      transition-duration: .01ms !important;
      animation-duration: .01ms !important;
   }
   .bh-rail { scroll-behavior: auto; }
}

/* ==========================================================================
   Light mode - follows the parent theme's day/night cookie
   ========================================================================== */

.bh-app.bh-light {
   --bh-card:        #ffffff;
   --bh-raise:       #eef0f2;
   --bh-line:        rgba(0, 0, 0, .10);
   --bh-line-soft:   rgba(0, 0, 0, .07);
   --bh-text:        #16191d;
   --bh-text-dim:    #5a6169;
   --bh-text-mute:   #6f767e;
   --bh-accent:      #b26f00;
   --bh-accent-wash: rgba(255, 152, 0, .12);
   --bh-accent-line: rgba(255, 152, 0, .34);
}
.bh-app.bh-light .bh-btn-ghost { background: rgba(0, 0, 0, .03); }
.bh-app.bh-light .bh-btn-ghost:hover { background: rgba(0, 0, 0, .07); }
.bh-app.bh-light .bh-follow { background: rgba(0, 0, 0, .03); }
.bh-app.bh-light .bh-follow:hover { background: rgba(0, 0, 0, .07); }
.bh-app.bh-light .bh-chip:hover { background: #e3e6e9; border-color: rgba(0, 0, 0, .16); }
.bh-app.bh-light .bh-trend-more:hover { background: rgba(0, 0, 0, .06); }
.bh-app.bh-light .bh-rail-next:hover,
.bh-app.bh-light .bh-rail-prev:hover { background: #e3e6e9; }
/* the hero and article cards keep white type over their own dark gradient */
.bh-app.bh-light .bh-hero-title,
.bh-app.bh-light .bh-hero-title a,
.bh-app.bh-light .bh-hero-owner { color: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1400px) {
   .bh-app { --bh-rail: 290px; }
   .bh-hero-body { max-width: 58%; }
   .bh-hero-title { font-size: 27px; }
}

@media (max-width: 1200px) {
   .bh-app { --bh-rail: 270px; }
   .bh-hero { aspect-ratio: 16 / 5.6; }
   .bh-hero-title { font-size: 24px; }
   .bh-loop { flex: 0 0 104px; }
}

/* rail drops under the main column; sections take the mobile reading order */
@media (max-width: 1024px) {
   .bh-body {
      display: flex; flex-direction: column;
      align-items: stretch;
   }
   .bh-col-main, .bh-col-side, .bh-duo { display: contents; }

   .bh-hero      { order: 1; }
   .bh-loops     { order: 2; }
   .bh-trending  { order: 3; }
   .bh-watch     { order: 4; }
   .bh-read      { order: 5; }
   .bh-creators  { order: 6; }
   .bh-interests { order: 7; }
   .bh-cta       { order: 8; margin-top: 0; }

   .bh-hero { aspect-ratio: 16 / 7; }
   .bh-hero-body { max-width: 66%; }
}

@media (max-width: 860px) {
   .bh-hero { aspect-ratio: 16 / 8.5; min-height: 240px; }
   .bh-hero-body { max-width: 74%; padding: 18px 20px; }
   .bh-hero-title { font-size: 22px; }
}

@media (max-width: 640px) {
   .bh-app { --bh-gap: 10px; }
   .bh-card { padding: 12px; }

   .bh-hero { aspect-ratio: auto; min-height: 0; border-radius: var(--bh-r-card); }
   .bh-hero-track { position: static; }
   .bh-hero-slide { position: relative; display: none; }
   .bh-hero-slide.is-active { display: block; }
   .bh-hero-img { position: relative; aspect-ratio: 16 / 9; height: auto; }
   .bh-hero-veil { background: linear-gradient(180deg, transparent 30%, #0b0e10 88%); }
   .bh-hero-body {
      position: relative; max-width: none; height: auto;
      padding: 0 14px 16px; margin-top: -46px;
      background: linear-gradient(180deg, transparent, #0b0e10 20%);
   }
   .bh-hero-title { font-size: 19px; }
   .bh-hero-desc { -webkit-line-clamp: 3; }
   .bh-hero-actions .bh-btn-lg { flex: 1 1 0; }
   .bh-hero-dots { display: none; }

   .bh-watch-grid, .bh-read-grid { grid-template-columns: minmax(0, 1fr); }
   .bh-loop { flex: 0 0 118px; }
   .bh-rail-next, .bh-rail-prev { display: none; }

   .bh-trend-thumb { flex-basis: 64px; }
   .bh-vcompact-thumb { flex-basis: 92px; }
   .bh-acompact-thumb { flex-basis: 74px; }

   .bh-cta { flex-wrap: wrap; }
   .bh-cta-btn { width: 100%; }
}
