:root {
  --bg: #eef3fb;
  --surface: #ffffff;
  --surface-strong: #0d2240;
  --card: #ffffff;
  --line: rgba(14, 33, 63, 0.12);
  --text: #13233b;
  --muted: #5b6b83;
  --accent: #c8102e;
  --accent-strong: #8f0c22;
  --accent-soft: #ffe2e7;
  --nba-blue: #17408b;
  --nba-blue-deep: #0b1f45;
  --nba-red: #c8102e;
  --nba-gold: #ffb81c;
  --success: #13795b;
  --shadow: 0 18px 40px rgba(11, 31, 69, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1240px;
}

[data-theme="dark"] {
  --bg: #0a1628;
  --surface: #132238;
  --surface-strong: #ffffff;
  --card: #1a2d47;
  --line: rgba(255, 255, 255, 0.1);
  --text: #e8edf5;
  --muted: #8899ad;
  --accent-soft: #2a1520;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(23, 64, 139, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(200, 16, 46, 0.14), transparent 22%),
    linear-gradient(180deg, #edf3fb 0%, #e5edf8 100%);
  color: var(--text);
  font-family: "IBM Plex Sans", sans-serif;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(23, 64, 139, 0.3), transparent 24%),
    radial-gradient(circle at top right, rgba(200, 16, 46, 0.2), transparent 22%),
    linear-gradient(180deg, #0a1628 0%, #0d1d35 100%);
}

.breaking-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #08162f;
  box-shadow: 0 10px 24px rgba(8, 22, 47, 0.22);
}

.breaking-bar-label {
  display: grid;
  place-items: center;
  padding: 8px 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg, #c8102e, #8f0c22);
}

.breaking-bar-text {
  display: flex;
  align-items: center;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar,
.scoreboard,
.hero,
.ticker-panel,
.news-section,
.sources-section,
.compliance-panel,
.editorial-panel,
.portal-footer,
.ad-slot,
.legal-card {
  backdrop-filter: blur(10px);
}

.article-page {
  display: grid;
  gap: 24px;
}

.admin-hero,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.84);
  box-shadow: var(--shadow);
}

.admin-hero {
  padding: 28px;
}

.admin-hero h1,
.admin-card h2 {
  margin: 10px 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.95;
}

.admin-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.admin-card {
  padding: 24px;
}

.admin-card h2 {
  font-size: 2rem;
}

.admin-card p,
.admin-hero p {
  line-height: 1.75;
  color: var(--muted);
}

.article-hero,
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.84);
  box-shadow: var(--shadow);
}

.article-hero {
  overflow: hidden;
}

.article-hero-copy {
  padding: 30px;
}

.article-hero-copy h1 {
  margin: 12px 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.92;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.article-summary {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

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

.article-hero-media img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.article-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  padding: 24px;
}

.article-card p {
  line-height: 1.8;
  color: var(--muted);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 22px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(11, 31, 69, 0.98), rgba(23, 64, 139, 0.94));
  box-shadow: var(--shadow);
}

[data-theme="dark"] .topbar {
  background: linear-gradient(90deg, rgba(19, 34, 56, 0.98), rgba(26, 45, 71, 0.95));
}

.scoreboard {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 0;
  margin-bottom: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, #091731, #0d2240);
  box-shadow: var(--shadow);
}

.scoreboard-label {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(200, 16, 46, 0.98), rgba(143, 12, 34, 0.98));
}

.scoreboard-strip {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.scoreboard-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 1px;
  animation: scoreboard-scroll 28s linear infinite;
}

.score-chip {
  width: 320px;
  min-height: 92px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.score-chip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.score-chip-code,
.score-chip-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.score-chip-code {
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.score-chip-icon-wrap {
  position: relative;
  width: 20px;
  height: 20px;
}

.score-chip-logo,
.score-chip-icon {
  position: absolute;
  inset: 0;
}

.score-chip-logo {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  object-fit: contain;
}

.score-chip-icon {
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 900;
}

.score-chip-tag {
  background: var(--nba-gold);
  color: var(--nba-blue-deep);
}

.score-chip--lesao .score-chip-tag {
  background: #ff5a6a;
  color: #ffffff;
}

.score-chip--jogo .score-chip-tag {
  background: #6cb6ff;
  color: #082248;
}

.score-chip--mercado .score-chip-tag {
  background: #ffb81c;
  color: #082248;
}

.score-chip--premio .score-chip-tag {
  background: #a78bfa;
  color: #ffffff;
}

.score-chip--destaque .score-chip-tag {
  background: #ffffff;
  color: #0b1f45;
}

.score-chip span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.score-chip strong {
  font-size: 1rem;
  line-height: 1.35;
}

.score-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

@keyframes scoreboard-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: min(320px, 42vw);
  height: auto;
}

.brand-mark {
  width: 18px;
  height: 54px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, var(--nba-red) 0 48%, var(--surface) 48% 52%, var(--nba-blue) 52% 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong,
.hero h1,
.section-head h2,
.lead-content h2,
.card-title {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}

.brand-kicker,
.eyebrow,
.meta-label,
.story-source,
.section-note,
.card-link,
.topbar-nav a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.brand strong {
  font-size: 2rem;
  line-height: 0.9;
}

.topbar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.topbar-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .sun-icon {
  display: block;
}

.theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(11, 31, 69, 0.98), rgba(23, 64, 139, 0.95) 54%, rgba(200, 16, 46, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 28, 0.55), rgba(255, 184, 28, 0));
  pointer-events: none;
}

.hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.92;
  max-width: 12ch;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow-hero {
  color: var(--nba-gold);
}

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

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}

.hero-button-primary {
  background: var(--surface);
  color: var(--nba-blue-deep);
}

