:root {
  --green: #0f5926;
  --green-deep: #0a3d1a;
  --yellow: #f9cb46;
  --red: #ff0302;
  --white: #ffffff;
  --ink: #141414;
  --muted: #5a5a5a;
  --line: #e6e6e6;
  --paper: #ffffff;
  --shadow: 0 10px 30px rgba(15, 89, 38, 0.08);
  --radius: 12px;
  --header-max: 1280px;
  --page-max: 1280px;
  --sidebar: 200px;
  --font-ui: "Poppins", "Segoe UI", sans-serif;
  --font-display: "Poppins", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  padding-bottom: 76px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--green-deep);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Prototype notice */
.proto-banner {
  background: var(--yellow);
  color: var(--green-deep);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 0.4rem 1rem;
}

/* Top strip */
.topbar {
  background: var(--green);
  color: var(--white);
  font-size: 0.82rem;
}

.topbar-inner {
  max-width: var(--header-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 0.45rem 1.25rem;
  min-height: 36px;
}

.topbar-date {
  white-space: nowrap;
  opacity: 0.92;
  font-weight: 600;
}

.ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.ticker-label {
  flex: none;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.45rem;
  border-radius: 2px;
}

.ticker-track {
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
}

.ticker-move {
  display: inline-block;
  will-change: transform;
  animation: ticker 220s linear infinite;
}

.ticker-track:hover .ticker-move {
  animation-play-state: paused;
}

.ticker-move:hover {
  text-decoration: underline;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-move {
    animation: none;
  }
}

.topbar-radio {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.topbar-prog {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}

.topbar-prog:hover,
.topbar-prog:focus-visible,
.topbar-prog[aria-current="page"] {
  color: var(--yellow);
}

.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--yellow);
  color: var(--green-deep);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.38rem 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn-live .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 3, 2, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(255, 3, 2, 0);
  }
}

.btn-live:hover,
.btn-live:focus-visible {
  background: var(--white);
}

/* Brand header */
.brand-header {
  background: var(--white);
  position: relative;
}

