@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700;800&family=Merriweather:wght@400;700&display=swap');

:root {
    --paper: #f7f3e8;
    --paper-2: #fffdf6;
    --ink: #171717;
    --muted: #63615b;
    --line: #d8d0bd;
    --blue: #163a67;
    --blue-soft: #dfeaf3;
    --red: #c8322c;
    --red-dark: #8e221f;
    --yellow: #f2c14e;
    --green: #276f5f;
    --shadow: 0 18px 44px rgba(33, 29, 18, 0.11);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    background:
        linear-gradient(90deg, rgba(22, 58, 103, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #fffaf0 0%, var(--paper) 48%, #edf3ef 100%);
    background-size: 34px 34px, auto;
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 3px solid var(--ink);
    background:
        linear-gradient(90deg, #101010 0%, var(--blue) 46%, var(--red-dark) 100%);
    box-shadow: 0 12px 30px rgba(23, 23, 23, 0.18);
}

.nav {
    background:
        linear-gradient(90deg, rgba(242, 193, 78, 0.18), transparent 32%, rgba(255, 253, 246, 0.12)),
        transparent;
}

.nav-inner {
    display: grid;
    grid-template-columns: minmax(205px, auto) minmax(0, 1fr) auto;
    grid-template-areas: "logo menu tools";
    align-items: center;
    gap: 14px;
    padding: 12px 0;
}

.site-logo {
    grid-area: logo;
    display: grid;
    grid-template-columns: 42px auto;
    align-items: center;
    justify-self: start;
    gap: 10px;
    min-width: 210px;
}

.logo-orb {
    position: relative;
    width: 42px;
    height: 42px;
    border: 3px solid #fffdf6;
    border-radius: 4px;
    background:
        linear-gradient(135deg, var(--yellow) 0 42%, var(--blue) 42% 70%, var(--red) 70%);
    box-shadow: 5px 5px 0 rgba(242, 193, 78, 0.24);
}

.logo-orb::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 3px solid #fffdf6;
}

.logo-word {
    color: #fffdf6;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 31px;
    font-weight: 800;
    line-height: 0.82;
    text-transform: uppercase;
}

.logo-kicker {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: none;
}

.site-nav {
    grid-area: menu;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-self: stretch;
    gap: 6px;
    width: 100%;
    padding: 6px;
    border: 1px solid rgba(255, 253, 246, 0.24);
    border-radius: 6px;
    background: rgba(255, 253, 246, 0.11);
    box-shadow: inset 0 0 0 1px rgba(23, 23, 23, 0.2);
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 10px;
    border: 2px solid transparent;
    border-radius: 4px;
    color: rgba(255, 253, 246, 0.86);
    background: transparent;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    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 a:hover {
    color: #fffdf6;
    border-color: rgba(242, 193, 78, 0.58);
    background: rgba(255, 253, 246, 0.12);
}

.site-nav a.site-nav__link--active,
.site-nav a.site-nav__link--active:hover {
    color: var(--ink);
    border-color: var(--yellow);
    background: var(--yellow);
}

.nav-tools {
    grid-area: tools;
    align-self: center;
    justify-self: end;
    display: grid;
    grid-template-columns: auto;
    align-items: center;
    gap: 10px;
}

.search {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 40px;
    border: 1px solid rgba(255, 253, 246, 0.48);
    border-radius: 6px;
    background: rgba(255, 253, 246, 0.94);
    overflow: hidden;
}

.search input {
    width: 100%;
    min-width: 0;
    padding: 0 13px;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
}

.search-icon {
    width: 38px;
    height: 32px;
    margin-right: 4px;
    border: 0;
    color: #fff;
    background: var(--blue);
    cursor: pointer;
}

.nav-clock {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40px;
    padding: 6px 11px;
    border: 1px solid rgba(242, 193, 78, 0.62);
    border-radius: 6px;
    color: #fffdf6;
    background: rgba(23, 23, 23, 0.28);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.nav-clock span {
    color: var(--yellow);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    padding: 7px 10px;
    border: 2px solid currentColor;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.pill-category {
    color: #fff;
    border-color: var(--red);
    background: var(--red);
}

.pill-muted {
    color: var(--paper-2);
    border-color: rgba(255, 253, 246, 0.5);
    background: rgba(23, 23, 23, 0.64);
}

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

.pill-ghost {
    color: inherit;
    background: transparent;
}

.hero {
    display: grid;
    grid-template-columns: minmax(270px, 0.46fr) minmax(0, 1.54fr);
    gap: 22px;
    margin-top: 30px;
}

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

.hero-card {
    position: relative;
    display: block;
    min-height: 500px;
    overflow: hidden;
    border: 3px solid var(--ink);
    border-radius: 6px;
    background: var(--ink);
    box-shadow: var(--shadow), 9px 9px 0 rgba(22, 58, 103, 0.16);
}

.hero-card::before {
    content: "PORTADA";
    position: absolute;
    z-index: 3;
    top: 16px;
    right: 16px;
    padding: 9px 12px;
    color: var(--ink);
    border: 2px solid var(--ink);
    background: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

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

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

.hero-card-media.placeholder {
    background:
        linear-gradient(135deg, rgba(22, 58, 103, 0.88), rgba(39, 111, 95, 0.78)),
        repeating-linear-gradient(45deg, transparent 0 14px, rgba(255, 253, 246, 0.14) 14px 16px);
}

.hero-card-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14, 20, 28, 0.96) 0%, rgba(14, 20, 28, 0.76) 50%, rgba(14, 20, 28, 0.14) 100%),
        linear-gradient(180deg, rgba(14, 20, 28, 0.06), rgba(14, 20, 28, 0.82));
}

.hero-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
    padding: 32px;
    color: #fffdf6;
}

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

.hero-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-card-title {
    display: -webkit-box;
    max-width: 880px;
    margin: 0;
    overflow: hidden;
    color: #fffdf6;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 800;
    line-height: 0.92;
    text-transform: uppercase;
    -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: 690px;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 253, 246, 0.84);
    font-size: 17px;
    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;
    padding: 11px 15px;
    color: #fff;
    border: 2px solid var(--ink);
    background: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.hero-sidebar {
    order: -1;
    align-self: start;
    max-height: 500px;
    overflow: hidden;
    border: 3px solid var(--ink);
    background: #fffdf6;
    box-shadow: 7px 7px 0 rgba(242, 193, 78, 0.4);
}

.ticker-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-content: stretch;
    gap: 12px;
    padding: 13px;
    border-bottom: 3px solid var(--ink);
    background: var(--blue-soft);
}

.ticker-sub {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.ticker-list {
    display: flex;
    flex-direction: column;
    max-height: 428px;
    overflow-y: auto;
}

.ticker-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px 14px;
    border-bottom: 1px solid var(--line);
}

.ticker-dot {
    width: 18px;
    height: 18px;
    margin-top: 0;
    border: 3px solid var(--ink);
    background: var(--yellow);
    transform: rotate(45deg);
}

.ticker-title {
    padding-left: 2px;
    font-weight: 900;
    line-height: 1.28;
}

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

.filters {
    margin-top: 30px;
    padding: 12px;
    border: 3px solid var(--ink);
    background: #fffdf6;
    box-shadow: 6px 6px 0 rgba(39, 111, 95, 0.16);
}

.filters-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filters-label {
    margin: 0;
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 8px 11px;
    border: 2px solid var(--ink);
    color: var(--ink);
    background: #fff;
    font-size: 13px;
    font-weight: 900;
}

.chip-active,
.chip:hover {
    color: #fff;
    background: var(--blue);
}

.block {
    margin: 34px 0;
}

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

.block-head h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
}

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

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

