:root {
  --ink: #17201c;
  --muted: #647067;
  --paper: #f7f8f4;
  --paper-strong: #eef1ea;
  --panel: #ffffff;
  --line: #d9ded4;
  --line-strong: #bec8bb;
  --forest: #1f5f4b;
  --blue: #245b8f;
  --gold: #f3cf45;
  --gold-soft: #fff4be;
  --amber: #b86e1b;
  --rose: #a63d54;
  --shadow: 0 18px 45px rgba(23, 32, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  border-bottom: 2px solid var(--ink);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar-inner,
.page-band-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand::after {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  background: var(--gold);
  border: 1px solid var(--ink);
  border-radius: 50%;
  margin-left: -5px;
  transform: translateY(-10px);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.94rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  border-radius: 7px;
  padding: 8px 10px;
}

.nav a:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.page-band {
  padding: 38px 0;
}

.page-band + .page-band {
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: 3.4rem;
  max-width: 900px;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.1rem;
}

.lede {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 760px;
  margin: 18px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 720;
  font-size: 0.94rem;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.visual-panel {
  min-height: 320px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric {
  background: var(--panel);
  padding: 18px;
}

.metric strong {
  display: block;
  font-size: 1.65rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.section-head p {
  color: var(--muted);
  max-width: 620px;
  margin: 8px 0 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  min-height: 100%;
}

.card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.card p {
  color: var(--muted);
}

.card-meta {
  font-size: 0.86rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 680;
}

.tag.status {
  color: var(--forest);
  border-color: rgba(31, 95, 75, 0.28);
  background: rgba(31, 95, 75, 0.08);
}

.tag.review {
  color: var(--blue);
  border-color: rgba(36, 91, 143, 0.28);
  background: rgba(36, 91, 143, 0.08);
}

.tag.watch {
  color: var(--amber);
  border-color: rgba(184, 110, 27, 0.28);
  background: rgba(184, 110, 27, 0.08);
}

.tag.urgent {
  color: var(--rose);
  border-color: rgba(166, 61, 84, 0.28);
  background: rgba(166, 61, 84, 0.08);
}

.tag-row.compact {
  gap: 6px;
  margin: 10px 0 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #fbfbf8;
}

tr:last-child td {
  border-bottom: 0;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 12px;
  margin: 0;
}

.input,
.select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.claim-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.claim {
  border-left: 4px solid var(--forest);
  background: #fff;
  padding: 14px 16px;
}

.claim p {
  margin: 6px 0 0;
  color: var(--muted);
}

.source-list {
  display: grid;
  gap: 12px;
}

.source-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.source-meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 6px;
}

.note-band {
  background: #eef4ef;
}

.publisher-masthead {
  background: var(--gold);
  border-bottom: 2px solid var(--ink);
  padding: 34px 0 24px;
}

.publisher-masthead h1 {
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  max-width: 860px;
}

.publisher-masthead p:not(.publisher-kicker) {
  max-width: 720px;
  color: #2e3027;
  font-size: 1.14rem;
  margin: 16px 0 0;
}

.publisher-kicker,
.article-label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.category-links a {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
  padding: 8px 13px;
  text-decoration: none;
}

.category-links a:hover {
  background: var(--ink);
  color: #fff;
}

.publisher-section {
  padding: 32px 0;
}

.publisher-section + .publisher-section,
.stats-strip + .publisher-section {
  border-top: 1px solid var(--line);
}

.money-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.lead-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 24px;
}

.lead-copy {
  align-self: start;
}

.lead-copy h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.lead-copy h2 a,
.article-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.lead-copy h2 a:hover,
.article-card h3 a:hover {
  text-decoration: underline;
}

.lead-copy p:not(.article-label),
.article-copy p:not(.article-label),
.newsletter-box p {
  color: var(--muted);
}

.article-meta {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  margin-top: 14px;
}

.article-art {
  align-items: end;
  aspect-ratio: 4 / 3;
  background: #17201c;
  border: 1.5px solid var(--ink);
  color: #fff;
  display: flex;
  min-height: 170px;
  overflow: hidden;
  padding: 16px;
  position: relative;
  text-decoration: none;
}

.article-art img,
.thumb-art img,
.video-art img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.article-art::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 44, 0.02) 0%, rgba(5, 5, 44, 0.18) 42%, rgba(5, 5, 44, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 5, 44, 0.42), transparent 56%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.article-art span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 850;
  line-height: 0.95;
  position: relative;
  text-shadow: 0 2px 18px rgba(5, 5, 44, 0.4);
  z-index: 2;
}

.lead-art {
  min-height: 320px;
}

.money-rankings {
  background: #fff;
  border: 1.5px solid var(--ink);
  padding: 18px;
}

.rankings-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.rankings-head h2 {
  font-size: 2rem;
}

.ranking-list {
  display: grid;
}

.ranking-link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 15px 0;
  text-decoration: none;
}

.ranking-link:last-child {
  border-bottom: 0;
}

.rank-number {
  align-items: center;
  background: var(--gold);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  font-weight: 850;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.ranking-link strong,
.ranking-link em {
  display: block;
}

.ranking-link em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  margin-top: 3px;
}

