:root {
    --blue-950: #031b55;
    --blue-900: #06256f;
    --blue-800: #08358f;
    --blue-700: #0b45b7;
    --blue-600: #155bd6;
    --red: #f20d16;
    --ink: #071735;
    --muted: #536079;
    --line: #dce4f2;
    --surface: #ffffff;
    --bg: #f5f7fb;
    --shadow: 0 12px 30px rgba(3, 27, 85, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

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

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

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

.topbar {
    background:
        radial-gradient(circle at 18% 0, rgba(255,255,255,.16), transparent 28%),
        linear-gradient(90deg, #03184d 0%, #07358f 58%, #0b53c4 100%);
    color: #fff;
    font-size: 13px;
    letter-spacing: .01em;
}

.topbar__inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar__info,
.social {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.topbar__info span:nth-child(2)::before {
    content: "◷";
    margin-right: 7px;
}

.topbar__info span:nth-child(3)::before {
    content: "☀";
    margin-right: 7px;
    color: #ffd24a;
}

.topbar__info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar__info span::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin-right: 0;
    background: currentColor;
    opacity: .95;
    -webkit-mask: var(--icon) center / contain no-repeat;
    mask: var(--icon) center / contain no-repeat;
}

.topbar-pill {
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    font-weight: 780;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.topbar-pill--time,
.topbar-pill--temp {
    font-weight: 900;
}

.topbar-pill--temp {
    background: rgba(255,210,74,.16);
    border-color: rgba(255,210,74,.24);
}

.topbar__info span:nth-child(1)::before {
    content: "";
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 2h2v3h6V2h2v3h3a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h3V2Zm13 9H4v9h16v-9ZM4 9h16V7H4v2Z'/%3E%3C/svg%3E");
}

.topbar__info span:nth-child(2)::before {
    content: "";
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm1 3v5.2l3.6 2.1-1 1.7L11 13.3V7h2Z'/%3E%3C/svg%3E");
}

.topbar__info span:nth-child(3)::before,
.topbar__info span:nth-child(4)::before {
    content: "";
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M11 1h2v4h-2V1Zm0 18h2v4h-2v-4ZM3.5 4.9l1.4-1.4 2.8 2.8-1.4 1.4-2.8-2.8Zm12.8 12.8 1.4-1.4 2.8 2.8-1.4 1.4-2.8-2.8ZM1 11h4v2H1v-2Zm18 0h4v2h-4v-2ZM3.5 19.1l2.8-2.8 1.4 1.4-2.8 2.8-1.4-1.4ZM16.3 6.3l2.8-2.8 1.4 1.4-2.8 2.8-1.4-1.4ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E");
    background: #ffd24a;
}

.topbar__info span:nth-child(5)::before {
    content: "";
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a7 7 0 0 1 7 7c0 5.2-7 13-7 13S5 14.2 5 9a7 7 0 0 1 7-7Zm0 2a5 5 0 0 0-5 5c0 2.7 3 7.2 5 9.6 2-2.4 5-6.9 5-9.6a5 5 0 0 0-5-5Zm0 2.8A2.2 2.2 0 1 1 12 11.2 2.2 2.2 0 0 1 12 6.8Z'/%3E%3C/svg%3E");
}

.social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--blue-800);
    transform: translateY(-1px);
}

.site-header {
    background: #fff;
    box-shadow: 0 5px 18px rgba(3, 27, 85, .08);
}

.header-grid {
    min-height: 176px;
    display: grid;
    grid-template-columns: 270px 1fr 330px;
    align-items: center;
    gap: 34px;
}

.brand {
    min-height: 146px;
    display: grid;
    align-items: center;
    justify-items: start;
    max-width: 270px;
}

.brand img {
    display: block;
    width: 260px;
    height: 132px;
    object-fit: contain;
    object-position: center;
    border-radius: 4px;
}

.ad-banner {
    min-height: 96px;
    padding: 20px 28px;
    border-radius: 4px;
    background: linear-gradient(135deg, #06339a, #0a55d6);
    color: #fff;
    display: grid;
    align-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    text-transform: uppercase;
}

.ad-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 30%, rgba(255,255,255,.18), transparent 30%);
}

.ad-banner strong {
    font-size: 25px;
    line-height: 1;
    letter-spacing: .04em;
}

.ad-banner span {
    font-weight: 700;
    margin-top: 7px;
}

.ad-banner small {
    position: absolute;
    right: 20px;
    top: 34px;
    padding: 7px 11px;
    border-radius: 4px;
    background: rgba(255,255,255,.16);
    font-size: 11px;
}

.radio-card {
    display: grid;
    grid-template-columns: 1fr 64px;
    gap: 14px;
    align-items: center;
    min-height: 126px;
    padding: 14px 14px 12px;
    border: 1px solid rgba(8, 53, 143, .12);
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff 0%, #f3f7ff 100%);
    box-shadow: 0 12px 26px rgba(3, 27, 85, .08);
}

.radio-card__title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.radio-card__title img {
    width: 92px;
    height: 44px;
    object-fit: contain;
    flex: 0 0 92px;
    filter: drop-shadow(0 8px 12px rgba(3, 27, 85, .10));
}

.radio-card__title span {
    color: var(--blue-700);
    font-weight: 900;
    display: block;
    font-size: 15px;
}

.radio-card__title strong {
    display: block;
    font-size: 16px;
}

.radio-card__title em {
    display: inline-block;
    margin-top: 4px;
    padding: 4px 9px;
    border-radius: 4px;
    background: var(--blue-700);
    color: #fff;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.radio-play {
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #0d56d7, #07358f);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    position: relative;
    border: 5px solid #edf4ff;
    box-shadow: 0 12px 24px rgba(11, 69, 183, .24), inset 0 1px 0 rgba(255,255,255,.24);
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
    overflow: hidden;
}

.radio-play::before {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M8 5v14l11-7L8 5Z'/%3E%3C/svg%3E");
    width: 22px;
    height: 22px;
    margin-left: 2px;
}

.radio-play::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    pointer-events: none;
}