.highlight-card,
.article-card,
.related-card {
    overflow: hidden;
    border: 3px solid var(--ink);
    border-radius: 6px;
    background: #fffdf6;
    box-shadow: 6px 6px 0 rgba(23, 23, 23, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.highlight-card:hover,
.article-card:hover,
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 0 rgba(200, 50, 44, 0.18);
}

.highlight-media,
.highlight-media img,
.highlight-media.placeholder {
    display: block;
    width: 100%;
    height: 178px;
}

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

.highlight-media.placeholder,
.article-card-image.placeholder,
.article-hero-media.placeholder {
    background:
        linear-gradient(135deg, var(--blue), var(--green)),
        repeating-linear-gradient(135deg, rgba(255, 253, 246, 0.16) 0 8px, transparent 8px 16px);
}

.placeholder-pattern {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, transparent 0 58%, rgba(242, 193, 78, 0.82) 58% 64%, transparent 64%),
        linear-gradient(0deg, transparent 0 62%, rgba(200, 50, 44, 0.72) 62% 68%, transparent 68%);
}

.highlight-body {
    padding: 14px;
}

.highlight-body h3 {
    margin: 11px 0 0;
    color: var(--ink);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
}

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

.article-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.article-card:nth-child(6n+1) {
    grid-column: span 2;
    grid-row: span 2;
}

