:root {
    --vhr-red: #d52f29;
    --vhr-red-dark: #b82436;
    --ink: #18191d;
    --muted: #676b73;
    --line: #dedfe3;
    --paper: #ffffff;
    --soft: #f4f5f6;
    --shell: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0;
}

a {
    color: inherit;
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 14px;
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-160%);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(108deg, #ec3515 0%, #d92f25 42%, #c2293b 100%);
    border-bottom: 1px solid var(--vhr-red-dark);
    color: #fff;
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: 88px;
    gap: 34px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand {
    flex: 0 0 auto;
    gap: 14px;
}

.brand img {
    width: 64px;
    height: 64px;
}

.brand-copy {
    display: grid;
    gap: 3px;
}

.brand-copy strong {
    font-size: 20px;
    line-height: 1;
}

.brand-copy span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
}

.desktop-nav {
    display: flex;
    align-self: stretch;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.desktop-nav > a,
.nav-group-trigger {
    position: relative;
    display: grid;
    align-items: center;
    align-self: stretch;
    color: #fff;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 750;
    padding: 0;
    text-decoration: none;
}

.desktop-nav > a::after,
.nav-group-trigger::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: #fff;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a.is-active::after,
.nav-group:hover .nav-group-trigger::after,
.nav-group:focus-within .nav-group-trigger::after,
.nav-group.is-active .nav-group-trigger::after {
    transform: scaleX(1);
}

.nav-group {
    position: relative;
    display: flex;
    align-self: stretch;
    align-items: center;
}

.nav-group-trigger {
    display: flex;
    gap: 7px;
}

.nav-group-trigger span {
    font-size: 15px;
    transition: transform 160ms ease;
}

.nav-group:hover .nav-group-trigger span,
.nav-group:focus-within .nav-group-trigger span {
    transform: rotate(180deg);
}

.nav-submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    display: grid;
    min-width: 208px;
    padding: 8px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--vhr-red);
    border-radius: 0 0 4px 4px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
    visibility: hidden;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.nav-submenu a {
    padding: 12px 13px;
    border-radius: 2px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a.is-active {
    background: var(--soft);
    color: var(--vhr-red);
}

.station-button,
.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--vhr-red);
    border-radius: 4px;
    background: var(--vhr-red);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease;
}

.site-header .station-button {
    gap: 8px;
    border-color: #fff;
    background: #fff;
    color: var(--vhr-red-dark);
}

.site-header .station-button:hover,
.site-header .station-button:focus-visible {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.station-button:hover,
.station-button:focus-visible,
.primary-action:hover,
.primary-action:focus-visible {
    border-color: var(--vhr-red-dark);
    background: var(--vhr-red-dark);
}

.mobile-menu {
    display: none;
    position: relative;
    margin-left: auto;
}

.mobile-menu > summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 4px;
    cursor: pointer;
    list-style: none;
}

.mobile-menu > summary::-webkit-details-marker {
    display: none;
}

.mobile-menu > summary span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
}

.mobile-menu nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 32px));
    padding: 8px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--vhr-red);
    border-radius: 4px;
    background: var(--paper);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.mobile-menu nav a {
    padding: 13px 12px;
    border-radius: 2px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible,
.mobile-menu nav a.is-active {
    background: var(--soft);
    color: var(--vhr-red);
}

.mobile-submenu {
    border-block: 1px solid #eceef0;
}

.mobile-submenu summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 12px;
    color: var(--ink);
    cursor: pointer;
    font-size: 15px;
    font-weight: 750;
    list-style: none;
}

.mobile-submenu summary::-webkit-details-marker {
    display: none;
}

.mobile-submenu summary span {
    color: var(--vhr-red);
    font-size: 20px;
    line-height: 1;
}

.mobile-submenu[open] summary span {
    transform: rotate(45deg);
}

.mobile-submenu > div {
    display: grid;
    padding: 0 0 7px 12px;
}

.mobile-submenu > div a {
    padding-block: 10px;
}

.brand-stage {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    color: #fff;
}

.hero-slider {
    position: relative;
    height: min(720px, calc(100vh - 88px));
    min-height: 630px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: vhr-hero-cycle 28s infinite;
}

.hero-slide--studio {
    animation-delay: 0s;
}

.hero-slide--app {
    animation-delay: -24s;
}