.money-section-head {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.money-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.publisher-search {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 180px;
  gap: 10px;
}

.money-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.article-card {
  background: #fff;
  border-top: 2px solid var(--ink);
  padding-top: 14px;
}

.article-card[hidden] {
  display: none;
}

.article-card .article-art {
  margin-bottom: 14px;
}

.article-card h3 {
  font-size: 1.45rem;
}

.stats-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid div {
  border-right: 1px solid var(--line);
  padding: 18px 20px;
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 6px;
  text-transform: uppercase;
}

.newsletter-band {
  background: var(--ink);
  color: #fff;
}

.newsletter-box {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.newsletter-box h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 3rem);
  max-width: 780px;
}

.newsletter-box p,
.newsletter-box .article-label {
  color: #f2f2e8;
}

.newsletter-box .button {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  flex: 0 0 auto;
}

.index-hero {
  background:
    linear-gradient(115deg, rgba(31, 95, 75, 0.1), rgba(36, 91, 143, 0.04) 46%, rgba(184, 110, 27, 0.08)),
    var(--paper);
}

.index-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 30px;
  align-items: end;
}

.index-hero .lede {
  max-width: 660px;
}

.index-status-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.index-status-panel div {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.index-status-panel div:nth-child(2n) {
  border-right: 0;
}

.index-status-panel div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.index-status-panel span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.index-status-panel strong {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 720;
  margin-top: 8px;
  text-transform: uppercase;
}

.workspace-band {
  padding-top: 28px;
}

.workspace-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}

.watchlist-panel,
.review-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 18px;
  align-items: end;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-head p,
.review-panel p {
  color: var(--muted);
  margin: 7px 0 0;
}

.watch-list {
  display: grid;
}

.watch-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.watch-row:last-child {
  border-bottom: 0;
}

.watch-row[hidden] {
  display: none;
}

.watch-titleline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.watch-titleline h3 a {
  color: var(--ink);
  text-decoration: none;
}

.watch-main p {
  color: var(--muted);
  margin: 11px 0 0;
  max-width: 720px;
}

.watch-meta {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.watch-meta dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.watch-meta div {
  display: grid;
  gap: 2px;
}

.watch-meta dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.watch-meta dd {
  margin: 0;
  font-size: 0.9rem;
}

.row-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 760;
}

.review-panel {
  padding: 18px;
  position: sticky;
  top: 80px;
}

.review-panel h2 {
  font-size: 1.25rem;
}

.review-stack {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.review-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
}

.review-item strong {
  color: var(--rose);
  font-size: 0.85rem;
}

.method-note {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a {
  color: var(--ink);
}

/* FinanceBuzz-inspired homepage hub */
.buzz-header {
  background: #fff;
  border-top: 4px solid #161618;
  border-bottom: 1px solid #e7ebf1;
  position: sticky;
  top: 0;
  z-index: 40;
}

.buzz-header-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 92px;
  padding: 0 18px;
  width: 100%;
}

.buzz-header-left {
  align-items: center;
  display: flex;
  gap: 26px;
  min-width: 0;
}

.buzz-wordmark {
  align-items: center;
  color: #0b0a33;
  display: inline-flex;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.buzz-wordmark span:last-child {
  background: #2253c7;
  color: #fff;
  display: inline-block;
  margin-left: 3px;
  padding: 4px 7px 5px;
  transform: skew(-8deg);
}

.buzz-wordmark span:last-child::first-letter {
  color: #fff;
}

.buzz-search {
  align-items: center;
  border: 1.5px solid #b8bac2;
  border-radius: 999px;
  display: grid;
  grid-template-columns: minmax(180px, 430px) 48px;
  height: 50px;
  margin: 0;
  max-width: 480px;
  overflow: hidden;
  width: min(34vw, 480px);
}

.buzz-search input {
  border: 0;
  color: #0b0a33;
  font: inherit;
  height: 100%;
  min-width: 0;
  outline: 0;
  padding: 0 20px;
}

.buzz-search input::placeholder {
  color: #969caa;
}

.buzz-search-button {
  background: #0b0a33;
  border: 0;
  border-radius: 50%;
  height: 42px;
  justify-self: end;
  margin-right: 4px;
  position: relative;
  width: 42px;
}

.buzz-search-button::before {
  border: 3px solid #fff;
  border-radius: 50%;
  content: "";
  height: 13px;
  left: 12px;
  position: absolute;
  top: 10px;
  width: 13px;
}

.buzz-search-button::after {
  background: #fff;
  content: "";
  height: 11px;
  left: 26px;
  position: absolute;
  top: 25px;
  transform: rotate(-45deg);
  width: 3px;
}

.buzz-home-hero {
  background: #e8eef7;
  min-height: 628px;
  overflow: hidden;
  padding: 70px 0;
  position: relative;
}

.buzz-geometry {
  inset: 0 auto 0 0;
  opacity: 0.42;
  pointer-events: none;
  position: absolute;
  width: 430px;
}

.buzz-geometry::before,
.buzz-geometry::after {
  border-bottom: 92px solid transparent;
  border-left: 160px solid rgba(255, 255, 255, 0.34);
  border-top: 92px solid transparent;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  width: 0;
}

.buzz-geometry::before {
  top: 70px;
}

.buzz-geometry::after {
  border-left-width: 230px;
  left: 128px;
  top: 158px;
}

.buzz-home-inner {
  margin: 0 auto;
  max-width: 1410px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.buzz-home-inner h1 {
  color: #0b0a33;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.08;
  margin: 0 auto;
  max-width: none;
  text-align: center;
}

.buzz-hero-kicker {
  background: #ffca48;
  border-radius: 999px;
  color: #0b0a33;
  display: table;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  margin: 0 auto 18px;
  padding: 7px 14px;
  text-transform: uppercase;
}

.buzz-hero-subtitle {
  color: #0b0a33;
  font-size: 1.1rem;
  margin: 18px auto 18px;
  max-width: 780px;
  text-align: center;
}

.buzz-hero-offer-strip {
  align-items: center;
  color: #0b0a33;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 38px;
  text-transform: uppercase;
}

.buzz-hero-offer-strip span {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 10, 51, 0.12);
  border-radius: 999px;
  padding: 6px 12px;
}

.buzz-hub-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1120px;
}

