@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Libre+Baskerville:wght@400;700&family=Source+Serif+4:wght@600;700;800&display=swap');

:root {
    --paper: #f6f1e8;
    --paper-2: #fffaf1;
    --paper-3: #ebe2d2;
    --ink: #171313;
    --muted: #6f665b;
    --line: #d7cbbb;
    --red: #b90f21;
    --red-bright: #e63b49;
    --red-dark: #7c0714;
    --blue: #17384f;
    --blue-soft: #dce9ed;
    --amber: #f3c74e;
    --green: #296f5a;
    --shadow: 0 22px 42px rgba(37, 26, 18, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--ink);
    font-family: "Archivo", Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(230, 59, 73, 0.12), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(23, 56, 79, 0.1), transparent 30%),
        linear-gradient(180deg, #fff9ee 0 180px, #f4efe6 180px 55%, #eef2ee 100%);
}

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

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

.container {
    width: min(100% - 44px, 1260px);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(23, 19, 19, 0.16);
    background:
        linear-gradient(90deg, rgba(185, 15, 33, 0.96) 0%, rgba(185, 15, 33, 0.96) 29%, rgba(255, 250, 241, 0.96) 29%, rgba(255, 250, 241, 0.96) 100%);
    box-shadow: 0 14px 32px rgba(28, 18, 16, 0.16);
    backdrop-filter: blur(12px);
}

.nav {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 64%),
        transparent;
}

.nav-inner {
    display: grid;
    grid-template-columns: minmax(172px, 0.72fr) minmax(0, 2.4fr) auto;
    align-items: center;
    gap: 18px;
    padding: 11px 0;
}

.site-logo {
    display: grid;
    grid-template-columns: 48px auto;
    align-items: center;
    gap: 10px;
    min-width: 172px;
    color: var(--paper-2);
}

.logo-orb {
    position: relative;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border: 3px solid var(--paper-2);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 50%, var(--paper-2) 0 22%, var(--red) 23% 36%, transparent 37%),
        linear-gradient(90deg, var(--red) 0 43%, var(--paper-2) 43% 64%, var(--ink) 64%);
    box-shadow: 8px 8px 0 rgba(23, 19, 19, 0.18);
}

.logo-orb::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 13px;
    width: 18px;
    height: 22px;
    border-top: 4px solid var(--amber);
    border-right: 4px solid var(--amber);
    border-bottom: 4px solid var(--amber);
    border-radius: 0 18px 18px 0;
}

.logo-word {
    font-size: 26px;
    font-weight: 900;
    line-height: 0.84;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(23, 19, 19, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.74);
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.site-nav__link:hover {
    color: var(--red-dark);
    border-color: rgba(185, 15, 33, 0.32);
    background: rgba(185, 15, 33, 0.07);
}

.site-nav__link--active,
.site-nav__link--active:hover {
    color: var(--paper-2);
    border-color: var(--red-dark);
    background: var(--red);
}

.nav-tools {
    justify-self: end;
}

.nav-clock {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-height: 44px;
    padding: 7px 12px;
    border: 1px solid rgba(23, 19, 19, 0.16);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper-2);
    box-shadow: 4px 4px 0 rgba(185, 15, 33, 0.1);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.12;
    white-space: nowrap;
}

