/* =========================================================================
   BizLever — Homepage skin "B+ light premium" (blue accent)
   Scoped to body.home so other pages keep the base theme.
   Display: Unbounded · Body: Golos Text · Accent: brand blue #3463f6
   ========================================================================= */

body.home {
  --bg: #f4f6f9;
  --ink: #14161b;
  --ink-soft: #4a4f59;
  --ink-mute: #6c727e;
  --line: #e6e8ee;
  --card: #ffffff;
  --accent: #3463f6;
  --accent-deep: #2147d5;
  --accent-tint: #eaf0ff;
  --display: "Unbounded", system-ui, sans-serif;
  --body: "Golos Text", system-ui, sans-serif;

  background:
    radial-gradient(120% 90% at 84% -14%, #dde7ff 0%, transparent 44%),
    radial-gradient(100% 80% at 6% -4%, #eef2ff 0%, transparent 46%),
    var(--bg);
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.home main { position: relative; z-index: 1; }

/* ------------------------------------------------------------- Atoms */
body.home .bp-kicker {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

body.home .bp-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent-deep);
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.home .bp-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  font-family: var(--body);
  font-size: 13px;
  color: var(--ink-mute);
}

body.home .bp-byline__name { font-weight: 600; color: var(--ink); }

body.home .bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.home .bp-btn:hover { transform: translateY(-2px); }

body.home .bp-btn--solid {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(20, 22, 27, 0.7);
}

body.home .bp-btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(52, 99, 246, 0.6);
}

body.home .bp-btn--accent:hover { background: var(--accent-deep); }

body.home .bp-btn--light {
  background: #fff;
  color: var(--accent-deep);
}

body.home .bp-morelink {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
}

body.home .bp-morelink:hover { color: var(--accent-deep); }

/* ------------------------------------------------------------ Header */
body.home .site-header {
  background: rgba(244, 246, 249, 0.82);
  border-bottom: 1px solid var(--line);
}

body.home .brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

body.home .brand span { color: var(--accent); }

body.home .desktop-nav { font-family: var(--body); font-weight: 600; }
body.home .desktop-nav a { color: #2c3340; }
body.home .desktop-nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }

body.home .header-search { border-radius: 999px; border-color: var(--line); background: #fff; }
body.home .header-search input { background: transparent; font-family: var(--body); }
body.home .header-search .search-submit {
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--body);
  font-weight: 700;
}

body.home .header-actions .primary-button {
  border-radius: 999px;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 26px -12px rgba(52, 99, 246, 0.6);
  font-family: var(--body);
}

body.home .header-actions .primary-button:hover { background: var(--accent-deep); }

body.home .header-auth-button.ghost-button { font-family: var(--body); color: #2c3340; }
body.home .header-auth-button.ghost-button:hover { color: var(--accent); background: transparent; }

/* -------------------------------------------------------------- Hero */
body.home .bp-hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(40px, 5vw, 72px) 0 clamp(34px, 4vw, 56px);
}

body.home .bp-hero__copy { display: flex; flex-direction: column; }

body.home .bp-hero__title {
  margin: 18px 0 22px;
  max-width: 13ch;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--ink);
}

body.home .bp-hero__title em {
  position: relative;
  z-index: 0;
  font-style: normal;
  white-space: nowrap;
  padding: 0 0.12em;
  color: #fff;
}

body.home .bp-hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0.1em;
  bottom: 0.08em;
  z-index: -1;
  border-radius: 8px;
  background: var(--accent);
  transform: rotate(-1deg);
  box-shadow: 0 16px 36px -10px rgba(52, 99, 246, 0.55);
}

body.home .bp-hero__lead {
  max-width: 44ch;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}

body.home .bp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Feature — lead story card */
body.home .bp-feature {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 70px -40px rgba(28, 45, 110, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.home .bp-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 50px 80px -38px rgba(28, 45, 110, 0.55);
}

body.home .bp-feature__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #e6edff, #d2deff);
}

body.home .bp-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.home .bp-feature:hover .bp-feature__media img { transform: scale(1.04); }