.hero-slide--roadshow {
    animation-delay: -20s;
}

.hero-slide--rooftop {
    animation-delay: -16s;
}

.hero-slide--roadtrip {
    animation-delay: -12s;
}

.hero-slide--morning {
    animation-delay: -8s;
}

.hero-slide--newsroom {
    animation-delay: -4s;
}

@keyframes vhr-hero-cycle {
    0%, 12% {
        opacity: 1;
        visibility: visible;
    }
    14.29%, 98.5% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 17, 20, 0.9) 0%, rgba(16, 17, 20, 0.7) 32%, rgba(16, 17, 20, 0.2) 62%, rgba(16, 17, 20, 0.04) 100%);
}

.hero-slide-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    padding-top: clamp(64px, 9vh, 104px);
}

.hero-copy {
    width: min(100%, 640px);
}

.hero-kicker {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.hero-copy h1,
.hero-copy h2 {
    max-width: 620px;
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 6.3vw, 86px);
    line-height: 0.95;
    text-wrap: balance;
}

.hero-copy > p:not(.hero-kicker) {
    max-width: 560px;
    margin: 22px 0 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    font-weight: 650;
    line-height: 1.45;
}

.hero-action {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.hero-action span {
    color: var(--vhr-red);
}

.hero-live-shell {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    z-index: 5;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.live-player {
    width: min(100%, 540px);
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-top: 4px solid var(--vhr-red);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.live-player-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-player-heading strong {
    color: var(--vhr-red-dark);
    font-size: 13px;
    font-weight: 900;
}

.live-player-heading > span:last-child:not(.live-indicator) {
    overflow: hidden;
    color: #44484f;
    font-size: 13px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8d919a;
}

.live-player.is-online .live-indicator {
    background: #38b86a;
    box-shadow: 0 0 0 5px rgba(56, 184, 106, 0.16);
}

.live-player p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.live-player audio {
    display: block;
    width: 100%;
    height: 44px;
    margin-top: 14px;
}

.hero-progress {
    display: grid;
    width: 258px;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    padding-bottom: 8px;
}

.hero-support-actions {
    display: grid;
    justify-items: end;
    gap: 18px;
}

.hero-request-button {
    display: flex;
    width: 288px;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 16px 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    background: var(--vhr-red);
    color: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
    text-decoration: none;
    transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hero-request-button > span:first-child {
    display: grid;
    gap: 3px;
}

.hero-request-button small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 10px;
    font-weight: 850;
}

.hero-request-button strong {
    font-size: 16px;
    font-weight: 900;
}

.hero-request-arrow {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    font-size: 22px;
}

.hero-request-button:hover,
.hero-request-button:focus-visible {
    background: var(--vhr-red-dark);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
    transform: translateY(-2px);
}

.hero-progress span {
    height: 4px;
    background: rgba(255, 255, 255, 0.42);
    animation: vhr-progress-cycle 28s infinite;
}

.hero-progress span:nth-child(2) {
    animation-delay: -24s;
}

.hero-progress span:nth-child(3) {
    animation-delay: -20s;
}

.hero-progress span:nth-child(4) {
    animation-delay: -16s;
}

.hero-progress span:nth-child(5) {
    animation-delay: -12s;
}

.hero-progress span:nth-child(6) {
    animation-delay: -8s;
}

.hero-progress span:nth-child(7) {
    animation-delay: -4s;
}

@keyframes vhr-progress-cycle {
    0%, 12% { background: #fff; }
    14.29%, 100% { background: rgba(255, 255, 255, 0.42); }
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--vhr-red);
    font-size: 13px;
    font-weight: 900;
}

.station-section {
    padding-block: 72px 84px;
    background: var(--soft);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.section-heading .eyebrow {
    margin: 0;
}

.section-heading h2 {
    margin: 0;
    font-size: 34px;
}

.station-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.station-entry {
    display: grid;
    min-height: 98px;
    grid-template-columns: 52px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(24, 25, 29, 0.05);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.station-state {
    padding: 6px 8px;
    border-radius: 3px;
    background: var(--soft);
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
}

.station-state.is-online {
    background: #e4f6ea;
    color: #17763a;
}

.station-entry:hover,
.station-entry:focus-visible {
    border-color: var(--vhr-red);
    box-shadow: 0 14px 32px rgba(24, 25, 29, 0.1);
    transform: translateY(-2px);
}

.station-entry.is-current {
    border-color: var(--vhr-red);
    box-shadow: inset 4px 0 0 var(--vhr-red);
}

.station-mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: var(--vhr-red);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.station-entry strong,
.station-entry small {
    display: block;
}

.station-entry strong {
    font-size: 18px;
}

.station-entry small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.station-arrow {
    color: var(--vhr-red);
    font-size: 24px;
}

.site-footer {
    position: relative;
    border-top: 0;
    background: var(--paper);
    color: var(--ink);
}

.site-footer::before {
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ec3515 0%, #d92f25 42%, #c2293b 100%);
    content: "";
}

.hit-tip-feature {
    border-block: 1px solid rgba(0, 0, 0, .16);
    background: var(--vhr-red);
    color: #fff;
}

.hit-tip-feature--page {
    display: grid;
    min-height: 68vh;
    align-items: center;
}

.hit-tip-inner {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding-block: 34px;
}

.hit-tip-feature--page .hit-tip-inner {
    padding-block: 86px;
}

.hit-tip-emblem {
    display: grid;
    width: 118px;
    height: 118px;
    align-content: center;
    justify-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 4px;
    background: var(--ink);
    box-shadow: 10px 10px 0 rgba(255, 255, 255, .18);
}

.hit-tip-emblem span {
    font-size: 11px;
    font-weight: 900;
}

.hit-tip-emblem strong {
    font-size: 52px;
    line-height: .9;
}

.hit-tip-copy > p:first-child {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, .75);
    font-size: 11px;
    font-weight: 900;
}

.hit-tip-copy h1,
.hit-tip-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.02;
}

.hit-tip-copy h1 span,
.hit-tip-copy h2 span {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
}

.hit-tip-copy > p:last-child {
    max-width: 720px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.5;
}

.hit-tip-action {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.hit-tip-action span {
    color: var(--vhr-red);
    font-size: 20px;
}

.hit-tip-action:hover,
.hit-tip-action:focus-visible {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}

.playlist-page {
    min-height: 72vh;
    padding-block: 78px 92px;
    background: var(--soft);
}

.playlist-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr);
    align-items: start;
    gap: 72px;
}

.playlist-heading {
    padding-top: 22px;
}

.playlist-heading h1 {
    margin: 0;
    font-size: clamp(48px, 7vw, 82px);
    line-height: .95;
}

.playlist-heading > p:last-child {
    max-width: 500px;
    margin: 24px 0 0;
    color: #59626c;
    font-size: 18px;
    line-height: 1.65;
}

.playlist-list,
.playlist-empty {
    border-top: 6px solid var(--vhr-red);
    background: #fff;
    box-shadow: 0 18px 48px rgba(24, 25, 29, .08);
}

.playlist-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    min-height: 76px;
    align-items: center;
    gap: 18px;
    padding: 12px 18px;
    border-bottom: 1px solid #e7e9ec;
}

.playlist-item:last-child {
    border-bottom: 0;
}

.playlist-item.is-live {
    background: var(--ink);
    color: #fff;
}

.playlist-position {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #d9dde1;
    border-radius: 4px;
    color: var(--vhr-red);
    font-size: 13px;
    font-weight: 900;
}

.playlist-item.is-live .playlist-position {
    border-color: var(--vhr-red);
    background: var(--vhr-red);
    color: #fff;
}

.playlist-song {
    min-width: 0;
}

.playlist-song strong,
.playlist-song small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.playlist-song strong {
    font-size: 16px;
}

.playlist-song small {
    margin-top: 5px;
    color: #747c85;
    font-size: 13px;
    font-weight: 700;
}

.playlist-item.is-live .playlist-song small {
    color: #c8cbd0;
}

.playlist-time {
    color: #7b838c;
    font-size: 11px;
    font-weight: 900;
}

.playlist-item.is-live .playlist-time {
    color: #fff;
}

.playlist-empty {
    padding: 28px;
    color: #59626c;
    font-size: 16px;
    line-height: 1.6;
}

.error-page {
    min-height: 62vh;
    display: grid;
    align-items: center;
    background: var(--ink);
    color: #fff;
}

.error-inner {
    padding-block: 80px;
}

.error-inner h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(44px, 7vw, 82px);
    line-height: 0.98;
}