.buzz-hub-grid.lower {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.buzz-hub-tile,
.buzz-mini-tile {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 7px 18px rgba(10, 18, 50, 0.1);
  color: #0b0a33;
  text-decoration: none;
}

.buzz-hub-tile {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 126px;
  padding: 30px 34px;
}

.buzz-hub-tile.is-featured,
.buzz-mini-tile {
  border-top: 4px solid #ffca48;
}

.buzz-hub-tile.is-featured {
  box-shadow: 0 8px 24px rgba(255, 172, 37, 0.26), 0 5px 14px rgba(10, 18, 50, 0.08);
}

.buzz-hub-tile strong {
  display: block;
  font-size: 1.36rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.buzz-hub-tile em {
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.01em;
  margin-top: 5px;
  text-transform: uppercase;
}

.buzz-mini-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.buzz-mini-tile {
  display: grid;
  gap: 14px;
  min-height: 126px;
  padding: 18px 14px;
  position: relative;
}

.buzz-mini-tile::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 0;
  border-bottom: 12px solid #fff;
  content: "";
  left: 50%;
  position: absolute;
  top: -13px;
  transform: translateX(-50%);
}

.buzz-mini-badge {
  align-items: center;
  color: #0b0a33;
  display: flex;
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 800;
  gap: 7px;
}

.buzz-mini-tile strong {
  color: #0b0a33;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.24;
  text-decoration: underline;
  text-transform: uppercase;
}

.buzz-card-icon,
.mini-icon {
  display: block;
  flex: 0 0 auto;
  height: 40px;
  position: relative;
  width: 40px;
}

.mini-icon {
  height: 18px;
  width: 18px;
}

.buzz-card-icon::before,
.buzz-card-icon::after,
.mini-icon::before,
.mini-icon::after {
  content: "";
  position: absolute;
}

.icon-regulatory::before,
.icon-card::before {
  border: 3px solid #0b0a33;
  border-radius: 3px;
  height: 24px;
  left: 3px;
  top: 8px;
  width: 34px;
}

.icon-regulatory::after,
.icon-card::after {
  background: #ffca48;
  height: 4px;
  left: 8px;
  top: 20px;
  width: 24px;
}

.icon-bank::before {
  border-bottom: 4px solid #0b0a33;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  left: 0;
  top: 4px;
}

.icon-bank::after {
  border-bottom: 4px solid #0b0a33;
  border-top: 4px solid #0b0a33;
  box-shadow: 0 10px 0 #0b0a33;
  height: 16px;
  left: 4px;
  top: 16px;
  width: 32px;
}

.icon-home::before {
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-bottom: 18px solid #0b0a33;
  left: 3px;
  top: 2px;
}

.icon-home::after {
  border: 4px solid #0b0a33;
  border-top: 0;
  height: 18px;
  left: 8px;
  top: 18px;
  width: 24px;
}

.icon-hand::before {
  border: 3px solid #0b0a33;
  border-radius: 14px;
  height: 15px;
  left: 4px;
  top: 20px;
  width: 24px;
}

.icon-hand::after {
  border: 3px solid #0b0a33;
  border-radius: 50%;
  height: 12px;
  left: 22px;
  top: 5px;
  width: 12px;
}

.icon-popular::before {
  border: 2px solid #0b0a33;
  border-radius: 0 0 8px 8px;
  height: 9px;
  left: 4px;
  top: 4px;
  width: 10px;
}

.icon-popular::after {
  border-bottom: 2px solid #0b0a33;
  border-left: 2px solid #0b0a33;
  border-radius: 0 0 0 6px;
  height: 7px;
  left: 0;
  top: 4px;
  width: 5px;
}

.icon-trending::before {
  border: 2px solid #0b0a33;
  border-radius: 50%;
  height: 12px;
  left: 3px;
  top: 3px;
  width: 9px;
}

.icon-trending::after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid #ffca48;
  left: 5px;
  top: 0;
}

.icon-rising::before {
  background: #0b0a33;
  height: 12px;
  left: 8px;
  top: 4px;
  transform: rotate(45deg);
  width: 3px;
}