body.home .bp-feature__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(20, 22, 27, 0.78);
  color: #fff;
  font-family: var(--body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

body.home .bp-feature__placeholder,
body.home .bp-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: var(--display);
  font-weight: 700;
  color: rgba(52, 99, 246, 0.4);
}

body.home .bp-feature__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 24px 26px;
}

body.home .bp-feature__title {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.22;
  color: var(--ink);
  text-decoration: none;
}

body.home .bp-feature__title:hover { color: var(--accent-deep); }

body.home .bp-feature__excerpt { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }

body.home .bp-feature .article-engagement {
  margin-top: 4px;
  gap: 8px;
}

body.home .bp-feature .article-reaction-pill {
  min-height: 28px;
  padding: 0 10px;
  font-size: 13px;
}

body.home .bp-feature .article-action-row {
  gap: 10px;
}

body.home .bp-feature .article-action-metrics {
  gap: 12px;
}

body.home .bp-feature .article-action-metrics span,
body.home .bp-feature .article-views {
  min-height: 20px;
  font-size: 12px;
}

body.home .bp-feature .article-action-metrics svg,
body.home .bp-feature .article-views svg,
body.home .bp-feature .article-reaction-pill svg {
  width: 15px;
  height: 15px;
}

/* --------------------------------------------------------- Stories */
body.home .stories {
  margin-top: 6px;
  padding: 26px 0 26px;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.home .stories .section-heading h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}

body.home .stories .section-heading a { color: var(--accent); font-family: var(--body); font-weight: 700; font-size: 13px; }

body.home .stories-row {
  grid-auto-columns: 128px;
  gap: 20px;
  padding-top: 20px;
  min-width: 0;
  max-width: 100%;
}

body.home .story { gap: 10px; font-family: var(--body); font-weight: 600; }

body.home .story-ring {
  width: 128px;
  height: 92px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #e6edff, #d2deff);
  place-items: stretch;
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

body.home .story:hover .story-ring {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -16px rgba(52, 99, 246, 0.55);
}

body.home .story-ring img {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

body.home .stories.stories--circles .stories-row {
  grid-auto-columns: 86px;
  gap: 22px;
  align-items: start;
}

body.home .stories.stories--circles .story {
  gap: 9px;
  text-align: center;
}

body.home .stories.stories--circles .story-ring {
  width: 76px;
  height: 76px;
  margin-inline: auto;
  padding: 3px;
  border: 0;
  border-radius: 50%;
  place-items: center;
  overflow: visible;
  background: linear-gradient(135deg, #3463f6 0%, #7c4dff 43%, #ff4f8b 76%, #ffb347 100%);
  box-shadow: 0 14px 30px -18px rgba(52, 99, 246, 0.75);
}

body.home .stories.stories--circles .story-ring img,
body.home .stories.stories--circles .story-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  background: #eaf0ff;
}

body.home .stories.stories--circles .story-ring::after {
  inset: 3px;
  border-radius: 50%;
}

body.home .stories.stories--circles .story-title {
  max-width: 86px;
  min-height: 2.4em;
  font-size: 12px;
  line-height: 1.2;
  -webkit-line-clamp: 2;
}

body.home .story-placeholder {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(52, 99, 246, 0.35), transparent 55%),
    linear-gradient(135deg, #e6edff, #cdd9fb);
}

body.home .story-title {
  max-width: 128px;
  max-height: none;
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
  color: var(--ink);
}

body.home .story:hover .story-title { color: var(--accent); }

/* ---------------------------------------------- Articles + side rail */
body.home .bp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 3.5vw, 48px);
  margin-top: 40px;
}

body.home .bp-section-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
}

body.home .bp-section-head--split { justify-content: space-between; }

body.home .bp-section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Tabs — pill toggles */
body.home .bp-tabs { gap: 10px; margin: 0 0 20px; }

body.home .bp-tabs button {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.16s ease;
}

body.home .bp-tabs button:hover { border-color: #c9d3ee; color: var(--ink); }

body.home .bp-tabs button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(52, 99, 246, 0.7);
}

/* Article cards (only the active tab panel is shown) */
body.home .bp-cards { flex-direction: column; gap: 16px; }
body.home .bp-cards.active { display: flex; }