.error-inner > p:not(.eyebrow) {
    margin: 22px 0 30px;
    color: #c9cbd0;
    font-size: 18px;
}

.news-page,
.news-article {
    min-height: 72vh;
    background: #fff;
}

.news-page-inner,
.news-article-shell {
    padding-block: 72px 92px;
}

.news-page-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: end;
    padding: 42px;
    border-bottom: 10px solid var(--ink);
    background: var(--vhr-red);
    color: #fff;
}

.news-page-header h1,
.news-article-header h1 {
    max-width: 920px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(48px, 8vw, 92px);
    line-height: .95;
}

.news-page-header h1 {
    color: #fff;
    font-weight: 950;
}

.news-page-header .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 10px;
    background: var(--ink);
    color: #fff;
}

.news-page-header > div > p:last-child,
.news-article-header > p {
    max-width: 720px;
    margin: 22px 0 0;
    color: #555f69;
    font-size: 18px;
    line-height: 1.65;
}

.news-page-header > div > p:last-child {
    color: #fff;
}

.metrocore-credit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 224px;
    min-height: 48px;
    gap: 24px;
    padding: 0 16px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.metrocore-credit strong {
    color: var(--vhr-red);
    font-size: 20px;
}

.metrocore-credit:hover,
.metrocore-credit:focus-visible {
    border-color: var(--vhr-red);
    background: var(--vhr-red);
}

