﻿:root {
  --color-primary-red: #d0021b;
  --color-black: #101114;
  --color-white: #ffffff;
  --color-gray-text: #60646c;
  --color-gray-light: #f4f5f7;
  --color-border: #e2e5ea;
  --pc-red: #d0021b;
  --pc-red-dark: #a90014;
  --pc-red-soft: #f8e8eb;
  --pc-ink: #101114;
  --pc-muted: #60646c;
  --pc-soft: #f4f5f7;
  --pc-line: #e2e5ea;
  --pc-white: #ffffff;
  --pc-black: #050608;
  --pc-radius: 12px;
  --pc-radius-control: 8px;
  --pc-shadow: 0 18px 42px rgba(12, 15, 20, 0.12);
  --pc-shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.pc-theme {
  margin: 0;
  color: var(--pc-ink);
  background: var(--pc-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

.pc-theme a {
  color: inherit;
  text-decoration: none;
}

.pc-theme img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pc-shell {
  width: min(var(--pc-shell), calc(100% - 40px));
  margin-inline: auto;
}

.pc-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--pc-black);
  color: var(--pc-white);
  transform: translateY(-140%);
}

.pc-skip-link:focus {
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pc-topbar {
  background: var(--pc-black);
  color: var(--pc-white);
  font-size: 13px;
}

.pc-topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.pc-topbar nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
}

.pc-brandbar {
  background: var(--pc-white);
  border-bottom: 1px solid var(--pc-line);
}

.pc-brandbar__inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: 24px;
}

.pc-brand,
.custom-logo-link {
  display: grid;
  grid-template-columns: 74px auto;
  grid-template-areas:
    "mark name"
    "mark tag";
  align-items: center;
  width: fit-content;
  max-width: 100%;
}

.pc-brand__mark {
  grid-area: mark;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pc-red);
  color: var(--pc-white);
  font-weight: 800;
}

.pc-brand__name {
  grid-area: name;
  color: var(--pc-ink);
  font-size: 50px;
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
}

.pc-brand__name strong {
  color: var(--pc-red);
}

.pc-brand__tagline {
  grid-area: tag;
  margin-top: 8px;
  color: #666b73;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.custom-logo-link img {
  width: min(360px, 100%);
  max-height: 92px;
  object-fit: contain;
}

.pc-search {
  display: grid;
  grid-template-columns: 1fr auto;
  min-width: 0;
}

.pc-search input,
.pc-newsletter input {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: 1px solid var(--pc-line);
  border-radius: var(--pc-radius-control) 0 0 var(--pc-radius-control);
  padding: 0 16px;
  background: var(--pc-white);
  color: var(--pc-ink);
}

.pc-search button,
.pc-newsletter button,
.pc-denuncia,
.pc-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--pc-radius-control);
  padding: 0 20px;
  background: var(--pc-red);
  color: var(--pc-white);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.pc-search button {
  border-radius: 0 var(--pc-radius-control) var(--pc-radius-control) 0;
}

.pc-denuncia {
  white-space: nowrap;
}

.pc-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--pc-line);
  backdrop-filter: blur(10px);
}

.pc-nav__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
}

.pc-nav__toggle {
  display: none;
}

.pc-nav__menu {
  width: 100%;
}

.pc-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.pc-nav__list::-webkit-scrollbar {
  display: none;
}

.pc-nav__list a {
  display: block;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.pc-nav__list a:hover {
  color: var(--pc-red);
}

.pc-breaking {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  background: var(--color-black);
  color: var(--pc-white);
  overflow: hidden;
  border-radius: var(--pc-radius);
}

.pc-breaking__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: #20232a;
  font-weight: 800;
  text-transform: none;
  padding: 0 16px;
  white-space: nowrap;
}

.pc-breaking__viewport {
  min-width: 0;
  overflow: hidden;
}

.pc-breaking__track {
  display: flex;
  width: max-content;
  animation: pcTicker 34s linear infinite;
}