body.home .bp-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 44px -34px rgba(28, 45, 110, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.home .bp-card:hover {
  transform: translateY(-3px);
  border-color: #cfdaf6;
  box-shadow: 0 34px 56px -34px rgba(28, 45, 110, 0.5);
}

body.home .bp-card__media {
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #e6edff, #d2deff);
}

body.home .bp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.home .bp-card:hover .bp-card__media img { transform: scale(1.04); }

body.home .bp-card__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px 22px;
}

body.home .bp-card__title {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.28;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
}

body.home .bp-card:hover .bp-card__title { color: var(--accent-deep); }

body.home .bp-card__excerpt { font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

body.home .bp-card .article-engagement--card {
  margin-top: auto;
}

/* Side rail */
body.home .bp-rail {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-self: start;
  position: sticky;
  top: 96px;
}

body.home .bp-rail__block {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 44px -36px rgba(28, 45, 110, 0.4);
}

body.home .bp-rail__head,
body.home .bp-callout__head {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

body.home .bp-authors { list-style: none; margin: 0; padding: 0; }

body.home .bp-author {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

body.home .bp-author:first-child { border-top: 0; padding-top: 4px; }

body.home .bp-author__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent-deep);
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

body.home .bp-author__meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
body.home .bp-author__name { font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--ink); }
body.home .bp-author__role {
  font-size: 12px;
  color: var(--ink-mute);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.home .bp-follow {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.16s ease;
}

body.home .bp-follow:hover { background: var(--accent); color: #fff; }

body.home .bp-follow.is-active {
  border-color: #d6e0fb;
  background: var(--accent-tint);
  color: var(--accent-deep);
}

body.home .bp-follow[aria-disabled="true"] {
  opacity: 0.65;
  pointer-events: none;
}

/* Callouts */
body.home .bp-callout {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
}

body.home .bp-callout--solid {
  border: 0;
  background: linear-gradient(150deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 30px 50px -28px rgba(52, 99, 246, 0.7);
}

body.home .bp-callout--solid .bp-callout__head { color: #fff; }
body.home .bp-callout__text { margin: 0 0 18px; font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
body.home .bp-callout--solid .bp-callout__text { color: rgba(255, 255, 255, 0.88); }

/* ----------------------------------------------------- Section cards */
body.home .bp-sections { margin-top: 50px; padding-bottom: 64px; }

body.home .bp-sections__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.home .bp-sectioncard {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 44px -38px rgba(28, 45, 110, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

body.home .bp-sectioncard:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 56px -36px rgba(28, 45, 110, 0.5);
}

body.home .bp-sectioncard__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

body.home .bp-sectioncard__head h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}

body.home .bp-sectioncard__list { list-style: none; margin: 0; padding: 0; }
body.home .bp-sectioncard__list li { border-bottom: 1px solid var(--line); }
body.home .bp-sectioncard__list li:last-child { border-bottom: 0; }

body.home .bp-sectioncard__list a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 13px 0;
}

body.home .bp-sectioncard__title {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.32;
  color: var(--ink);
  transition: color 0.16s ease;
}

body.home .bp-sectioncard__list a:hover .bp-sectioncard__title { color: var(--accent); }
body.home .bp-sectioncard__date { font-size: 12px; color: var(--ink-mute); }

/* ------------------------------------------------------- Page load */
@media (prefers-reduced-motion: no-preference) {
  body.home .bp-hero__copy > *,
  body.home .bp-feature {
    opacity: 0;
    animation: bp-rise 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  body.home .bp-kicker { animation-delay: 0.04s; }
  body.home .bp-hero__title { animation-delay: 0.12s; }
  body.home .bp-hero__lead { animation-delay: 0.2s; }
  body.home .bp-hero__actions { animation-delay: 0.28s; }
  body.home .bp-feature { animation-delay: 0.34s; }
}

@keyframes bp-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------- Hero secondary = ghost */
body.home .bp-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: #d3dbea;
}

body.home .bp-btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

/* ---------------------------------------- Signature: section markers */
/* A small slanted blue "marker" tab — the same motif as the hero
   highlight — leads every section head, tying the brand together. */
body.home .bp-section-head h2,
body.home .bp-rail__head,
body.home .bp-sectioncard__head h3,
body.home .stories .section-heading h2 {
  display: inline-flex;
  align-items: baseline;
}

body.home .bp-section-head h2::before,
body.home .bp-rail__head::before,
body.home .bp-sectioncard__head h3::before,
body.home .stories .section-heading h2::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 0.78em;
  margin-right: 12px;
  border-radius: 3px;
  background: var(--accent);
  transform: rotate(-3deg) translateY(0.04em);
}

/* --------------------------------------------- Duotone imagery (home) */
body.home .bp-feature__media,
body.home .bp-card__media,
body.home .story-ring { position: relative; }

body.home .bp-feature__media img,
body.home .bp-card__media img,
body.home .story-ring img {
  filter: grayscale(0.5) contrast(1.04);
  transition: filter 0.45s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.home .bp-feature__media::after,
body.home .bp-card__media::after,
body.home .story-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--accent);
  opacity: 0.15;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

body.home .bp-feature__badge { z-index: 2; }

body.home .bp-feature:hover .bp-feature__media img,
body.home .bp-card:hover .bp-card__media img,
body.home .story:hover .story-ring img { filter: grayscale(0); }

body.home .bp-feature:hover .bp-feature__media::after,
body.home .bp-card:hover .bp-card__media::after,
body.home .story:hover .story-ring::after { opacity: 0; }

/* ------------------------------------------------ Ticker / бегущая строка */
body.home .bp-ticker {
  display: flex;
  align-items: stretch;
  margin-bottom: 2px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #edf1fb;
  font-family: var(--body);
}

body.home .bp-ticker__label {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 18px 0 max(18px, calc((100vw - 1210px) / 2));
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.home .bp-ticker__label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(52, 99, 246, 0.25);
}

body.home .bp-ticker__viewport {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* soft fade on the trailing edge */
body.home .bp-ticker__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 64px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(237, 241, 251, 0), #edf1fb);
}

body.home .bp-ticker__track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  white-space: nowrap;
  animation: bp-ticker-scroll 42s linear infinite;
}

body.home .bp-ticker:hover .bp-ticker__track,
body.home .bp-ticker:focus-within .bp-ticker__track {
  animation-play-state: paused;
}

body.home .bp-ticker__group {
  display: flex;
  align-items: center;
}

body.home .bp-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  height: 46px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.16s ease;
}

body.home .bp-ticker__item:hover {
  color: var(--accent-deep);
}

body.home .bp-ticker__dot {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

@keyframes bp-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  body.home .bp-ticker__track { animation: none; }
  body.home .bp-ticker__viewport { overflow-x: auto; }
  body.home .bp-ticker__group[aria-hidden="true"] { display: none; }
}

@media (max-width: 640px) {
  body.home .bp-ticker__label {
    padding-left: 14px;
    letter-spacing: 0.12em;
  }
}

/* --------------------------------- Category colour-coded tags (home) */
body.home .bp-tag[data-format="review"] { background: #e2f5f1; color: #0f766e; }
body.home .bp-tag[data-format="rating"] { background: #fbeedd; color: #92590b; }
body.home .bp-tag[data-format="case"] { background: #efeafe; color: #5b34c9; }
body.home .bp-tag[data-format="article"] { background: #eef1f5; color: #475467; }
body.home .bp-tag[data-format="advertising"] { background: #fdeaf3; color: #b03a73; }
/* guide + default keep the brand-blue tint */

/* ---------------------------------------------------------- Mobile */
@media (max-width: 980px) {
  body.home .bp-hero { grid-template-columns: 1fr; }
  body.home .bp-grid { grid-template-columns: 1fr; gap: 36px; }
  body.home .bp-rail { position: static; }
  body.home .bp-sections__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body.home .bp-card { grid-template-columns: 1fr; }
  body.home .bp-card__media { aspect-ratio: 16 / 9; }
  body.home .bp-sections__grid { grid-template-columns: 1fr; }
  body.home .bp-hero__title { font-size: clamp(30px, 9vw, 40px); }
}