.hero-button-secondary {
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.hero-strip-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-strip-item span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.64);
}

.hero-strip-item strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
}

.meta-card,
.ticker-card,
.lead-story,
.news-card,
.sources-list a {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .meta-card,
[data-theme="dark"] .ticker-card,
[data-theme="dark"] .news-card,
[data-theme="dark"] .sources-list a {
  background: var(--card);
  border-color: var(--line);
}

.meta-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.meta-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  color: #ffffff;
}

.meta-card .meta-label {
  color: rgba(255, 255, 255, 0.64);
}

.lead-story {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

[data-theme="dark"] .lead-story {
  background: var(--card);
}

.lead-story--hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  min-height: 420px;
  margin-top: 24px;
}

.lead-story--hero .lead-media {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}

.lead-story--hero .lead-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}

.lead-story--hero .lead-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.lead-story--hero .lead-content p {
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .lead-story--hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lead-story--hero .lead-media {
    min-height: 240px;
  }
}

.lead-media {
  min-height: 270px;
  background:
    linear-gradient(135deg, rgba(244, 107, 23, 0.35), rgba(19, 121, 91, 0.18)),
    #d7c4b1;
  background-size: cover;
  background-position: center;
}

.lead-content {
  padding: 22px;
}

.lead-content h2 {
  margin: 8px 0 10px;
  font-size: 2.2rem;
  line-height: 0.95;
}

.lead-content p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.story-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-weight: 700;
}

.story-source::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 107, 23, 0.12);
}

.ticker-panel,
.news-section,
.sources-section,
.compliance-panel,
.editorial-panel,
.portal-footer,
.ad-slot,
.legal-card {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .ticker-panel,
[data-theme="dark"] .news-section,
[data-theme="dark"] .sources-section,
[data-theme="dark"] .compliance-panel,
[data-theme="dark"] .editorial-panel,
[data-theme="dark"] .portal-footer,
[data-theme="dark"] .ad-slot,
[data-theme="dark"] .legal-card {
  background: rgba(19, 34, 56, 0.85);
}

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

.section-head h2,
.ticker-head h2 {
  margin: 6px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.section-note {
  max-width: 34ch;
  color: var(--muted);
  font-weight: 600;
}

.ticker-grid,
.sources-list {
  display: grid;
  gap: 16px;
}

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

.ticker-card {
  padding: 18px;
  border-radius: var(--radius-md);
}

.ticker-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.ticker-card p,
.sources-list a,
.card-summary,
.ad-slot-inner p,
.compliance-card p,
.legal-card p {
  color: var(--muted);
  line-height: 1.65;
}

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

.editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.editorial-brief,
.editorial-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.editorial-brief h3 {
  margin: 12px 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 0.95;
}

.editorial-brief p,
.insight-item p,
.insight-empty {
  color: var(--muted);
  line-height: 1.7;
}

.editorial-stacks {
  display: grid;
  gap: 18px;
}

.insight-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.insight-item {
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.insight-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.insight-item strong {
  display: block;
  margin-bottom: 8px;
}

.compliance-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.compliance-card strong,
.ad-slot-inner strong,
.legal-card h1,
.portal-footer strong {
  display: block;
  margin-bottom: 10px;
}

.ad-slot {
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(14, 58, 98, 0.08), rgba(244, 107, 23, 0.12)),
    rgba(255, 252, 246, 0.82);
}

.ad-slot-inner {
  padding: 26px;
  border: 1px dashed rgba(17, 17, 17, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
}

.ad-slot-inner span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.legal-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.legal-card {
  width: min(100%, 860px);
}

.legal-card h1 {
  margin: 8px 0 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.95;
}

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

.news-card {
  overflow: hidden;
  border-radius: 24px;
}

.card-media-link {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #ead7bf, #f7eee4);
}

.card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.story-date {
  color: var(--muted);
  font-size: 0.88rem;
}

.card-title {
  margin: 12px 0 10px;
  font-size: 2rem;
  line-height: 0.92;
}

.card-summary {
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.card-link {
  font-weight: 700;
  color: var(--surface-strong);
}

.sources-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sources-list a {
  display: block;
  padding: 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.sources-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.share-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 150ms ease, opacity 150ms ease;
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-btn:active {
  transform: scale(0.95);
}

.share-btn svg {
  width: 18px;
  height: 18px;
}

.share-btn--twitter {
  background: #1da1f2;
  color: #fff;
}

.share-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.share-btn--copy {
  background: var(--line);
  color: var(--text);
}

.share-btn--copy.copied {
  background: var(--success);
  color: #fff;
}

.skeleton,
.skeleton-card {
  position: relative;
  overflow: hidden;
}

.skeleton::after,
.skeleton-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.4s infinite;
}

.skeleton-card {
  min-height: 360px;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .scoreboard,
  .ticker-grid,
  .news-grid,
  .compliance-grid,
  .editorial-grid,
  .article-body,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding-top: 12px;
  }

  .breaking-bar {
    grid-template-columns: 1fr;
  }

  .topbar,
  .hero,
  .ticker-panel,
  .news-section,
  .sources-section {
    padding: 18px;
    border-radius: 22px;
  }

  .topbar,
  .ticker-head,
  .section-head,
  .card-topline,
  .portal-footer {
    align-items: start;
    flex-direction: column;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: min(240px, 72vw);
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .scoreboard-strip {
    overflow: visible;
  }

  .scoreboard-track {
    animation: none;
    width: 100%;
    min-width: 0;
    flex-direction: column;
  }

  .score-chip {
    width: 100%;
  }

  .lead-content h2,
  .card-title {
    font-size: 1.8rem;
  }
}