.article-card-image,
.article-card-image img,
.article-card-image.placeholder {
    display: block;
    width: 100%;
    height: 150px;
}

.article-card:nth-child(6n+1) .article-card-image,
.article-card:nth-child(6n+1) .article-card-image img,
.article-card:nth-child(6n+1) .article-card-image.placeholder {
    height: 260px;
}

.article-card-image img {
    object-fit: cover;
}

.article-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 13px;
}

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

.article-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.article-card-date {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.article-card-title {
    margin: 0;
    color: var(--ink);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
}

.article-card:nth-child(6n+1) .article-card-title {
    font-size: 33px;
}

.article-card-snippet {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.read-more {
    margin-top: auto;
    color: #fff;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 28px 0 0;
    padding: 12px;
    border: 3px solid var(--ink);
    background: #fffdf6;
}

.page-link,
.page-gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 2px solid var(--ink);
    font-weight: 900;
}

.page-link {
    color: var(--ink);
    background: #fff;
}

.page-link.current,
.page-link:hover {
    color: #fff;
    background: var(--red);
}

.page-gap {
    color: var(--blue);
    border-color: transparent;
}

.empty-state {
    padding: 22px;
    border: 3px solid var(--ink);
    color: var(--muted);
    background: #fffdf6;
    box-shadow: var(--shadow);
}

.article-page {
    padding-top: 28px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs .current {
    color: var(--ink);
    font-weight: 900;
}

.article-full {
    overflow: hidden;
    border: 3px solid var(--ink);
    border-radius: 6px;
    background: #fffdf6;
    box-shadow: var(--shadow), 8px 8px 0 rgba(22, 58, 103, 0.14);
}

.article-hero {
    position: relative;
    min-height: 420px;
    border-bottom: 3px solid 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-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14, 20, 28, 0.94), rgba(14, 20, 28, 0.62), rgba(14, 20, 28, 0.1)),
        linear-gradient(180deg, rgba(14, 20, 28, 0.08), rgba(14, 20, 28, 0.74));
}

.article-hero-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    min-height: 420px;
    padding: 36px;
    color: #fffdf6;
}

.article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.article-title {
    max-width: 980px;
    margin: 0;
    color: #fffdf6;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(44px, 7vw, 86px);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
}

.article-full-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 36px 42px 18px;
    color: var(--ink);
    font-family: "Merriweather", Georgia, serif;
    font-size: 19px;
    line-height: 1.72;
}

.article-full-content p {
    margin-top: 0;
    margin-bottom: 24px;
}

.article-full-content a {
    color: var(--red);
    text-decoration: underline;
}

.article-back {
    max-width: 920px;
    margin: 14px auto 34px;
    padding: 0 42px;
}

.related {
    margin-top: 28px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.related-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
}

.related-card h3 {
    margin: 0;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 23px;
    line-height: 1;
    text-transform: uppercase;
}

.site-footer {
    position: relative;
    margin-top: 72px;
    color: #fffdf6;
    border-top: 4px solid var(--ink);
    background:
        linear-gradient(135deg, rgba(242, 193, 78, 0.16) 0 22%, transparent 22% 100%),
        linear-gradient(90deg, #101010 0%, #142b4b 50%, #8e221f 100%);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255, 253, 246, 0.055) 0 1px, transparent 1px 42px),
        linear-gradient(110deg, transparent 0 58%, rgba(242, 193, 78, 0.16) 58% 62%, transparent 62%);
    pointer-events: none;
}

.footer-signal-band {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 253, 246, 0.22);
    background: rgba(23, 23, 23, 0.36);
}