.pc-breaking:hover .pc-breaking__track,
.pc-breaking:focus-within .pc-breaking__track {
  animation-play-state: paused;
}

.pc-breaking__track a {
  min-width: 300px;
  max-width: 460px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.pc-breaking__track span {
  color: #ff5a68;
}

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

.pc-main {
  padding: 24px 0 48px;
}

.pc-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr) 300px;
  gap: 20px;
  align-items: stretch;
}

.pc-hero,
.pc-card,
.pc-trends,
.pc-newsletter,
.pc-ad,
.pc-video-strip,
.pc-cta,
.pc-article-sidebar section,
.pc-quick-summary {
  border: 1px solid var(--pc-line);
  border-radius: var(--pc-radius);
  background: var(--pc-white);
}

.pc-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  box-shadow: var(--pc-shadow);
}

.pc-hero__media,
.pc-hero__image,
.pc-media__placeholder {
  width: 100%;
  height: 100%;
}

.pc-hero__image {
  object-fit: cover;
}

.pc-media__placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #151820, #3b1117);
  color: var(--pc-white);
  font-weight: 800;
}

.pc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.00) 24%, rgba(0, 0, 0, 0.58) 100%);
}

.pc-hero__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: var(--pc-white);
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.50);
}

.pc-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--color-primary-red);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: none;
}

.pc-hero h1 {
  max-width: 650px;
  margin: 14px 0 10px;
  color: var(--pc-white);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.pc-hero h1 a {
  color: var(--pc-white);
}

.pc-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.45;
}

.pc-meta,
.pc-card__meta,
.pc-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--pc-muted);
  font-size: 13px;
}

.pc-hero .pc-meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.pc-side-stack {
  display: grid;
  gap: 16px;
}

.pc-card {
  min-width: 0;
  overflow: hidden;
}

.pc-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--pc-radius) var(--pc-radius) 0 0;
  background: var(--pc-soft);
}

.pc-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.pc-card:hover .pc-card__image {
  transform: scale(1.03);
}

.pc-card__body {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.pc-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.24;
  font-weight: 800;
}

.pc-card p {
  margin: 0;
  color: var(--pc-muted);
  font-size: 14px;
}

.pc-card--horizontal {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
}

.pc-card--horizontal .pc-card__media {
  aspect-ratio: auto;
  height: 100%;
  border-radius: var(--pc-radius) 0 0 var(--pc-radius);
}

.pc-card--horizontal h3 {
  font-size: 17px;
}

.pc-card--mini {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--pc-line);
}

.pc-card--mini .pc-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.pc-card--mini .pc-card__body {
  padding: 0 0 12px 12px;
}

.pc-card--mini h3 {
  font-size: 14px;
}

.pc-trends {
  padding: 18px;
}

.pc-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pc-section-heading h2,
.pc-trends h2,
.pc-newsletter h2,
.pc-cta h2,
.pc-video-strip h2,
.pc-article-sidebar h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: none;
}

.pc-section-heading--compact {
  margin-bottom: 12px;
}

.pc-section-heading a {
  color: var(--pc-muted);
  font-size: 14px;
  font-weight: 700;
}

.pc-trends ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  counter-reset: trend;
}

.pc-trends li {
  counter-increment: trend;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--pc-line);
  font-weight: 800;
  align-items: start;
}

.pc-trends li::before {
  content: counter(trend);
  color: var(--pc-red);
  font-size: 21px;
  line-height: 1.2;
  padding-top: 1px;
}

.pc-trends li a {
  font-size: 14px;
  line-height: 1.28;
}

.pc-button--outline {
  width: 100%;
  border: 1px solid var(--pc-line);
  background: var(--pc-white);
  color: var(--pc-ink);
  min-height: 44px;
}

.pc-section {
  margin-top: 28px;
}

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

.pc-home-breaking {
  margin-top: 22px;
}

.pc-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px;
  margin-top: 34px;
}

.pc-cta {
  min-height: 170px;
  padding: 24px;
  color: var(--pc-white);
}