.icon-rising::after {
  border-bottom: 6px solid #ffca48;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  left: 4px;
  top: 1px;
}

.buzz-show-more {
  align-items: center;
  background: rgba(255, 255, 255, 0.58);
  color: #0b0a33;
  display: flex;
  font-size: 1.05rem;
  font-weight: 900;
  justify-content: center;
  margin: 26px auto 0;
  max-width: 1120px;
  min-height: 45px;
  text-decoration: none;
}

.buzz-show-more span {
  color: #52617f;
  font-size: 1rem;
  margin-left: 8px;
}

.buzz-feature-band {
  background: #fff;
  padding: 52px 0 32px;
}

.buzz-feature-wrap {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 32px;
}

.buzz-feature-card {
  background:
    radial-gradient(circle at 18% 12%, rgba(111, 177, 255, 0.62), transparent 28%),
    linear-gradient(118deg, #2d7ef2 0%, #1647a5 46%, #07164f 100%);
  border-radius: 4px;
  box-shadow: 0 10px 22px rgba(9, 29, 78, 0.18);
  color: #fff;
  display: grid;
  gap: 34px;
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  padding: 48px;
  position: relative;
}

.buzz-feature-card::before {
  border: 1px solid rgba(255, 255, 255, 0.45);
  content: "";
  inset: 18px;
  pointer-events: none;
  position: absolute;
}

.buzz-feature-media {
  align-self: center;
  aspect-ratio: 1.5 / 1;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(4, 12, 34, 0.28);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.buzz-feature-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.buzz-feature-copy {
  align-self: center;
  position: relative;
  z-index: 1;
}

.buzz-offer-label {
  background: #ffca48;
  color: #0b0a33;
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  padding: 4px 12px;
}

.buzz-feature-copy h2 {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3.85rem;
  font-weight: 950;
  line-height: 1;
}

.buzz-feature-copy p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 18px 0 0;
  max-width: 620px;
}

.buzz-feature-stats {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.86rem;
  gap: 9px;
  margin-top: 20px;
}

.buzz-feature-stats span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 4px 10px;
}

.buzz-feature-button {
  align-items: center;
  background: #aeea4f;
  box-shadow: 0 9px 18px rgba(5, 16, 48, 0.22);
  color: #0b0a33;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  margin-top: 26px;
  min-height: 54px;
  padding: 0 28px;
  text-decoration: none;
}

.buzz-feature-label {
  color: #7c8291;
  font-size: 0.78rem;
  margin: 14px 0 0;
  text-align: right;
  text-transform: uppercase;
}

.buzz-latest-band {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 34px 0 44px;
}