.radio-play.is-playing {
    background: linear-gradient(145deg, #f53038, #c90811);
}

.radio-play.is-playing::before {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 5h4v14H7V5Zm6 0h4v14h-4V5Z'/%3E%3C/svg%3E");
    margin-left: 0;
}

.radio-play:hover {
    box-shadow: 0 16px 28px rgba(11, 69, 183, .28), inset 0 1px 0 rgba(255,255,255,.28);
    transform: translateY(-2px);
}

.radio-wave {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px;
    padding-left: 82px;
}

.radio-wave span {
    width: 3px;
    height: 12px;
    background: #c8cfdb;
    border-radius: 10px;
}

.radio-wave span:nth-child(2n) { height: 18px; }
.radio-wave span:nth-child(3n) { height: 8px; }
.radio-wave span:nth-child(5n) { height: 22px; }

.main-nav {
    background: var(--blue-900);
    color: #fff;
    box-shadow: 0 8px 20px rgba(3, 27, 85, .18);
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-inner {
    display: flex;
    align-items: center;
    min-height: 56px;
}

.home-button,
.search-button,
.menu-toggle {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--blue-700);
    color: #fff;
    border: 0;
    font-size: 0;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.home-button::before,
.search-button::before,
.menu-toggle::before,
.radio-play::before,
.back-button::before {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    background: currentColor;
    -webkit-mask: var(--icon) center / contain no-repeat;
    mask: var(--icon) center / contain no-repeat;
}

.home-button::before {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m12 3 9 8h-3v9h-5v-6h-2v6H6v-9H3l9-8Zm0 2.7L8 9.2V18h1v-6h6v6h1V9.2l-4-3.5Z'/%3E%3C/svg%3E");
}

.search-button::before {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M10.8 4a6.8 6.8 0 0 1 5.4 10.9l4.4 4.4-1.4 1.4-4.4-4.4A6.8 6.8 0 1 1 10.8 4Zm0 2a4.8 4.8 0 1 0 0 9.6 4.8 4.8 0 0 0 0-9.6Z'/%3E%3C/svg%3E");
}

.menu-toggle::before {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4 6h16v2H4V6Zm0 5h16v2H4v-2Zm0 5h16v2H4v-2Z'/%3E%3C/svg%3E");
}

.radio-play::before {
    width: 24px;
    height: 24px;
    margin-left: 2px;
}

.radio-play.is-playing::before {
    margin-left: 0;
}

.home-button:hover,
.search-button:hover,
.menu-toggle:hover {
    background: var(--blue-600);
}

.search-button {
    margin-left: auto;
    background: transparent;
}

.menu-toggle {
    display: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0 0 0 18px;
}

.main-nav a {
    display: block;
    padding: 18px 15px;
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .01em;
}

.main-nav .home-button,
.main-nav .search-button,
.main-nav .menu-toggle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    padding: 0;
    place-items: center;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    line-height: 0;
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;
}

.main-nav .home-button,
.main-nav .search-button {
    display: grid;
}

.main-nav .menu-toggle {
    display: none;
}

.main-nav .home-button::before,
.main-nav .search-button::before,
.main-nav .menu-toggle::before {
    text-indent: 0;
}

.main-nav li a:hover,
.main-nav li a.active {
    background: rgba(255,255,255,.12);
}

.breaking {
    margin-top: 24px;
    min-height: 78px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 16px 22px;
    overflow: hidden;
}

.breaking strong {
    background: var(--red);
    color: #fff;
    border-radius: 4px;
    padding: 11px 22px;
    font-size: 24px;
}

.siren {
    font-size: 36px;
}

.breaking time {
    color: var(--red);
    border-left: 1px solid #b7c0d0;
    padding-left: 22px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.breaking a {
    border: 1px solid var(--blue-700);
    color: var(--blue-700);
    border-radius: 5px;
    padding: 9px 20px;
    font-weight: 900;
    text-transform: uppercase;
    flex: 0 0 auto;
}

.breaking > a {
    margin-left: auto;
}

.breaking-marquee {
    position: relative;
    flex: 1 1 320px;
    min-width: 0;
    overflow: hidden;
    padding: 0 8px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.breaking-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    min-width: max-content;
    animation: breaking-scroll 18s linear infinite;
    will-change: transform;
}

.breaking-track:hover {
    animation-play-state: paused;
}

.breaking-track a {
    border: 0;
    border-radius: 0;
    padding: 0;
    color: var(--blue-900);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
    text-transform: none;
    white-space: nowrap;
}

.breaking-track a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 28px;
    border-radius: 999px;
    background: var(--red);
    vertical-align: middle;
}

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

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

.lead-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 18px;
    margin-top: 18px;
}