.footer-signal-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.footer-signal-label {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-region-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.footer-region-track span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 253, 246, 0.22);
    border-radius: 6px;
    color: rgba(255, 253, 246, 0.9);
    background: rgba(255, 253, 246, 0.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
}

.footer-console {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(360px, 1.2fr) minmax(230px, 0.72fr);
    gap: 22px;
    padding-top: 38px;
    padding-bottom: 38px;
}

.footer-identity,
.footer-board,
.footer-brief {
    border: 2px solid rgba(255, 253, 246, 0.22);
    border-radius: 8px;
    background: rgba(255, 253, 246, 0.08);
    backdrop-filter: blur(8px);
}

.footer-identity {
    display: grid;
    align-content: space-between;
    min-height: 252px;
    padding: 22px;
}

.footer-logo-stack {
    display: flex;
    flex-direction: column;
    color: #fffdf6;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: clamp(38px, 4.4vw, 60px);
    font-weight: 800;
    line-height: 0.78;
    text-transform: uppercase;
}

.footer-logo-stack span:last-child {
    color: var(--yellow);
    transform: translateX(34px);
}

.footer-identity p {
    max-width: 420px;
    margin: 20px 0;
    color: rgba(255, 253, 246, 0.76);
    line-height: 1.5;
}

.footer-frequency {
    display: inline-grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 10px 12px;
    border: 1px solid rgba(242, 193, 78, 0.46);
    border-radius: 6px;
    background: rgba(23, 23, 23, 0.32);
}

.footer-frequency span {
    color: rgba(255, 253, 246, 0.7);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-frequency strong {
    color: var(--yellow);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 30px;
    line-height: 1;
}

.footer-board {
    padding: 18px;
}

.footer-board-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 253, 246, 0.24);
}

.footer-board-head span {
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-board-head strong {
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
}

.footer-route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.footer-route-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 13px 14px;
    border: 2px solid rgba(255, 253, 246, 0.2);
    border-radius: 6px;
    color: #fffdf6;
    background: rgba(255, 253, 246, 0.07);
    font-weight: 900;
    text-transform: uppercase;
}

.footer-route-grid a::after {
    content: ">";
    color: var(--yellow);
}

.footer-route-grid a:hover {
    color: var(--ink);
    border-color: var(--yellow);
    background: var(--yellow);
}

.footer-route-grid a:hover::after {
    color: var(--ink);
}

.footer-brief {
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.footer-brief-kicker {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 10px;
    border: 2px solid var(--yellow);
    border-radius: 4px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-brief-row {
    display: grid;
    gap: 4px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 253, 246, 0.2);
}

.footer-brief-row span {
    color: rgba(255, 253, 246, 0.62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-brief-row strong {
    color: #fffdf6;
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 30px;
    line-height: 0.95;
    text-transform: uppercase;
}

.footer-bottom a {
    color: #fffdf6;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 253, 246, 0.24);
    background: rgba(23, 23, 23, 0.28);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 15px;
    padding-bottom: 17px;
    color: rgba(255, 253, 246, 0.7);
}

@media (max-width: 1120px) {
    .nav-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "menu"
            "tools";
    }

    .site-logo,
    .site-nav,
    .nav-tools {
        justify-self: stretch;
        width: 100%;
    }

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

    .nav-tools {
        grid-template-columns: minmax(0, 1fr) auto;
    }

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

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

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

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

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

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

    .article-card:nth-child(6n+1) {
        grid-column: auto;
        grid-row: auto;
    }
}

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

    .topbar .container,
    .topbar-left,
    .filters-group,
    .block-head,
    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar-right {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .site-logo {
        grid-template-columns: 42px auto;
    }

    .logo-orb {
        width: 42px;
        height: 42px;
        border-width: 3px;
    }

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

    .logo-kicker {
        grid-column: 1 / -1;
    }

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

    .nav-tools {
        grid-template-columns: 1fr;
    }

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

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

    .hero-card-title {
        font-size: 42px;
    }

    .hero-card-meta {
        padding-right: 112px;
    }

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

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

    .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: 44px;
    }

    .footer-console {
        gap: 14px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .footer-route-grid,
    .footer-region-track {
        grid-template-columns: 1fr;
    }

    .footer-logo-stack {
        font-size: 52px;
    }

    .footer-logo-stack span:last-child {
        transform: translateX(22px);
    }
}