@media (max-width: 1100px) {
  .buzz-hub-grid.lower {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buzz-mini-grid {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .index-hero-grid,
  .workspace-layout,
  .panel-head,
  .money-layout,
  .lead-story,
  .video-watch-layout {
    grid-template-columns: 1fr;
  }

  .review-panel {
    position: static;
  }

  .lead-art {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .lead-copy {
    order: -1;
  }

  .money-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .money-section-head,
  .newsletter-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .buzz-header-inner {
    min-height: 76px;
  }

  .buzz-search {
    width: min(42vw, 360px);
  }

  .buzz-home-hero {
    padding: 54px 0;
  }

  .buzz-home-inner h1 {
    font-size: 2.35rem;
  }

  .buzz-feature-media {
    max-width: 380px;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .intro-grid,
  .grid,
  .metric-strip,
  .search-row,
  .watch-row,
  .publisher-search,
  .money-card-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 220px;
  }

  .section-head {
    display: block;
  }

  .watch-meta {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 14px;
  }

  .publisher-masthead {
    padding: 34px 0 24px;
  }

  .category-links a {
    font-size: 0.86rem;
    padding: 7px 11px;
  }

  .article-art,
  .lead-art {
    min-height: 210px;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .buzz-header-inner {
    gap: 14px;
    min-height: 68px;
    padding: 0 16px;
  }

  .buzz-header-left {
    gap: 14px;
  }

  .buzz-wordmark {
    font-size: 1.05rem;
  }

  .buzz-search {
    border: 0;
    display: block;
    height: 42px;
    width: 42px;
  }

  .buzz-search input {
    display: none;
  }

  .buzz-search-button {
    height: 42px;
    margin: 0;
    width: 42px;
  }

  .buzz-home-hero {
    min-height: 0;
    padding: 34px 0 42px;
  }

  .buzz-home-inner {
    padding: 0 16px;
  }

  .buzz-home-inner h1 {
    font-size: 2rem;
  }

  .buzz-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .buzz-hub-tile {
    gap: 18px;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 112px;
    padding: 24px 22px;
  }

  .buzz-hub-grid,
  .buzz-hub-grid.lower {
    grid-template-columns: 1fr;
  }

  .buzz-hub-tile strong {
    font-size: 1.2rem;
  }

  .buzz-mini-grid {
    grid-template-columns: 1fr;
  }

  .buzz-mini-tile {
    min-height: 90px;
  }

  .buzz-feature-band {
    padding: 32px 0;
  }

  .buzz-feature-wrap {
    padding: 0 16px;
  }

  .buzz-feature-card {
    gap: 22px;
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .buzz-feature-card::before {
    inset: 12px;
  }

  .buzz-feature-copy h2 {
    font-size: 2.15rem;
  }

  .buzz-feature-stats {
    display: grid;
  }

  .buzz-feature-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .index-status-panel {
    grid-template-columns: 1fr;
  }

  .index-status-panel div,
  .index-status-panel div:nth-child(2n),
  .index-status-panel div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .index-status-panel div:last-child {
    border-bottom: 0;
  }
}

/* Money-style publication surface */
.money-header {
  background: #fff;
  border-bottom: 1px solid #e2e2dc;
  position: sticky;
  top: 0;
  z-index: 30;
}

.money-header-inner {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 22px;
  min-height: 48px;
}

.money-header-left {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.money-icon {
  background: transparent;
  border: 0;
  cursor: default;
  height: 24px;
  padding: 0;
  position: relative;
  width: 24px;
}

.menu-icon::before,
.menu-icon::after,
.search-icon::before,
.search-icon::after {
  content: "";
  position: absolute;
}

.menu-icon::before {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  height: 10px;
  left: 3px;
  top: 6px;
  width: 18px;
}

.menu-icon::after {
  border-top: 2px solid var(--ink);
  left: 3px;
  top: 12px;
  width: 18px;
}

.search-icon::before {
  border: 2px solid var(--ink);
  border-radius: 50%;
  height: 12px;
  left: 3px;
  top: 3px;
  width: 12px;
}

.search-icon::after {
  background: var(--ink);
  height: 9px;
  left: 16px;
  top: 15px;
  transform: rotate(-45deg);
  width: 2px;
}

.money-wordmark {
  color: #05052c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.money-header-nav {
  display: flex;
  gap: 22px;
}

.money-header-nav a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 720;
  text-decoration: none;
}

.money-subscribe {
  border: 1px solid #c89153;
  border-radius: 999px;
  color: #7c5229;
  font-size: 0.82rem;
  font-weight: 760;
  padding: 6px 14px;
  text-decoration: none;
}

.money-cover {
  background:
    linear-gradient(rgba(4, 3, 39, 0.74), rgba(4, 3, 39, 0.86)),
    radial-gradient(circle at 18% 14%, rgba(56, 83, 171, 0.55), transparent 34%),
    #05052c;
  color: #fff;
  padding: 44px 0 34px;
}

.money-cover-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 850;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.money-cover h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 720;
  margin: 14px auto 0;
  max-width: 760px;
  text-align: center;
}

.money-cover-subtitle {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  margin: 12px auto 0;
  max-width: 720px;
  text-align: center;
}

.money-guide-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.money-guide-tile {
  background: #fff;
  border-radius: 10px;
  color: #080834;
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 28px 24px;
  text-decoration: none;
}

.money-guide-tile strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
}

.money-guide-tile span:last-child {
  color: #20243c;
  font-size: 1rem;
}

.tile-icon {
  display: block;
  height: 54px;
  position: relative;
  width: 64px;
}

.tile-icon::before,
.tile-icon::after {
  border: 3px solid #4655d8;
  content: "";
  position: absolute;
}

.tile-regulatory::before {
  height: 28px;
  left: 8px;
  top: 14px;
  width: 42px;
}

.tile-regulatory::after {
  border-left: 0;
  border-right: 0;
  height: 12px;
  left: 14px;
  top: 22px;
  width: 30px;
}

.tile-recovery::before {
  border-radius: 50%;
  height: 38px;
  left: 10px;
  top: 8px;
  width: 38px;
}

.tile-recovery::after {
  background: #4655d8;
  border: 0;
  height: 30px;
  left: 28px;
  top: 12px;
  width: 4px;
}

.tile-longevity::before {
  border-radius: 50%;
  height: 42px;
  left: 8px;
  top: 6px;
  width: 42px;
}

.tile-longevity::after {
  border-bottom: 0;
  border-left: 0;
  height: 22px;
  left: 26px;
  top: 16px;
  transform: rotate(45deg);
  width: 18px;
}

.tile-skin::before {
  border-radius: 18px 18px 8px 8px;
  height: 38px;
  left: 10px;
  top: 10px;
  width: 42px;
}

.tile-skin::after {
  background: #4655d8;
  border: 0;
  border-radius: 50%;
  height: 8px;
  left: 27px;
  top: 25px;
  width: 8px;
}

.money-editorial-section {
  background: #fff;
  padding: 34px 0;
}

.money-editorial-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.money-section-title {
  border-top: 4px solid #060606;
  color: #05052c;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  padding-top: 16px;
  text-transform: uppercase;
}

.money-section-title.centered {
  text-align: center;
}

.money-featured-card {
  display: grid;
  gap: 12px;
}

.money-featured-card h3 {
  font-size: 2rem;
}

.money-featured-card h3 a,
.top-story-item h3 a,
.trending-item h3 a,
.best-guide-card h3 a,
.money-category-card {
  color: var(--ink);
  text-decoration: none;
}

.money-featured-card p:not(.article-label),
.money-section-copy,
.best-guide-card p {
  color: var(--muted);
}

.story-meta {
  color: #05118f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  margin: 0;
  text-transform: uppercase;
}

.top-story-list {
  display: grid;
  gap: 18px;
}

.top-story-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 132px minmax(0, 1fr);
  padding-bottom: 18px;
}

.top-story-item h3 {
  font-size: 1.25rem;
}

.thumb-art {
  aspect-ratio: 1 / 0.78;
  background: #17201c;
  border-radius: 6px;
  border: 1px solid var(--line);
  display: block;
  overflow: hidden;
  position: relative;
}

.trending-section {
  padding-top: 16px;
}

.trending-list {
  border-top: 1px solid var(--line);
}

.trending-item {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 17px 0;
}

.trending-item > span {
  align-items: center;
  background: var(--gold);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  font-weight: 850;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.trending-item h3 {
  font-size: 1.2rem;
}

.video-watch-section {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 34px 0 40px;
}

.video-watch-method {
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 850;
  min-height: 38px;
  padding: 8px 16px;
  text-decoration: none;
}

.video-watch-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
}

.video-watch-list {
  display: grid;
  gap: 16px;
}

.video-watch-card {
  background: #fff;
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 14px;
  padding-top: 14px;
}

.lead-video {
  border-top-width: 4px;
}

.video-art {
  aspect-ratio: 16 / 9;
  background: #05052c;
  border: 1px solid var(--line);
  display: block;
  overflow: hidden;
  position: relative;
}

.video-art::after {
  background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 44, 0.58));
  content: "";
  inset: 0;
  position: absolute;
}