.lead-card,
.ranking,
.section-card,
.sponsors,
.content-page,
.article-page {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(3, 27, 85, .08);
    border: 1px solid rgba(8, 53, 143, .06);
}

.lead-card {
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

.lead-card:hover {
    box-shadow: 0 18px 36px rgba(3, 27, 85, .12);
}

.lead-image {
    display: block;
    position: relative;
    background: #eef3fb;
}

.lead-image img {
    width: 100%;
    height: clamp(320px, 38vw, 430px);
    object-fit: contain;
    object-position: center;
}

.lead-image span,
.tag {
    display: inline-block;
    background: var(--blue-700);
    color: #fff;
    border-radius: 5px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.lead-image span {
    position: absolute;
    top: 24px;
    left: 24px;
}

.lead-content {
    padding: 28px 24px 34px;
}

.lead-content h1 {
    margin: 14px 0 14px;
    color: var(--blue-950);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.16;
    letter-spacing: -0.01em;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.lead-content p {
    margin: 0;
    max-width: 780px;
    color: var(--ink);
    font-size: 19px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 22px 0 26px;
    color: var(--blue-950);
    font-size: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 22px;
    border-radius: 4px;
    background: var(--blue-700);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(11,69,183,.25);
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.button:hover {
    background: var(--blue-800);
    box-shadow: 0 12px 24px rgba(11,69,183,.28);
    transform: translateY(-1px);
}

.outline-button {
    display: block;
    margin-top: 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--blue-700);
    padding: 11px 18px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
}

.ranking {
    padding: 24px 28px 16px;
}

.ranking h2,
.section-title h2 {
    color: var(--blue-900);
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
}

.ranking h2 {
    border-bottom: 2px solid var(--blue-700);
    padding-bottom: 12px;
}

.ranking ol {
    list-style: none;
    counter-reset: ranking;
    margin: 0;
    padding: 0;
}

.ranking li {
    counter-increment: ranking;
    display: grid;
    grid-template-columns: 32px 92px 1fr;
    gap: 14px;
    padding: 18px 0;
    align-items: start;
}

.ranking li::before {
    content: counter(ranking);
    color: var(--blue-700);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.ranking img {
    width: 92px;
    height: 76px;
    object-fit: cover;
    border-radius: 5px;
}

.ranking a {
    font-weight: 900;
    font-size: 15px;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.ranking time {
    grid-column: 3;
    color: var(--muted);
    font-size: 13px;
    margin-top: -20px;
}

.section-card,
.sponsors,
.content-page,
.article-page {
    margin-top: 18px;
    padding: 22px;
}

.section-title {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.section-title::after,
.section-title.centered::before {
    content: "";
    height: 2px;
    background: var(--blue-700);
}

.section-title.centered {
    grid-template-columns: 1fr auto 1fr;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news-card {
    position: relative;
    transition: transform .2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 12px;
}

.news-card .tag {
    position: absolute;
    top: 12px;
    left: 10px;
    font-size: 11px;
    padding: 5px 9px;
}

.news-card h3 {
    color: var(--blue-950);
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 8px;
}

.news-card p {
    margin: 0 0 12px;
    color: var(--ink);
}

.news-card time,
.article-page time {
    color: var(--blue-950);
    font-size: 14px;
}

.sponsor-banner {
    display: block;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.sponsor-banner img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    object-position: center;
    padding: 0;
}

.sponsor-cta {
    width: fit-content;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0;
    padding: 10px 18px;
    border: 1px solid var(--blue-700);
    border-radius: 5px;
    color: var(--blue-700);
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.content-page,
.article-page {
    max-width: 1000px;
}

.internal-actions {
    margin-top: 18px;
}

.back-button {
    width: fit-content;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--blue-800);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(3, 27, 85, .08);
}

.back-button::before {
    --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M10.8 5 4 12l6.8 7 1.4-1.4L7.8 13H20v-2H7.8l4.4-4.6L10.8 5Z'/%3E%3C/svg%3E");
    width: 18px;
    height: 18px;
}

.back-button:hover {
    border-color: var(--blue-700);
    color: #fff;
    background: var(--blue-700);
}

.page-hero {
    padding: 42px 0 20px;
}

.page-hero h1,
.article-page h1 {
    color: var(--blue-950);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.12;
    margin: 0 0 14px;
}

.page-hero p,
.article-page .subtitle {
    color: var(--muted);
    font-size: 20px;
    margin: 0;
}

.radio-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: end;
    padding: 34px 0 22px;
}

.radio-hero .back-button {
    grid-column: 1 / -1;
}

.radio-hero__copy h1 {
    margin: 14px 0 12px;
    color: var(--blue-950);
    font-size: clamp(52px, 7vw, 86px);
    line-height: .98;
    letter-spacing: 0;
}

.radio-hero__copy p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: 22px;
}

.radio-hero__badge {
    min-height: 176px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    justify-items: center;
    text-align: center;
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(238,246,255,.94)),
        radial-gradient(circle at 20% 0, rgba(21, 91, 214, .14), transparent 36%);
    border: 1px solid rgba(13, 86, 215, .12);
    box-shadow: 0 18px 42px rgba(9, 42, 99, .10);
}

.radio-logo-mark {
    width: min(100%, 184px);
    min-height: 70px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(13, 86, 215, .08), 0 12px 28px rgba(9, 42, 99, .10);
}

.radio-logo-mark img,
.radio-player-card__brand img {
    width: 150px;
    max-height: 58px;
    object-fit: contain;
}

.radio-hero__badge strong {
    display: block;
    color: var(--blue-950);
    font-size: 22px;
    line-height: 1.1;
}

.radio-hero__badge span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
}

.radio-studio {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
    margin-bottom: 48px;
}

.radio-player-card,
.radio-info-card {
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(13, 86, 215, .09);
    box-shadow: 0 24px 50px rgba(9, 42, 99, .12);
}

.radio-player-card {
    min-height: 380px;
    padding: 30px 34px 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.radio-player-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 92% 8%, rgba(21, 91, 214, .22), transparent 32%),
        radial-gradient(circle at 8% 86%, rgba(242, 13, 22, .08), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(236,244,255,.84));
    pointer-events: none;
    z-index: -2;
}

.radio-player-card::after {
    content: "";
    position: absolute;
    inset: auto 28px 28px auto;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    border: 1px solid rgba(13, 86, 215, .12);
    box-shadow: inset 0 0 0 26px rgba(255,255,255,.34);
    pointer-events: none;
    z-index: -1;
}

.radio-player-card__brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.radio-player-card__brand img {
    width: 138px;
    padding: 8px 10px;
    border-radius: 7px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(13, 86, 215, .08);
}

.radio-player-card__brand span,
.radio-player-card__brand strong {
    display: block;
}

.radio-player-card__brand span {
    color: var(--blue-700);
    font-size: 12px;
    font-weight: 900;
}

.radio-player-card__brand strong {
    color: var(--blue-950);
    font-size: 18px;
    line-height: 1.15;
}

.radio-player-card__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.radio-player-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.live-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 8px rgba(242, 13, 22, .12), 0 0 22px rgba(242, 13, 22, .35);
}

.radio-player-card__header span {
    color: var(--blue-700);
    font-weight: 900;
    font-size: 13px;
}

.radio-player-card__header h2 {
    margin: 0;
    color: var(--blue-950);
    font-size: clamp(40px, 4.4vw, 56px);
    line-height: 1;
}

.radio-play--large {
    width: 104px;
    height: 104px;
    font-size: 0;
    position: relative;
    z-index: 1;
    border-width: 7px;
    box-shadow: 0 20px 42px rgba(11, 69, 183, .30), inset 0 1px 0 rgba(255,255,255,.30);
}

.radio-player-card__visual {
    min-height: 118px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.28), rgba(255,255,255,.72), rgba(255,255,255,.28)),
        rgba(255,255,255,.46);
    border: 1px solid rgba(13, 86, 215, .08);
}