.nav-clock span {
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.edition-deck {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.edition-card {
    display: grid;
    align-content: center;
    min-height: 78px;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.76);
    box-shadow: 5px 5px 0 rgba(23, 56, 79, 0.06);
}

.edition-card-main {
    color: var(--paper-2);
    border-color: var(--red-dark);
    background:
        linear-gradient(90deg, var(--red-dark), var(--red)),
        var(--red);
}

.edition-card span {
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.edition-card-main span {
    color: var(--amber);
}

.edition-card strong {
    margin-top: 6px;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 21px;
    line-height: 1;
}

.pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    min-height: 29px;
    padding: 7px 10px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.pill-category {
    color: var(--paper-2);
    border-color: var(--red);
    background: var(--red);
}

.pill-muted {
    color: var(--paper-2);
    border-color: rgba(255, 250, 241, 0.36);
    background: rgba(23, 19, 19, 0.66);
}

.pill-highlight {
    color: var(--ink);
    border-color: var(--amber);
    background: var(--amber);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.52fr) minmax(300px, 0.72fr);
    gap: 18px;
    margin-top: 18px;
}

.hero-main,
.hero-sidebar {
    min-width: 0;
}

.hero-card {
    position: relative;
    display: block;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(23, 19, 19, 0.18);
    border-radius: 8px;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.hero-card::before {
    content: "Portada";
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    padding: 9px 12px;
    color: var(--ink);
    border-radius: 999px;
    background: var(--amber);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-card-media,
.hero-card-media img,
.hero-card-media.placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 520px;
}

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

.hero-card-media.placeholder {
    background:
        linear-gradient(115deg, rgba(185, 15, 33, 0.92) 0 34%, rgba(255, 250, 241, 0.92) 34% 54%, rgba(23, 56, 79, 0.9) 54% 100%),
        repeating-linear-gradient(0deg, rgba(255, 250, 241, 0.15) 0 1px, transparent 1px 22px);
}

.placeholder-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 26%, rgba(243, 199, 78, 0.34) 0 0, transparent 27%),
        repeating-linear-gradient(135deg, transparent 0 18px, rgba(23, 19, 19, 0.08) 18px 20px);
}

.hero-card-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 19, 19, 0.94) 0%, rgba(23, 19, 19, 0.78) 47%, rgba(23, 19, 19, 0.22) 100%),
        linear-gradient(180deg, rgba(23, 19, 19, 0.04), rgba(23, 19, 19, 0.86));
}

.hero-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
    padding: 34px;
    color: var(--paper-2);
}

.hero-card-topline {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding-right: 112px;
}

.hero-card-title {
    display: -webkit-box;
    max-width: 760px;
    margin: 0;
    overflow: hidden;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 62px;
    font-weight: 800;
    line-height: 0.95;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.hero-card-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
}

.hero-card-snippet {
    display: -webkit-box;
    max-width: 620px;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 250, 241, 0.82);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.hero-card-link,
.read-more,
.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 38px;
    padding: 11px 15px;
    border: 1px solid var(--red-dark);
    border-radius: 999px;
    color: var(--paper-2);
    background: var(--red);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.hero-sidebar {
    align-self: stretch;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    max-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(23, 19, 19, 0.18);
    border-radius: 8px;
    background: var(--paper-2);
    box-shadow: 9px 9px 0 rgba(185, 15, 33, 0.08);
}

.ticker-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, #fff7e6, #edf3f2);
}

.ticker-sub {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ticker-list {
    max-height: 451px;
    overflow: auto;
}

.ticker-item {
    display: grid;
    grid-template-columns: 9px minmax(0, 1fr);
    gap: 13px;
    padding: 17px 18px;
    border-bottom: 1px solid var(--line);
}

.ticker-item:hover {
    background: rgba(185, 15, 33, 0.05);
}

.ticker-dot {
    width: 9px;
    height: 9px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(185, 15, 33, 0.12);
}

.ticker-title {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.22;
}

.ticker-time {
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
}

.block {
    margin-top: 34px;
}

.block-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ink);
}

.block-head h2 {
    margin: 0;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 39px;
    font-weight: 800;
    line-height: 1;
}

.block-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.highlight-row {
    display: grid;
    grid-template-columns: 1.22fr 0.89fr 0.89fr;
    gap: 14px;
}

.highlight-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.highlight-media,
.highlight-media img,
.highlight-media.placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.highlight-media img {
    object-fit: cover;
}

.highlight-media.placeholder {
    background:
        linear-gradient(135deg, rgba(23, 56, 79, 0.92), rgba(185, 15, 33, 0.72)),
        repeating-linear-gradient(90deg, rgba(255, 250, 241, 0.12) 0 1px, transparent 1px 18px);
}