.play-mark {
  align-items: center;
  background: #f5803d;
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: 16px;
  display: flex;
  height: 54px;
  justify-content: center;
  position: absolute;
  right: 16px;
  width: 54px;
  z-index: 2;
}

.play-mark::before {
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  content: "";
  margin-left: 4px;
}

.video-copy h3 {
  font-size: 1.28rem;
}

.lead-video .video-copy h3 {
  font-size: 2rem;
}

.video-copy h3 a {
  color: var(--ink);
  text-decoration: none;
}

.video-copy p {
  color: var(--muted);
  margin: 9px 0 0;
}

.video-meta,
.video-signal,
.video-note {
  font-size: 0.82rem;
}

.video-signal {
  color: #05118f;
  font-weight: 850;
}

.video-note {
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

.money-rankings-section {
  background: #f5f2e8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}

.money-rankings-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 22px;
}

.money-rankings-head h2,
.money-categories-section h2,
.money-best-section h2 {
  color: #05052c;
  font-size: 2.3rem;
}

.money-rankings-head p {
  color: var(--muted);
  max-width: 520px;
}

.ranking-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.best-guide-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.best-guide-card h3 {
  font-size: 1.38rem;
}

.money-button {
  align-self: end;
  background: #f5803d;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  text-decoration: none;
}

.money-newsletter-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.15), transparent 32%),
    #435de0;
  color: #fff;
  padding: 54px 0;
  text-align: center;
}

.money-newsletter-box h2 {
  color: #fff;
  font-size: 2.8rem;
  margin: 0 auto;
  max-width: 780px;
}

.money-newsletter-box p {
  color: rgba(255, 255, 255, 0.88);
  margin: 14px auto 0;
  max-width: 620px;
}

.money-newsletter-form {
  display: grid;
  gap: 14px;
  margin: 28px auto 0;
  max-width: 540px;
}

.money-newsletter-form input,
.money-newsletter-form button {
  border: 0;
  border-radius: 10px;
  font: inherit;
  min-height: 58px;
}

.money-newsletter-form input {
  padding: 0 18px;
}

.money-newsletter-form button {
  background: #f5803d;
  color: #fff;
  font-weight: 850;
  text-transform: uppercase;
}

.money-best-section {
  background: #060331;
  color: #fff;
  padding: 38px 0 42px;
}