.radio-eq {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.radio-eq span {
    width: 9px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(180deg, #0d56d7, #9db8ed);
    box-shadow: 0 8px 20px rgba(13, 86, 215, .18);
}

.radio-eq span:nth-child(2n) { height: 52px; }
.radio-eq span:nth-child(3n) { height: 70px; }
.radio-eq span:nth-child(5n) { height: 42px; }

.radio-player-card p {
    margin: 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
    position: relative;
    z-index: 1;
}

.radio-info-card {
    padding: 30px 28px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(180deg, #fff, #f7faff);
}

.radio-info-card h2 {
    margin: 0 0 12px;
    color: var(--blue-950);
    font-size: 28px;
}

.radio-info-card p {
    color: var(--muted);
    margin: 0 0 22px;
}

.article-page {
    margin-bottom: 36px;
}

.article-page .hero-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    border-radius: 7px;
    margin: 24px 0;
}

.article-body {
    max-width: 780px;
    margin: 0 auto;
    font-size: 20px;
}

.article-body p {
    margin: 0 0 22px;
}

.article-body h2 {
    color: var(--blue-950);
    margin-top: 34px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid label {
    display: grid;
    gap: 7px;
    color: var(--blue-950);
    font-weight: 800;
}

.form-grid label.full {
    grid-column: 1 / -1;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 13px 14px;
    font: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.search-form {
    margin-bottom: 18px;
}

.search-summary {
    margin: 14px 0 18px;
    color: var(--muted);
    font-weight: 750;
}

.search-results {
    display: grid;
    gap: 16px;
}

.search-result-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 18px;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(3, 27, 85, .06);
}

.search-result-card__image {
    min-height: 132px;
    border-radius: 6px;
    overflow: hidden;
    background: #eef3fb;
}

.search-result-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-card h2 {
    margin: 8px 0 7px;
    color: var(--blue-950);
    font-size: 22px;
    line-height: 1.2;
}

.search-result-card h2 a:hover {
    color: var(--blue-700);
}

.search-result-card p {
    margin: 0 0 9px;
    color: var(--ink);
}

.search-result-card time {
    color: var(--blue-800);
    font-size: 14px;
    font-weight: 750;
}

.empty-search {
    padding: 20px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    font-weight: 750;
}

.footer {
    margin-top: 40px;
    background: var(--blue-950);
    color: #fff;
    padding: 36px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

.footer img {
    width: 210px;
    background: #fff;
    border-radius: 5px;
    padding: 8px;
}

.footer a {
    display: block;
    margin-top: 8px;
    color: #dbe7ff;
}

@media (max-width: 1050px) {
    .header-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 0;
    }

    .brand img {
        width: 260px;
        height: 132px;
        object-fit: contain;
    }

    .lead-layout {
        grid-template-columns: 1fr;
    }

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

    .main-nav ul {
        gap: 0;
        overflow-x: auto;
    }

    .radio-hero,
    .radio-studio {
        grid-template-columns: 1fr;
    }

    .radio-hero__badge {
        justify-items: start;
        text-align: left;
    }
}

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

    .topbar__inner,
    .topbar__info {
        justify-content: center;
        gap: 8px;
        text-align: center;
    }

    .topbar {
        font-size: 12px;
    }

    .topbar-pill {
        min-height: 31px;
        padding: 6px 9px;
    }

    .social {
        display: none;
    }

    .ad-banner {
        min-height: 86px;
    }

    .brand {
        min-height: 128px;
    }

    .brand img {
        width: 230px;
        height: 118px;
        object-fit: contain;
    }

    .ad-banner strong {
        font-size: 22px;
    }

    .ad-banner small {
        display: none;
    }

    .radio-card {
        grid-template-columns: 1fr 58px;
        min-height: 110px;
        padding: 12px;
    }

    .radio-card__title img {
        width: 82px;
        height: 40px;
        flex-basis: 82px;
    }

    .radio-play {
        width: 56px;
        height: 56px;
        border-width: 4px;
    }

    .radio-wave {
        padding-left: 0;
    }

    .menu-toggle {
        display: grid;
    }

    .main-nav ul {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 56px;
        background: var(--blue-900);
        padding: 8px 14px 18px;
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav ul.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 12px;
    }

    .breaking {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .breaking a {
        margin-left: 0;
    }

    .breaking time {
        border-left: 0;
        padding-left: 0;
    }

    .lead-image img {
        height: clamp(260px, 68vw, 360px);
    }

    .lead-content {
        padding: 22px 18px 26px;
    }

    .lead-content p,
    .article-body {
        font-size: 18px;
    }

    .ranking {
        padding: 20px 16px;
    }

    .ranking li {
        grid-template-columns: 28px 78px 1fr;
        gap: 10px;
    }

    .ranking img {
        width: 78px;
        height: 66px;
    }

    .cards-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-banner img {
        height: auto;
        min-height: 120px;
        padding: 0;
    }

    .sponsor-cta {
        width: 100%;
    }

    .radio-hero {
        padding-top: 24px;
    }

    .radio-hero__copy h1 {
        font-size: 44px;
    }

    .radio-hero__copy p {
        font-size: 18px;
    }

    .radio-player-card {
        grid-template-columns: 1fr;
        padding: 24px 18px;
        gap: 20px;
    }

    .radio-player-card__brand {
        align-items: flex-start;
    }

    .radio-player-card__brand img {
        width: 120px;
    }

    .radio-player-card__main {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .radio-play--large {
        width: 82px;
        height: 82px;
        font-size: 30px;
        justify-self: start;
        border-width: 6px;
    }

    .radio-player-card__visual {
        min-height: 86px;
    }

    .radio-eq {
        height: 64px;
        justify-content: flex-start;
        overflow: hidden;
        max-width: 100%;
    }

    .radio-eq span {
        width: 7px;
        gap: 6px;
    }

    .radio-info-card {
        padding: 22px 18px;
    }

    .search-result-card {
        grid-template-columns: 1fr;
    }

    .search-result-card__image {
        min-height: 190px;
    }
}

/* Icon polish */
.main-nav .home-button,
.main-nav .search-button,
.main-nav .menu-toggle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    padding: 0;
    place-items: center;
    flex: 0 0 56px;
    line-height: 0;
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;
}

.main-nav .home-button,
.main-nav .search-button {
    display: grid;
}

.main-nav .menu-toggle {
    display: none;
}

.main-nav .home-button::before,
.main-nav .search-button::before,
.main-nav .menu-toggle::before {
    width: 24px;
    height: 24px;
    text-indent: 0;
    position: relative;
    top: 1px;
    margin: 0;
}

.main-nav .search-button {
    margin-left: auto;
}

.radio-play,
.radio-play--large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;
    padding: 0;
}

.radio-play::before {
    width: 22px;
    height: 22px;
    margin: 0;
    text-indent: 0;
    transform: translateX(1px);
}

.radio-play.is-playing::before {
    margin: 0;
    transform: translateX(0);
}

.radio-play--large::before {
    width: 30px;
    height: 30px;
    margin: 0;
    transform: translateX(2px);
}

.radio-play--large.is-playing::before {
    transform: translateX(0);
}

@media (max-width: 720px) {
    .main-nav .menu-toggle {
        display: grid;
    }
}