.metrocore-credit:hover strong,
.metrocore-credit:focus-visible strong {
    color: #fff;
}

.news-empty {
    display: flex;
    align-items: center;
    min-height: 180px;
    gap: 22px;
    margin-top: 24px;
    padding: 34px;
    border: 5px solid var(--ink);
    background: #fff;
}

.news-empty > span {
    display: grid;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    place-items: center;
    background: var(--vhr-red);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.news-empty p {
    margin: 0;
    color: #4d5660;
    font-size: 18px;
}

.news-text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid #cfd4d8;
}

.news-page-header + .news-text-grid {
    margin-top: 24px;
}

.news-text-card {
    min-width: 0;
    border-right: 1px solid #cfd4d8;
    border-bottom: 1px solid #cfd4d8;
}

.news-text-card a {
    display: flex;
    min-height: 310px;
    height: 100%;
    flex-direction: column;
    padding: 34px;
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease;
}

.news-text-card:first-child {
    grid-column: 1 / -1;
}

.news-text-card:first-child a {
    min-height: 360px;
    padding: 44px;
    border-top: 12px solid var(--vhr-red);
    background: var(--ink);
    color: #fff;
}

.news-text-card:first-child h2 {
    max-width: 1050px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
}

.news-text-card:first-child p {
    max-width: 760px;
    color: #d7dade;
    font-size: 17px;
}

.news-text-card a:hover,
.news-text-card a:focus-visible {
    background: var(--ink);
    color: #fff;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--vhr-red);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-text-card h2 {
    margin: 42px 0 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.08;
    font-weight: 950;
}

.news-text-card p {
    margin: 18px 0 0;
    color: #616a73;
    font-size: 15px;
    line-height: 1.6;
}

.news-text-card a:hover p,
.news-text-card a:focus-visible p {
    color: #d7dade;
}

.news-read-more {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 30px;
    color: var(--vhr-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-back {
    display: inline-flex;
    margin-bottom: 58px;
    color: #4c5660;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.news-article-header {
    display: grid;
    justify-items: start;
    max-width: 960px;
    padding: 42px;
    border-top: 12px solid var(--vhr-red);
    border-bottom: 0;
    background: var(--ink);
    color: #fff;
}

.news-article-header h1 {
    color: #fff;
    font-weight: 950;
}

.news-article-header > p {
    color: #d7dade;
}

.news-article-header .news-card-meta {
    width: 100%;
    margin-bottom: 26px;
}

.news-article-header .metrocore-credit {
    margin-top: 34px;
}

.news-article-body {
    max-width: 800px;
    padding-top: 42px;
}

.news-article-body p {
    margin: 0 0 24px;
    color: #2d3339;
    font-size: 19px;
    line-height: 1.78;
}

.news-article-byline {
    margin-top: 16px;
    color: #d7dade;
    font-size: 13px;
    font-weight: 800;
}

.news-article-source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 13px;
    border: 1px solid #d6dce2;
    border-radius: 4px;
    color: var(--vhr-red);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.jobs-page {
    min-height: 62vh;
    display: grid;
    align-items: end;
    background: var(--ink);
    color: #fff;
}

.jobs-hero {
    padding-block: 96px 86px;
}

.jobs-hero h1 {
    max-width: 840px;
    margin: 0;
    font-size: clamp(48px, 8vw, 96px);
    line-height: .96;
}

.jobs-hero > p:not(.eyebrow) {
    max-width: 720px;
    margin: 24px 0 32px;
    color: #d9dce0;
    font-size: 19px;
    line-height: 1.65;
}

.jobs-openings {
    padding-block: 76px 84px;
    background: #fff;
}

.jobs-openings-inner {
    max-width: 860px;
}

.jobs-openings h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 58px);
}