.highlight-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    padding: 18px;
    color: var(--paper-2);
    background: linear-gradient(180deg, transparent, rgba(23, 19, 19, 0.88));
}

.highlight-body h3 {
    display: -webkit-box;
    margin: 13px 0 0;
    overflow: hidden;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.02;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

.article-card {
    display: grid;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.82);
    box-shadow: 4px 4px 0 rgba(23, 56, 79, 0.06);
}

.article-card:first-child {
    border-color: rgba(185, 15, 33, 0.28);
}

.article-card-image {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--red), var(--blue)),
        var(--red);
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-image.placeholder {
    display: block;
}

.article-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
}

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

.article-card-date {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.article-card-title {
    margin: 0;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.05;
}

.article-card-title a:hover {
    color: var(--red);
}

.article-card-snippet {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.read-more {
    margin-top: auto;
    color: var(--red);
    border-color: rgba(185, 15, 33, 0.32);
    background: transparent;
}

.read-more:hover {
    color: var(--paper-2);
    background: var(--red);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 34px 0 44px;
}

.page-link,
.page-gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper-2);
    font-size: 13px;
    font-weight: 900;
}

.page-link.current,
.page-link:hover {
    color: var(--paper-2);
    border-color: var(--red);
    background: var(--red);
}

.empty-state {
    margin: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    color: var(--muted);
    font-weight: 800;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 28px 0 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

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

.article-page {
    padding-bottom: 40px;
}

.article-full {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    box-shadow: var(--shadow);
}

.article-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: var(--ink);
}

.article-hero-media,
.article-hero-media img,
.article-hero-media.placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.article-hero-media img {
    object-fit: cover;
}

.article-hero-media.placeholder {
    background:
        linear-gradient(120deg, rgba(185, 15, 33, 0.9) 0 32%, rgba(255, 250, 241, 0.88) 32% 54%, rgba(23, 56, 79, 0.9) 54%),
        var(--red);
}

.article-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 19, 19, 0.95), rgba(23, 19, 19, 0.38));
}

.article-hero-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 430px;
    max-width: 920px;
    padding: 34px;
    color: var(--paper-2);
}

.article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
}

.article-title {
    margin: 0;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 0.96;
}

.article-full-content {
    max-width: 820px;
    padding: 34px 34px 8px;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 18px;
    line-height: 1.75;
}

.article-full-content p {
    margin: 0 0 20px;
}

.article-back {
    padding: 10px 34px 34px;
}

.related {
    margin-bottom: 36px;
}

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

.related-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 170px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
}

.related-card:hover {
    border-color: rgba(185, 15, 33, 0.38);
    box-shadow: 4px 4px 0 rgba(185, 15, 33, 0.08);
}

.related-card h3 {
    margin: auto 0 0;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 22px;
    line-height: 1.08;
}

.site-footer {
    margin-top: 52px;
    color: var(--paper-2);
    background: #121111;
}

.footer-broadcast {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(112deg, var(--red-dark) 0 47%, var(--red) 47% 69%, #201b1a 69% 100%);
}

.footer-broadcast::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 72%, rgba(243, 199, 78, 0.18) 72% 73%, transparent 73%),
        repeating-linear-gradient(135deg, rgba(255, 250, 241, 0.07) 0 1px, transparent 1px 18px);
    pointer-events: none;
}

.footer-broadcast-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 164px;
    padding-top: 28px;
    padding-bottom: 28px;
}