.pc-cta--whatsapp {
  background: linear-gradient(135deg, #07120e, #0c4a2e);
}

.pc-cta--denuncia {
  background: linear-gradient(135deg, var(--pc-red), var(--pc-red-dark));
}

.pc-cta p {
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, 0.84);
}

.pc-button--light {
  background: var(--pc-white);
  color: var(--pc-ink);
}

.pc-video-strip {
  padding: 20px;
  background: #0b0c10;
  color: var(--pc-white);
}

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

.pc-video-strip__items a {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--pc-radius);
  background: #171a21;
}

.pc-video-strip__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.pc-video-strip__items span {
  position: absolute;
  inset: auto 8px 8px auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pc-ink);
  font-size: 12px;
  font-weight: 900;
}

.pc-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 42px;
}

.pc-ad {
  min-height: 144px;
  display: grid;
  place-items: center;
  border: 1px dashed #c9ced6;
  background: #fafbfc;
  color: var(--pc-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.pc-newsletter {
  padding: 24px;
}

.pc-newsletter p {
  margin: 8px 0 18px;
  color: var(--pc-muted);
}

.pc-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.pc-newsletter button {
  border-radius: 0 var(--pc-radius-control) var(--pc-radius-control) 0;
}

.pc-archive-header,
.pc-article__header {
  padding: 34px 0 22px;
}

.pc-eyebrow {
  margin: 0 0 8px;
  color: var(--pc-red);
  font-weight: 900;
  text-transform: uppercase;
}

.pc-archive-header h1,
.pc-article__header h1 {
  max-width: 900px;
  margin: 0;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 800;
}

.pc-archive-description {
  max-width: 780px;
  color: var(--pc-muted);
}

.pc-article__header > p {
  max-width: 760px;
  margin: 14px 0 16px;
  color: var(--pc-muted);
  font-size: 20px;
}

.pc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--pc-muted);
  font-size: 13px;
}

.pc-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.pc-share a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pc-line);
  border-radius: 999px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.pc-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 340px;
  gap: 42px;
  align-items: start;
}

.pc-article__figure {
  margin: 0 0 24px;
}

.pc-article__figure img {
  width: 100%;
  border-radius: var(--pc-radius);
}

.pc-article__figure figcaption {
  margin-top: 8px;
  color: var(--pc-muted);
  font-size: 13px;
}

.pc-quick-summary {
  margin: 0 0 24px;
  padding: 18px;
  background: #fbfbfc;
}

.pc-quick-summary strong {
  display: block;
  margin-bottom: 8px;
}

.pc-quick-summary p {
  margin: 0;
}

.pc-article__content {
  font-size: 19px;
  line-height: 1.75;
}

.pc-article__content p {
  margin: 0 0 22px;
}

.pc-article__content h2,
.pc-article__content h3 {
  margin: 34px 0 14px;
  line-height: 1.14;
}

.pc-article-sidebar {
  position: sticky;
  top: 76px;
  display: grid;
  gap: 20px;
}

.pc-article-sidebar section {
  padding: 20px;
}

.pc-trends--sidebar {
  padding: 20px;
}

.pc-pagination {
  margin-top: 30px;
}

.pc-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pc-pagination a,
.pc-pagination span {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pc-line);
  border-radius: var(--pc-radius);
  padding: 0 10px;
}

.pc-pagination .current {
  background: var(--pc-ink);
  color: var(--pc-white);
}

.pc-empty-state {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px solid var(--pc-line);
  border-radius: var(--pc-radius);
}

.pc-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 4px;
  background: var(--pc-red);
  transform: scaleX(0);
  transform-origin: left;
}

.pc-footer {
  margin-top: 44px;
  padding: 42px 0 24px;
  background: var(--pc-black);
  color: var(--pc-white);
}

.pc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.pc-footer__brand {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
}

.pc-footer__brand strong {
  color: #ff4050;
}

.pc-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.pc-footer h2 {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.pc-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.78);
}