.money-best-section h2 {
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.money-best-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.best-card {
  background: transparent;
  border-top: 0;
  color: #fff;
}

.best-card h3 a,
.best-card .article-copy p,
.best-card .article-meta,
.best-card .article-label {
  color: #fff;
}

.best-card .article-art {
  border-color: rgba(255, 255, 255, 0.34);
}

.money-section-row {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.money-categories-section {
  background: #fff;
  padding: 38px 0;
}

.money-categories-section h2 {
  margin-bottom: 20px;
}

.money-category-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.money-category-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
}

.money-category-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.money-category-card span {
  color: var(--muted);
}

@media (max-width: 980px) {
  .money-header-inner {
    grid-template-columns: 1fr auto;
  }

  .money-header-nav {
    display: none;
  }

  .money-guide-grid,
  .ranking-card-grid,
  .money-best-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .money-editorial-grid {
    grid-template-columns: 1fr;
  }

  .video-watch-layout {
    grid-template-columns: 1fr;
  }

  .money-rankings-head,
  .money-section-row {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .money-header-inner {
    gap: 10px;
  }

  .money-wordmark {
    font-size: 1.25rem;
  }

  .money-subscribe {
    display: none;
  }

  .money-cover {
    padding: 32px 0 28px;
  }

  .money-cover-brand {
    font-size: 3rem;
  }

  .money-cover h1 {
    font-size: 1.55rem;
  }

  .money-guide-grid,
  .ranking-card-grid,
  .money-best-grid,
  .money-category-grid {
    grid-template-columns: 1fr;
  }

  .money-guide-tile {
    min-height: 160px;
    padding: 22px;
  }

  .top-story-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .money-newsletter-box h2 {
    font-size: 2rem;
  }

  .lead-video .video-copy h3 {
    font-size: 1.55rem;
  }

  .play-mark {
    height: 44px;
    width: 44px;
  }

  .money-section-title.centered {
    text-align: left;
  }
}

/* ===== MONEY.COM-STYLE HOMEPAGE SECTIONS ===== */

/* --- Sponsor/Lead-Gen Banner Strip --- */
.buzz-sponsor-strip {
  background: var(--ink);
  padding: 20px 0;
  border-bottom: 3px solid var(--gold);
}
.buzz-sponsor-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.buzz-sponsor-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.buzz-sponsor-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.buzz-sponsor-card h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.buzz-sponsor-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}
.buzz-sponsor-cta {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
}
.buzz-sponsor-cta:hover {
  text-decoration: underline;
}

/* --- Featured Article Hero --- */
.buzz-featured-section {
  padding: 32px 0 24px;
  background: var(--paper);
}
.buzz-featured-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--panel);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.buzz-featured-image {
  display: block;
  height: 320px;
  overflow: hidden;
}
.buzz-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.buzz-featured-copy {
  padding: 28px 32px 28px 0;
}
.buzz-featured-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 8px;
}
.buzz-featured-copy h2 {
  font-size: 1.8rem;
  font-weight: 850;
  line-height: 1.2;
  margin: 0 0 12px;
}
.buzz-featured-copy h2 a {
  color: var(--ink);
  text-decoration: none;
}
.buzz-featured-copy h2 a:hover {
  color: var(--blue);
}
.buzz-featured-deck {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 12px;
}
.buzz-featured-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0;
}

/* --- Top Stories --- */
.buzz-top-stories-section {
  padding: 24px 0;
  background: var(--paper-strong);
}
.buzz-top-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.buzz-top-story {
  background: var(--panel);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(23,32,28,0.04);
  display: flex;
  flex-direction: column;
}
.buzz-top-story .thumb-art {
  height: 160px;
  overflow: hidden;
}
.buzz-top-story .thumb-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.buzz-top-story > div {
  padding: 16px 18px;
}
.buzz-story-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 6px;
}
.buzz-top-story h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px;
}
.buzz-top-story h3 a {
  color: var(--ink);
  text-decoration: none;
}
.buzz-top-story h3 a:hover {
  color: var(--blue);
}
.buzz-story-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

/* --- Trending --- */
.buzz-trending-section {
  padding: 24px 0;
  background: var(--paper);
}
.buzz-trending-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.buzz-trending-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.buzz-trending-item .buzz-rank-num {
  font-size: 1.5rem;
  font-weight: 850;
  color: var(--gold);
  min-width: 28px;
  line-height: 1;
}
.buzz-trending-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 4px;
}
.buzz-trending-item h3 a {
  color: var(--ink);
  text-decoration: none;
}
.buzz-trending-item h3 a:hover {
  color: var(--blue);
}
.buzz-trending-item .buzz-story-meta {
  font-size: 0.7rem;
}

/* --- Rankings (Best Of) --- */
.buzz-rankings-section {
  padding: 28px 0;
  background: var(--paper-strong);
}
.buzz-rankings-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.buzz-rankings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.buzz-ranking-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s;
}
.buzz-ranking-card:hover {
  box-shadow: var(--shadow);
}
.buzz-ranking-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}
.buzz-ranking-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.buzz-ranking-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-top: 4px;
}
.buzz-ranking-cta:hover {
  text-decoration: underline;
}

/* --- Newsletter --- */
.buzz-newsletter-section {
  padding: 36px 0;
  background: var(--forest);
}
.buzz-newsletter-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.buzz-newsletter-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.buzz-newsletter-section h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 850;
  line-height: 1.2;
  margin: 0 0 10px;
}
.buzz-newsletter-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin: 0 0 20px;
}
.buzz-newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.buzz-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
}
.buzz-newsletter-form button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
}
.buzz-newsletter-form button:hover {
  background: #fff;
}
.buzz-social-proof {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.buzz-social-proof span {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.buzz-social-proof strong {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 850;
  display: block;
}

/* --- Section Row (title + see all) --- */
.buzz-section-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.buzz-see-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.buzz-see-all:hover {
  text-decoration: underline;
}

/* --- Video Claim Scanner --- */
.buzz-video-scanner-section {
  padding: 28px 0;
  background: var(--paper);
}
.buzz-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.buzz-video-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  background: var(--panel);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(23,32,28,0.04);
}
.buzz-video-art {
  display: block;
  height: 100%;
  min-height: 120px;
  overflow: hidden;
  position: relative;
}
.buzz-video-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.buzz-video-copy {
  padding: 14px 16px 14px 0;
}
.buzz-video-copy h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px;
}
.buzz-video-copy h3 a {
  color: var(--ink);
  text-decoration: none;
}
.buzz-video-copy h3 a:hover {
  color: var(--blue);
}
.buzz-video-meta {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 4px;
}