.footer-brand {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.footer-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    border: 4px solid rgba(255, 250, 241, 0.88);
    border-radius: 50%;
    color: var(--paper-2);
    background: rgba(23, 19, 19, 0.25);
    box-shadow: 12px 12px 0 rgba(23, 19, 19, 0.22);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.footer-brand strong {
    display: block;
    color: var(--paper-2);
    font-size: 54px;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.footer-brand p {
    max-width: 560px;
    margin: 13px 0 0;
    color: rgba(255, 250, 241, 0.78);
    font-family: "Libre Baskerville", Georgia, serif;
    line-height: 1.55;
}

.footer-live {
    display: grid;
    gap: 6px;
    min-width: 250px;
    padding: 17px 18px;
    border: 1px solid rgba(255, 250, 241, 0.28);
    border-radius: 8px;
    background: rgba(255, 250, 241, 0.1);
}

.footer-live span,
.footer-operation-main span,
.footer-schedule span {
    color: var(--amber);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-live strong {
    color: var(--paper-2);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 30px;
    line-height: 1;
}

.footer-section-rail {
    border-top: 1px solid rgba(255, 250, 241, 0.2);
    border-bottom: 1px solid rgba(255, 250, 241, 0.18);
    background: var(--paper-2);
    color: var(--ink);
}

.footer-section-inner {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.footer-section-inner a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-right: 1px solid var(--line);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-section-inner a:first-child {
    border-left: 1px solid var(--line);
}

.footer-section-inner a:hover {
    color: var(--paper-2);
    background: var(--red);
}

.footer-operations {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    gap: 28px;
    padding-top: 32px;
    padding-bottom: 32px;
}

.footer-operation-main {
    max-width: 760px;
}

.footer-operation-main h2 {
    max-width: 720px;
    margin: 9px 0 12px;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 46px;
    line-height: 0.98;
}

.footer-operation-main p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 250, 241, 0.66);
    font-family: "Libre Baskerville", Georgia, serif;
    line-height: 1.62;
}

.footer-schedule {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 250, 241, 0.2);
}

.footer-schedule div {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 250, 241, 0.2);
}

.footer-schedule strong {
    color: var(--paper-2);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 31px;
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 250, 241, 0.18);
    background: #0d0d0d;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 14px;
    padding-bottom: 16px;
    color: rgba(255, 250, 241, 0.62);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--paper-2);
}

@media (max-width: 1120px) {
    .site-header {
        background: linear-gradient(180deg, var(--red) 0 72px, rgba(255, 250, 241, 0.96) 72px);
    }

    .nav-inner {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo tools"
            "menu menu";
    }

    .site-logo {
        grid-area: logo;
    }

    .site-nav {
        grid-area: menu;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .nav-tools {
        grid-area: tools;
    }

    .edition-deck,
    .hero,
    .highlight-row,
    .footer-operations {
        grid-template-columns: 1fr;
    }

    .footer-broadcast-inner {
        grid-template-columns: 1fr;
    }

    .footer-live {
        min-width: 0;
    }

    .footer-section-inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .hero-sidebar {
        max-height: 360px;
    }

    .ticker-list {
        max-height: 291px;
    }

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

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

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1260px);
    }

    .nav-inner {
        gap: 12px;
    }

    .site-logo {
        min-width: 0;
    }

    .logo-word {
        font-size: 24px;
    }

    .nav-clock {
        min-height: 40px;
        padding: 6px 9px;
        font-size: 11px;
    }

    .edition-deck {
        margin-top: 18px;
    }

    .hero-card,
    .hero-card-media,
    .hero-card-media img,
    .hero-card-media.placeholder,
    .hero-card-body {
        min-height: 440px;
    }

    .hero-card-body {
        padding: 24px;
    }

    .hero-card-title {
        font-size: 34px;
        -webkit-line-clamp: 6;
    }

    .hero-card-bottom,
    .footer-bottom-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-card-bottom {
        display: grid;
    }

    .block-head,
    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .block-head h2 {
        font-size: 32px;
    }

    .articles-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-template-columns: 1fr;
    }

    .footer-mark {
        width: 82px;
        height: 82px;
        font-size: 25px;
    }

    .footer-brand strong {
        font-size: 42px;
    }

    .footer-operation-main h2 {
        font-size: 34px;
    }

    .footer-schedule div {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 13px 0;
    }

    .article-hero,
    .article-hero-body {
        min-height: 360px;
    }

    .article-hero-body,
    .article-full-content,
    .article-back {
        padding-right: 24px;
        padding-left: 24px;
    }

    .article-title {
        font-size: 38px;
    }

    .article-full-content {
        font-size: 16px;
    }

}