.pc-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .pc-brandbar__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .pc-search,
  .pc-denuncia {
    width: 100%;
  }

  .pc-home-hero,
  .pc-cta-grid,
  .pc-bottom-grid,
  .pc-article__layout {
    grid-template-columns: 1fr;
  }

  .pc-article-sidebar {
    position: static;
  }

  .pc-side-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pc-card--horizontal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pc-shell {
    width: min(100% - 28px, var(--pc-shell));
  }

  .pc-topbar__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 0;
    gap: 8px 14px;
  }

  .pc-topbar nav {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .pc-brandbar__inner {
    min-height: 0;
  }

  .pc-brand,
  .custom-logo-link {
    grid-template-columns: 56px auto;
    justify-self: center;
  }

  .pc-brand__mark {
    width: 48px;
    height: 48px;
  }

  .pc-brand__name {
    font-size: 34px;
  }

  .pc-brand__tagline {
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .custom-logo-link img {
    max-height: 76px;
  }

  .pc-search {
    grid-template-columns: minmax(0, 1fr) 92px;
  }

  .pc-search button {
    padding: 0 12px;
    font-size: 12px;
  }

  .pc-nav__inner {
    min-height: 52px;
  }

  .pc-nav__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: var(--pc-ink);
    font-weight: 900;
    text-transform: uppercase;
  }

  .pc-nav__toggle::before {
    content: "";
    font-size: 22px;
    line-height: 1;
  }

  .pc-nav__toggle span {
    display: none;
  }

  .pc-nav__menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 52px;
    border-top: 1px solid var(--pc-line);
    border-bottom: 1px solid var(--pc-line);
    background: var(--pc-white);
  }

  .pc-nav__menu.is-open {
    display: block;
  }

  .pc-nav__list {
    width: min(100% - 28px, var(--pc-shell));
    display: grid;
    gap: 0;
    margin: 0 auto;
    padding: 8px 0;
    overflow: visible;
  }

  .pc-nav__list a {
    padding: 12px 0;
  }

  .pc-breaking {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .pc-breaking__label {
    font-size: 12px;
  }

  .pc-breaking__track a {
    min-width: 270px;
    padding: 0 16px;
  }

  .pc-main {
    padding-top: 18px;
  }

  .pc-hero {
    min-height: 430px;
  }

  .pc-hero__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .pc-hero h1 {
    font-size: 30px;
  }

  .pc-side-stack,
  .pc-card-grid,
  .pc-video-strip__items,
  .pc-footer__grid {
    grid-template-columns: 1fr;
  }

  .pc-card-grid {
    gap: 16px;
  }

  .pc-section-heading {
    align-items: flex-end;
  }

  .pc-archive-header h1,
  .pc-article__header h1 {
    font-size: 34px;
  }

  .pc-article__header > p {
    font-size: 18px;
  }

  .pc-article__content {
    font-size: 18px;
  }

  .pc-newsletter form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pc-newsletter input,
  .pc-newsletter button {
    border-radius: var(--pc-radius);
  }

  .pc-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .pc-shell {
    width: min(100% - 22px, var(--pc-shell));
  }

  .pc-brand__name {
    font-size: 29px;
  }

  .pc-search {
    grid-template-columns: minmax(0, 1fr) 78px;
  }

  .pc-denuncia,
  .pc-button {
    width: 100%;
  }

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

  .pc-breaking__label {
    min-height: 42px;
  }

  .pc-hero {
    min-height: 390px;
  }

  .pc-hero h1 {
    font-size: 27px;
  }
}