.brand-inner {
  max-width: var(--header-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  padding: 0.45rem 1.25rem 0.25rem;
}

.brand-side {
  display: flex;
  align-items: center;
}

.brand-side.end {
  justify-content: flex-end;
}

.logo-link {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link img {
  width: auto;
  height: 108px;
  max-width: min(590px, 86vw);
  object-fit: contain;
}

.logo-wordmark {
  display: none;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  background: var(--paper);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

/* Nav */
.nav-wrap {
  background: var(--white);
  border-bottom: 3px solid var(--green);
}

.nav-inner {
  max-width: var(--header-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 1rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 0;
}

.main-nav a {
  display: inline-block;
  padding: 0.85rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-deep);
  position: relative;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--green);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.62rem;
  right: 0.62rem;
  bottom: 0.45rem;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav a[aria-current="page"][data-tone="green"]::after {
  background: var(--green);
}

.main-nav a[aria-current="page"][data-tone="red"]::after {
  background: var(--red);
}

.main-nav a[aria-current="page"][data-tone="gold"]::after {
  background: var(--yellow);
}

@media (min-width: 1280px) {
  .main-nav {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1440px) {
  .nav-inner {
    max-width: 1440px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .main-nav a {
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }

  .main-nav a::after {
    left: 0.72rem;
    right: 0.72rem;
  }
}

@media (min-width: 1920px) {
  .nav-inner {
    max-width: 1520px;
  }

  .main-nav a {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .main-nav a::after {
    left: 0.85rem;
    right: 0.85rem;
  }
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: none;
}

.socials a,
.socials button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--green);
  border-radius: 50%;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.socials a:hover,
.socials a:focus-visible,
.socials button:hover,
.socials button:focus-visible {
  background: var(--paper);
  color: var(--green-deep);
}

.socials svg {
  width: 17px;
  height: 17px;
  display: block;
}

/* Search */
.search-panel[hidden] {
  display: none;
}

.search-panel {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.search-form {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem 1.1rem;
  display: flex;
  gap: 0.6rem;
}

.search-form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
}

.search-form input:focus {
  outline: 2px solid var(--yellow);
  border-color: var(--green);
}

.search-form button[type="submit"] {
  background: var(--green);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  padding: 0 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

/* Ads */
.ad-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a9088;
  text-align: center;
  margin-bottom: 0.4rem;
}

.ad-slot {
  background: #eef1ec;
  border: 1px dashed #c9d0c6;
  color: #6b7369;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.ad-leader {
  max-width: var(--page-max);
  margin: 1.15rem auto 0;
  padding: 0 1.25rem;
}

.ad-leader .ad-slot {
  min-height: 90px;
  width: 100%;
}

.ad-box {
  min-height: 250px;
  width: 100%;
}

.ad-skyscraper {
  min-height: 600px;
}

.mobile-ad {
  display: none;
  margin: 1.25rem 0;
}

/* Layout */
div.page {
  max-width: var(--page-max);
  width: 100%;
  margin: 1.35rem auto 0;
  padding: 0 1.25rem 5.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 2rem;
  align-items: start;
}

div.page > * {
  min-width: 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-left: 3px solid var(--green);
  padding-left: 0.55rem;
  line-height: 1.2;
}

#programacao .section-head h2 {
  border-left-color: var(--yellow);
}

#em-alta .section-head h2 {
  border-left-color: var(--red);
}

#videos .section-head h2 {
  border-left-color: var(--green);
}

.section-head a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.section-head a:hover {
  color: var(--red);
}

.kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.kicker.urgent {
  color: var(--red);
}

.kicker.tone-green,
.label.tone-green {
  color: var(--green);
}

.kicker.tone-red,
.label.tone-red {
  color: var(--red);
}

.kicker.tone-gold,
.label.tone-gold {
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
}

.meta {
  color: var(--muted);
  font-size: 0.8rem;
}

/* Headlines */
.headlines {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 0.95fr);
  gap: 1.6rem 2rem;
  margin-bottom: 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.lead-story {
  position: relative;
  background: transparent;
  overflow: hidden;
  min-height: 440px;
}

.lead-story img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.lead-story .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 5.5rem 1.15rem 1.15rem;
  background: linear-gradient(transparent, rgba(12, 12, 12, 0.92) 62%);
  color: var(--white);
}

.lead-story h1 {
  margin: 0.4rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
}

.lead-story .kicker {
  color: var(--yellow);
  border-bottom: 0;
  padding-bottom: 0;
}

.lead-story .kicker.tone-green {
  color: var(--white);
  box-shadow: 0 2px 0 var(--green);
}

.lead-story .kicker.tone-red {
  color: var(--red);
}

.lead-story .kicker.tone-gold {
  color: var(--yellow);
}

.lead-story .meta {
  color: rgba(255, 255, 255, 0.82);
}

.lead-story:hover h1 {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.side-stories {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-story {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 0.95rem;
  background: transparent;
  padding: 0 0 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.side-story:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.side-story img {
  width: 148px;
  height: 108px;
  object-fit: cover;
}

.side-story h3 {
  margin: 0.28rem 0 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.side-story:hover h3 {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Latest */
.latest-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.latest-item {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.35rem;
  background: transparent;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.latest-item:first-child {
  padding-top: 0.15rem;
}

.latest-item img {
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.latest-item h3 {
  margin: 0.3rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.latest-item p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 400;
}

.latest-item:hover h3 {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Editorial blocks */
.local-block {
  margin-top: 2.4rem;
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1.5rem;
}

.story-card {
  background: transparent;
}

.story-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.story-card .body {
  padding: 0.95rem 0 0;
}

.story-card h3 {
  margin: 0.3rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.story-card p {
  margin: 0;
  color: var(--muted);
}

.local-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.local-list a {
  background: transparent;
  padding: 0.95rem 0 0.95rem 0.9rem;
  border-left: 3px solid var(--red);
  border-bottom: 1px solid var(--line);
}

.local-list a:last-child {
  border-bottom: 0;
}

.local-list h3 {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.editors-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.6rem;
  align-items: stretch;
}

.editor-block {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
}

.editor-block h3 {
  margin: 0;
  min-height: 2.6rem;
  display: flex;
  align-items: flex-end;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 3px solid var(--green);
  padding-bottom: 0.45rem;
  line-height: 1.25;
}

.editor-block.accent-red h3 {
  border-bottom-color: var(--red);
}

.editor-block.accent-gold h3 {
  border-bottom-color: var(--yellow);
}

.editor-block.accent-green h3 {
  border-bottom-color: var(--green);
}

.editor-block .label {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.28rem;
}

.accent-green .label {
  color: var(--green);
}

.accent-red .label {
  color: var(--red);
}

.accent-gold .label {
  color: var(--ink);
}

.editor-lead {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 0 0.9rem;
  border-bottom: 1px solid var(--line);
  min-height: 0;
}

.editor-lead img {
  width: 100%;
  height: 198px;
  object-fit: cover;
}

.editor-lead p {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--ink);
  overflow-wrap: break-word;
}

.editor-secondary {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.85rem 0 0;
  min-height: 6.6rem;
  align-items: start;
}

.editor-secondary img {
  width: 132px;
  height: 100px;
  object-fit: cover;
}

.editor-secondary p {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--ink);
  overflow-wrap: break-word;
}

.editor-block a.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.editor-lead:hover p,
.editor-secondary:hover p {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Schedule / trending / videos */
.radio-panel,
.trending,
.videos {
  margin-top: 2rem;
}

.now-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.now-main {
  padding: 1.2rem 1.3rem;
  background: var(--green);
  color: var(--white);
}

.now-main .live-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
}

.now-main h3 {
  margin: 0.55rem 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.now-next {
  padding: 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.85rem;
  border: 2px solid var(--green);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.85rem;
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.trending ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: trend;
  background: var(--white);
}

.trending li {
  counter-increment: trend;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.trending li::before {
  content: counter(trend, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  background: transparent;
  height: fit-content;
  padding: 0.1rem 0.2rem;
  font-size: 0.85rem;
  text-align: center;
}

.trending h3 {
  margin: 0;
  font-size: 1rem;
  font-family: var(--font-display);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.85rem;
}

.video-card {
  position: relative;
  background: #111;
  color: var(--white);
  min-height: 180px;
  overflow: hidden;
}

.video-card.featured {
  min-height: 100%;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  position: absolute;
  inset: 0;
}

.video-card .play {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
}

.video-card .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.video-card h3 {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
}

.video-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Sidebar */
aside.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 200px;
  align-self: stretch;
}

aside.sidebar .ad-slot {
  width: 200px;
  max-width: 100%;
}

.ad-unit[hidden],
.ad-unit[data-filled="false"] {
  display: none;
}

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: var(--white);
  padding: 2.4rem 1.25rem 1.2rem;
}

.footer-grid {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 1.7rem 2rem;
  align-items: start;
}

.footer-brand img {
  width: 168px;
  height: auto;
  margin-bottom: 0.85rem;
  object-fit: contain;
  background: transparent;
}

.footer-brand strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 400;
}

.footer-connect {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-connect a,
.footer-connect button {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  background: none;
  border: 0;
  padding: 0.28rem 0;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
}

.footer-connect svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.footer-connect a[aria-current="page"],
.footer-institutional a[aria-current="page"] {
  color: var(--yellow);
}

.footer-connect .group-label {
  margin: 0.7rem 0 0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer h2 {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 0.3rem 0;
}

.site-footer a:hover {
  color: var(--yellow);
}

.placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.legal {
  max-width: var(--page-max);
  margin: 1.6rem auto 0;
  padding: 0.95rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Player */
.player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--green-deep);
  color: var(--white);
  border-top: 3px solid var(--yellow);
}

.player-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.48rem 1.25rem;
}

.play-toggle {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.play-toggle:hover,
.play-toggle:focus-visible {
  background: var(--white);
}

.player-copy {
  min-width: 0;
}

.player-copy strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.player-copy span {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.volume {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.volume input {
  width: 92px;
  accent-color: var(--yellow);
}

.player-note {
  display: none;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 1.25rem 0.55rem;
  font-size: 0.78rem;
  color: var(--yellow);
}

.player-note.show {
  display: block;
}

/* WhatsApp */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 5.75rem;
  z-index: 45;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border: 0;
  cursor: pointer;
}

.wa-float svg {
  width: 26px;
  height: 26px;
  display: block;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 6.2rem;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  z-index: 60;
  max-width: min(92vw, 420px);
  text-align: center;
}

.toast[hidden] {
  display: none;
}

.menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  div.page {
    grid-template-columns: minmax(0, 1fr);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  aside.sidebar {
    display: none;
  }

  .mobile-ad {
    display: block;
  }

  .ad-unit[data-filled="false"],
  .mobile-ad[data-filled="false"] {
    display: none;
  }

  .headlines,
  .local-grid,
  .editors-grid,
  .now-card,
  .video-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .side-story,
  .latest-item {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .main-nav {
    display: none;
  }

  .nav-wrap.is-open .main-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-bottom: 0.6rem;
  }

  .nav-inner {
    flex-wrap: wrap;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .nav-wrap:not(.is-open) .nav-inner {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .brand-inner {
    grid-template-columns: 42px 1fr 42px;
    padding-top: 0.9rem;
  }

  .logo-link img {
    width: auto;
    height: 76px;
    max-width: 78vw;
    object-fit: contain;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .legal {
    align-items: flex-start;
  }

  .topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .topbar-date {
    display: none;
  }

  .lead-story,
  .lead-story img {
    min-height: 300px;
    height: 300px;
  }

  .latest-item {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .latest-item img {
    height: 88px;
  }

  .latest-item p {
    display: none;
  }

  .volume {
    display: none;
  }

  .player-inner {
    grid-template-columns: auto 1fr;
  }

  .ticker-label {
    display: none;
  }

  .topbar-radio {
    gap: 0.45rem;
  }

  .topbar-prog {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 430px) {
  .topbar-inner,
  .brand-inner,
  .nav-inner,
  .ad-leader,
  .search-form {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .topbar-radio {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.12rem;
  }

  div.page {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .site-footer {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .headlines,
  .local-grid,
  .editors-grid,
  .now-card,
  .video-grid,
  .latest-item,
  .side-story {
    grid-template-columns: minmax(0, 1fr);
  }

  .side-story {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .latest-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .side-story img,
  .latest-item img,
  .editor-block img,
  .story-card img,
  .lead-story img {
    width: 100%;
    max-width: 100%;
  }

  .side-story img {
    width: 92px;
    height: 70px;
  }

  .latest-item img {
    width: 96px;
    height: 74px;
  }

  .editor-lead img {
    height: 188px;
  }

  .editor-secondary {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .editor-secondary img {
    width: 108px;
    height: 82px;
  }

  .player-inner {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}