/* --- Regulatory Watch Alerts --- */
.buzz-reg-watch-section {
  padding: 28px 0;
  background: var(--paper-strong);
}
.buzz-reg-watch-head {
  margin-bottom: 16px;
}
.buzz-reg-watch-brand {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 4px;
}
.buzz-reg-watch-head h2 {
  font-size: 1.5rem;
  font-weight: 850;
  margin: 0;
}
.buzz-reg-alert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.buzz-reg-alert-card {
  background: var(--panel);
  border-left: 4px solid var(--rose);
  border-radius: 6px;
  padding: 16px 18px;
  box-shadow: 0 2px 10px rgba(23,32,28,0.03);
}
.buzz-reg-alert-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.buzz-reg-alert-card h3 a {
  color: var(--ink);
  text-decoration: none;
}
.buzz-reg-alert-card h3 a:hover {
  color: var(--blue);
}
.buzz-reg-next {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 8px;
}
.buzz-reg-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.buzz-reg-link:hover {
  text-decoration: underline;
}

/* --- Categories Grid --- */
.buzz-categories-section {
  padding: 28px 0 40px;
  background: var(--paper);
}
.buzz-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.buzz-category-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.buzz-category-link:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(36,91,143,0.08);
}
.buzz-category-link strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.buzz-category-link span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* --- RUO Supplier Leaderboard --- */
.buzz-leaderboard-section {
  padding: 28px 0;
  background: var(--paper);
}
.buzz-leaderboard-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 6px 0 0;
  max-width: 700px;
}
.buzz-leaderboard-table {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
}
.buzz-leaderboard-head {
  display: grid;
  grid-template-columns: 40px 1.5fr 1.2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.buzz-leaderboard-row {
  display: grid;
  grid-template-columns: 40px 1.5fr 1.2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 0.85rem;
}
.buzz-leaderboard-row:last-child {
  border-bottom: none;
}
.buzz-leaderboard-row:hover {
  background: var(--paper-strong);
}
.buzz-leaderboard-row .col-name strong {
  display: block;
  font-weight: 700;
}
.buzz-leaderboard-row .col-name em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
}
.buzz-score-bar {
  display: inline-block;
  width: 80px;
  height: 8px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
  vertical-align: middle;
  margin-right: 8px;
}
.buzz-score-fill {
  display: block;
  height: 100%;
  border-radius: 4px;
}
.buzz-score-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
.buzz-supplier-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}
.buzz-supplier-status.status-good {
  background: #e8f5e9;
  color: #2e7d32;
}
.buzz-supplier-status.status-review {
  background: var(--gold-soft);
  color: var(--amber);
}
.buzz-supplier-status.status-warning {
  background: #fff3e0;
  color: #e65100;
}
.buzz-supplier-status.status-danger {
  background: #ffebee;
  color: #c62828;
}
.buzz-leaderboard-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* --- Section Title --- */
.money-section-title {
  font-size: 1.3rem;
  font-weight: 850;
  margin: 0 0 4px;
  color: var(--ink);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .buzz-sponsor-inner { grid-template-columns: repeat(2, 1fr); }
  .buzz-featured-hero { grid-template-columns: 1fr; }
  .buzz-featured-image { height: 200px; }
  .buzz-featured-copy { padding: 20px; }
  .buzz-top-stories-grid { grid-template-columns: 1fr; }
  .buzz-trending-list { grid-template-columns: 1fr; }
  .buzz-rankings-grid { grid-template-columns: 1fr; }
  .buzz-video-grid { grid-template-columns: 1fr; }
  .buzz-reg-alert-grid { grid-template-columns: repeat(2, 1fr); }
  .buzz-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .buzz-newsletter-form { flex-direction: column; }
  .buzz-social-proof { gap: 16px; }
  .buzz-newsletter-section h2 { font-size: 1.5rem; }
}

@media (max-width: 600px) {
  .buzz-sponsor-inner { grid-template-columns: 1fr; }
  .buzz-reg-alert-grid { grid-template-columns: 1fr; }
  .buzz-categories-grid { grid-template-columns: 1fr; }
  .buzz-video-card { grid-template-columns: 1fr; }
  .buzz-video-art { min-height: 160px; }
  .buzz-leaderboard-head { display: none; }
  .buzz-leaderboard-row {
    grid-template-columns: 30px 1fr;
    gap: 4px;
    padding: 12px;
  }
  .buzz-leaderboard-row .col-rank { grid-row: 1; }
  .buzz-leaderboard-row .col-name { grid-row: 1; grid-column: 2; }
  .buzz-leaderboard-row .col-score { grid-column: 2; }
  .buzz-leaderboard-row .col-coa { grid-column: 2; font-size: 0.75rem; color: var(--muted); }
  .buzz-leaderboard-row .col-third { grid-column: 2; font-size: 0.75rem; color: var(--muted); }
  .buzz-leaderboard-row .col-status { grid-column: 2; }
}