@media (max-width: 760px) {
  .pc-nav__toggle {
    min-height: 52px;
    font-weight: 800;
    text-transform: none;
  }

  .pc-nav__toggle::before {
    content: "";
    width: 20px;
    height: 14px;
    flex: 0 0 auto;
    border-top: 2px solid var(--pc-ink);
    border-bottom: 2px solid var(--pc-ink);
    box-shadow: inset 0 6px 0 0 var(--pc-ink);
  }

  .pc-breaking {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .pc-breaking__label {
    min-height: 46px;
    padding: 0 12px;
    font-size: 12px;
  }

  .pc-breaking__track a {
    min-width: 250px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 12px;
    line-height: 1.25;
  }

  .pc-main {
    padding-top: 16px;
  }

  .pc-hero {
    min-height: 360px;
  }

  .pc-hero__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .pc-hero h1 {
    margin: 10px 0 8px;
    font-size: 25px;
    line-height: 1.14;
  }

  .pc-hero p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.42;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .pc-hero .pc-meta {
    margin-top: 12px;
  }

  .pc-card__body {
    gap: 8px;
    padding: 12px;
  }

  .pc-card h3 {
    font-size: 16px;
  }

  .pc-trends {
    padding: 16px;
  }

  .pc-trends ol {
    margin-bottom: 14px;
  }

  .pc-trends li {
    padding: 9px 0;
  }

  .pc-newsletter input,
  .pc-newsletter button {
    border-radius: var(--pc-radius-control);
  }
}

@media (max-width: 420px) {
  .pc-breaking__label {
    justify-content: flex-start;
    min-height: 40px;
  }

  .pc-hero {
    min-height: 340px;
  }

  .pc-hero h1 {
    font-size: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pc-breaking__track,
  .pc-card__image {
    animation: none;
    transition: none;
  }
}

/* Mobile editorial app polish */
@media (max-width: 760px) {
  body.pc-theme {
    background: #ffffff;
    font-size: 16px;
  }

  .pc-topbar {
    display: none;
  }

  .pc-site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
  }

  .pc-brandbar {
    border-bottom: 0;
  }

  .pc-brandbar__inner {
    position: relative;
    min-height: 82px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 0;
    align-items: center;
    padding: 0;
  }

  .pc-brand,
  .custom-logo-link {
    grid-column: 2;
    justify-self: center;
    width: auto;
  }

  .pc-brand {
    grid-template-columns: 42px auto;
  }

  .pc-brand__mark {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .pc-brand__name {
    font-size: 27px;
    line-height: 0.92;
  }

  .pc-brand__tagline {
    display: none;
  }

  .custom-logo-link img {
    width: auto;
    max-width: 172px;
    max-height: 50px;
  }

  .pc-search {
    grid-column: 3;
    justify-self: end;
    width: 44px;
    height: 44px;
    display: block;
  }

  .pc-search input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .pc-search button {
    position: relative;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: transparent;
    font-size: 0;
  }

  .pc-search button::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    width: 16px;
    height: 16px;
    border: 3px solid var(--color-black);
    border-radius: 999px;
  }

  .pc-search button::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 28px;
    width: 10px;
    height: 3px;
    border-radius: 999px;
    background: var(--color-black);
    transform: rotate(45deg);
    transform-origin: left center;
  }

  .pc-nav {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 82px;
    border: 0;
    background: transparent;
    pointer-events: none;
  }

  .pc-nav__inner {
    position: relative;
    width: min(100% - 28px, var(--pc-shell));
    min-height: 82px;
    margin-inline: auto;
  }

  .pc-nav__toggle {
    position: absolute;
    left: 0;
    top: 19px;
    width: 44px;
    height: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
    color: transparent;
    font-size: 0;
    pointer-events: auto;
  }

  .pc-nav__toggle::before {
    width: 24px;
    height: 16px;
    border-top: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
    box-shadow: inset 0 7px 0 0 var(--color-black);
  }

  .pc-nav__menu {
    top: 82px;
    pointer-events: auto;
    box-shadow: 0 18px 34px rgba(16, 17, 20, 0.12);
  }

  .pc-breaking {
    grid-template-columns: 104px minmax(0, 1fr);
    border-radius: 0;
    background: #050608;
  }

  .pc-breaking__label {
    min-height: 60px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 16px;
    background: var(--color-primary-red);
    color: var(--color-white);
    font-size: 13px;
    line-height: 1.1;
    font-weight: 800;
  }

  .pc-breaking__track a {
    min-width: 330px;
    min-height: 60px;
    padding: 0 18px;
    color: var(--color-white);
    font-size: 13px;
    line-height: 1.25;
    white-space: normal;
  }

  .pc-breaking__track span {
    color: #ff4050;
    font-weight: 800;
  }

  .pc-main {
    padding: 24px 0 40px;
  }

  .pc-home-hero {
    gap: 24px;
  }

  .pc-hero {
    min-height: 390px;
    border-radius: var(--pc-radius);
    box-shadow: 0 16px 34px rgba(16, 17, 20, 0.15);
  }

  .pc-hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.20) 36%, rgba(0, 0, 0, 0.78) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.16) 55%, rgba(0, 0, 0, 0.04) 100%);
  }

  .pc-hero__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
  }

  .pc-hero h1 {
    max-width: 100%;
    margin: 12px 0 10px;
    font-size: 28px;
    line-height: 1.08;
    -webkit-line-clamp: 3;
  }

  .pc-hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
  }

  .pc-hero .pc-meta {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.88);
  }

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

  .pc-side-stack .pc-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .pc-side-stack .pc-card__media {
    aspect-ratio: 4 / 3;
    border-radius: var(--pc-radius);
  }

  .pc-side-stack .pc-card__body {
    padding: 10px 0 0;
  }

  .pc-side-stack .pc-card p {
    display: none;
  }

  .pc-side-stack .pc-card h3 {
    font-size: 13px;
    line-height: 1.28;
  }

  .pc-side-stack .pc-card__meta {
    margin-top: 10px;
    font-size: 12px;
  }

  .pc-section {
    margin-top: 28px;
  }

  .pc-section-heading {
    margin-bottom: 14px;
  }

  .pc-section-heading h2,
  .pc-trends h2,
  .pc-article-sidebar h2 {
    font-size: 21px;
    line-height: 1.05;
  }

  .pc-trends {
    padding: 20px;
  }

  .pc-trends li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
  }

  .pc-trends li::before {
    font-size: 30px;
    line-height: 1;
  }

  .pc-trends li a {
    font-size: 15px;
    line-height: 1.34;
  }

  .pc-card-grid {
    gap: 14px;
  }

  .pc-card-grid .pc-card {
    display: grid;
    grid-template-columns: 44% minmax(0, 1fr);
  }

  .pc-card-grid .pc-card__media {
    aspect-ratio: auto;
    min-height: 132px;
    border-radius: var(--pc-radius) 0 0 var(--pc-radius);
  }

  .pc-card-grid .pc-card__body {
    padding: 12px;
  }

  .pc-card-grid .pc-card h3 {
    font-size: 15px;
    line-height: 1.24;
  }

  .pc-card-grid .pc-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .pc-article-main {
    padding-top: 0;
  }

  .pc-article__header {
    padding: 20px 0 16px;
  }

  .pc-breadcrumb {
    margin-bottom: 16px;
  }

  .pc-article__header h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .pc-article__header > p {
    margin: 10px 0 14px;
    font-size: 17px;
    line-height: 1.45;
  }

  .pc-share {
    gap: 8px;
  }

  .pc-share > span {
    width: 100%;
  }

  .pc-share a {
    min-height: 44px;
  }

  .pc-article__figure {
    margin-bottom: 18px;
  }

  .pc-article__content {
    font-size: 17px;
    line-height: 1.65;
  }

  .pc-article-sidebar section {
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .pc-breaking {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .pc-breaking__track a {
    min-width: 300px;
  }

  .pc-hero {
    min-height: 390px;
  }

  .pc-hero h1 {
    font-size: 26px;
  }

  .pc-side-stack {
    gap: 12px;
  }

  .pc-side-stack .pc-card h3 {
    font-size: 12px;
  }

  .pc-article__header h1 {
    font-size: 28px;
  }
}