.jobs-openings-inner > p:last-child {
    max-width: 720px;
    margin: 22px 0 0;
    color: #58616b;
    font-size: 17px;
    line-height: 1.7;
}

.request-page {
    min-height: 72vh;
    padding-block: 80px 92px;
    background: var(--soft);
}

.request-layout {
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(480px, 1.22fr);
    gap: 72px;
    align-items: start;
}

.request-copy {
    padding-top: 28px;
}

.request-copy h1 {
    max-width: 560px;
    margin: 0;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .96;
}

.request-copy > p:last-child {
    max-width: 520px;
    margin: 24px 0 0;
    color: #59626c;
    font-size: 18px;
    line-height: 1.65;
}

.request-form {
    padding: 30px;
    border: 1px solid #d8dde2;
    border-top: 6px solid var(--vhr-red);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(24, 25, 29, .08);
}

.request-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.artist-picker {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
}

.artist-picker .primary-action {
    min-height: 44px;
    padding: 10px 18px;
}

.song-request-form {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e1e5e9;
}

.request-step-note {
    margin: 24px 0 0;
    padding: 15px 17px;
    border-left: 4px solid var(--vhr-red);
    background: #f3f5f6;
    color: #59626c;
    font-size: 14px;
    line-height: 1.55;
}

.request-form label {
    display: grid;
    gap: 7px;
    color: #313841;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.request-form label > span {
    color: #87919b;
    font-size: 10px;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #cbd3da;
    border-radius: 4px;
    background: #f8f9fa;
    color: var(--ink);
    font: 700 15px/1.45 Inter, "Helvetica Neue", Arial, sans-serif;
    text-transform: none;
}

.request-form textarea {
    min-height: 112px;
    resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
    outline: 3px solid rgba(213, 47, 41, .13);
    border-color: var(--vhr-red);
    background: #fff;
}

.request-form-wide {
    grid-column: 1 / -1;
}

.form-trap {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
}

.form-message {
    margin: 0 0 20px;
    padding: 13px 15px;
    border-left: 4px solid var(--vhr-red);
    background: #fff0f1;
    color: #8c1721;
    font-size: 14px;
    line-height: 1.5;
}

.form-message.is-success {
    border-left-color: #16834c;
    background: #effaf4;
    color: #11613a;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(300px, 1.6fr) repeat(2, minmax(150px, 1fr));
    gap: 64px;
    padding-block: 64px 58px;
}

.footer-brand {
    align-self: start;
    gap: 16px;
    max-width: 460px;
}

.footer-brand img {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    padding: 8px;
    border-radius: 5px;
    background: linear-gradient(135deg, #ec3515 0%, #c2293b 100%);
}

.footer-brand span {
    display: grid;
    gap: 6px;
}

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

.footer-brand small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.footer-column {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 12px;
}

.footer-column h2 {
    position: relative;
    margin: 0 0 10px;
    padding-bottom: 10px;
    color: var(--vhr-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-column h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: var(--vhr-red);
    content: "";
}

.footer-column a {
    color: var(--ink);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--vhr-red-dark);
    text-decoration: underline;
    text-decoration-color: var(--vhr-red);
    text-underline-offset: 5px;
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
    color: #777b82;
    font-size: 12px;
    font-weight: 650;
}

@media (max-width: 1080px) {
    .desktop-nav,
    .station-button {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-slider {
        height: min(700px, calc(100vh - 72px));
        min-height: 640px;
    }

    .station-list {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 34px;
    }

    .request-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .playlist-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .playlist-heading {
        padding-top: 0;
    }

    .hit-tip-inner {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 28px;
    }

    .hit-tip-emblem {
        width: 100px;
        height: 100px;
    }

    .hit-tip-action {
        grid-column: 2;
        justify-self: start;
    }

    .request-copy {
        padding-top: 0;
    }
}

@media (max-width: 680px) {
    .site-shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    .header-inner {
        min-height: 72px;
        gap: 16px;
    }

    .brand {
        gap: 10px;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .brand-copy span {
        font-size: 10px;
    }

    .hero-slider {
        height: 760px;
        min-height: 760px;
    }

    .request-page {
        padding-block: 54px 64px;
    }

    .playlist-page {
        padding-block: 54px 64px;
    }

    .playlist-heading h1 {
        font-size: 48px;
    }

    .playlist-item {
        grid-template-columns: 46px minmax(0, 1fr) auto;
        gap: 12px;
        padding-inline: 12px;
    }

    .hit-tip-inner,
    .hit-tip-feature--page .hit-tip-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-block: 34px;
    }

    .hit-tip-feature--page {
        min-height: auto;
    }

    .hit-tip-emblem {
        width: 84px;
        height: 84px;
        box-shadow: 7px 7px 0 rgba(255, 255, 255, .18);
    }

    .hit-tip-emblem strong {
        font-size: 38px;
    }

    .hit-tip-copy h1,
    .hit-tip-copy h2 {
        font-size: 30px;
    }

    .hit-tip-action {
        grid-column: auto;
        width: 100%;
        justify-content: space-between;
    }

    .request-form {
        padding: 22px;
    }

    .request-form-grid {
        grid-template-columns: 1fr;
    }

    .artist-picker {
        grid-template-columns: 1fr;
    }

    .artist-picker .primary-action {
        width: 100%;
    }

    .request-form-wide {
        grid-column: auto;
    }

    .news-page-inner,
    .news-article-shell {
        padding-block: 52px 68px;
    }

    .news-page-header {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 28px 22px;
    }

    .news-page-header h1,
    .news-article-header h1 {
        font-size: 50px;
    }

    .metrocore-credit {
        width: 100%;
    }

    .news-text-grid {
        grid-template-columns: 1fr;
    }

    .news-text-card a {
        min-height: 280px;
        padding: 26px 22px;
    }

    .news-text-card:first-child a {
        min-height: 320px;
        padding: 30px 22px;
    }

    .news-text-card:first-child h2 {
        font-size: 42px;
    }

    .news-back {
        margin-bottom: 40px;
    }

    .news-article-header {
        padding: 30px 22px;
    }

    .news-article-body p {
        font-size: 17px;
    }

    .hero-slide > img {
        object-position: 62% center;
    }

    .hero-slide-shade {
        background: linear-gradient(180deg, rgba(16, 17, 20, 0.72) 0%, rgba(16, 17, 20, 0.34) 48%, rgba(16, 17, 20, 0.82) 100%);
    }

    .hero-slide-inner {
        padding-top: 44px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        max-width: 520px;
        font-size: clamp(44px, 13vw, 60px);
    }

    .hero-copy > p:not(.hero-kicker) {
        margin-block: 16px 22px;
        font-size: 16px;
    }

    .hero-live-shell {
        bottom: 18px;
        display: grid;
        gap: 10px;
    }

    .live-player {
        width: 100%;
        padding: 13px 14px;
    }

    .live-player-heading > span:last-child:not(.live-indicator) {
        font-size: 12px;
    }

    .hero-progress {
        display: none;
    }

    .hero-support-actions,
    .hero-request-button {
        width: 100%;
    }

    .hero-support-actions {
        gap: 0;
    }

    .hero-request-button {
        min-height: 62px;
        padding: 10px 12px 10px 16px;
    }

    .station-section {
        padding-block: 54px 64px;
    }

    .section-heading {
        display: grid;
        align-items: start;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .station-entry {
        grid-template-columns: 46px minmax(0, 1fr) auto;
        gap: 13px;
        padding: 15px;
    }

    .station-state {
        display: none;
    }

    .station-mark {
        width: 46px;
        height: 46px;
        font-size: 12px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
        padding-block: 46px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        min-height: 76px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 5px;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }

    .hero-slide,
    .hero-progress span {
        animation-timing-function: steps(1, end);
    }
}
