@font-face {
    font-family: "Barlow Condensed VHR";
    src: url("/assets/fonts/BarlowCondensed-ExtraBoldItalic.ttf") format("truetype");
    font-style: italic;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "Bebas Neue VHR";
    src: url("/assets/fonts/BebasNeue-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Bungee VHR";
    src: url("/assets/fonts/Bungee-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Fugaz One VHR";
    src: url("/assets/fonts/FugazOne-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

: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: 72px;
    gap: 26px;
}

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

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

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

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

.brand-copy strong {
    font-family: "Bebas Neue VHR", Impact, sans-serif;
    font-size: 24px;
    font-weight: 400;
    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 {
    --title-delay: 0s;
    animation-delay: 0s;
}

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

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

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

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

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

.hero-slide--newsroom {
    --title-delay: -4s;
    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-family: "Bebas Neue VHR", Impact, sans-serif;
    font-size: 86px;
    font-weight: 400;
    line-height: 0.91;
    text-transform: uppercase;
    text-wrap: balance;
    animation: vhr-title-cycle 28s infinite;
    animation-delay: var(--title-delay, 0s);
}

@keyframes vhr-title-cycle {
    0% { opacity: 1; transform: translateY(20px); }
    3%, 12% { opacity: 1; transform: translateY(0); }
    14.29%, 100% { opacity: 0; transform: translateY(-8px); }
}

.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: 16px;
    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;
    overflow: hidden;
    border-radius: 22px;
}

.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:not(.hit-tip-feature--page) {
    margin-top: 20px;
}

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

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

.hit-tip-feature--page .hit-tip-inner {
    grid-template-columns: 240px minmax(0, 1fr) auto;
    padding-block: 86px;
}

.hit-tip-cover {
    display: block;
    width: 148px;
    height: 148px;
    aspect-ratio: 1;
    border: 3px solid #fff;
    object-fit: cover;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, .18);
}

.hit-tip-feature--page .hit-tip-cover {
    width: 240px;
    height: 240px;
}

.hit-tip-copy > p:first-child {
    margin: 0 0 9px;
    color: #ffe65b;
    font-family: "Barlow Condensed VHR", Impact, sans-serif;
    font-size: 46px;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    text-shadow: 2px 2px 0 rgba(24, 25, 29, .5);
    text-transform: uppercase;
}

.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-article-shell {
    width: min(calc(100% - 48px), 960px);
}

.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;
    background: #fff;
    color: var(--ink);
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease;
}

.news-text-card-image {
    display: block;
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-text-card-copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

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

.news-text-card:first-child a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 360px;
    border-top: 12px solid var(--vhr-red);
    background: var(--ink);
    color: #fff;
}

.news-text-card:first-child .news-text-card-image {
    height: 100%;
    aspect-ratio: auto;
}

.news-text-card:first-child .news-text-card-copy {
    padding: 38px;
}

.news-text-card:first-child h2 {
    max-width: 1050px;
    font-size: clamp(31px, 3.5vw, 48px);
    line-height: 1.06;
}

.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: 22px 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: 34px;
    color: #4c5660;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.news-article-header {
    display: grid;
    justify-items: start;
    max-width: 960px;
    padding: 0 0 30px;
    color: var(--ink);
}

.news-article-header h1 {
    color: var(--ink);
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.04;
    font-weight: 900;
}

.news-article-header > p {
    max-width: 850px;
    color: #4b5660;
    font-size: 19px;
    line-height: 1.5;
}

.news-article-header .news-card-meta {
    width: 100%;
    margin-bottom: 22px;
    padding-top: 14px;
    border-top: 5px solid var(--vhr-red);
}

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

.news-article-body {
    max-width: 800px;
    margin-inline: auto;
    padding-top: 38px;
}

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

.news-article-body > p:first-child {
    color: #20262c;
    font-size: 21px;
    font-weight: 650;
    line-height: 1.65;
}

.news-article-byline {
    margin-top: 16px;
    color: #59636d;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.news-article-byline a {
    color: inherit;
    text-decoration: none;
}

.news-article-byline a:hover,
.news-article-byline a:focus-visible {
    color: var(--vhr-red);
}

.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;
}

.news-article-image {
    max-width: 960px;
    margin: 0;
}

.news-article-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1680 / 940;
    object-fit: cover;
}

.news-article-image figcaption {
    padding: 9px 0 0;
    color: #68727a;
    font-size: 11px;
    line-height: 1.5;
}

.news-related {
    padding-block: 54px 68px;
    border-top: 1px solid #d9dee2;
    background: #fff;
}

.news-related--boulevard {
    background: #f4f5f6;
}

.news-related h2 {
    margin: 0 0 24px;
    font-size: 29px;
    line-height: 1.2;
}

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

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

.news-related-card {
    min-width: 0;
    background: #fff;
    border: 1px solid #d9dee2;
}

.news-related-card a {
    display: block;
    color: var(--ink);
    text-decoration: none;
}

.news-related-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-related-category {
    display: block;
    margin: 18px 18px 9px;
    color: var(--vhr-red);
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.news-related-card h3 {
    margin: 0 18px 18px;
    font-size: 21px;
    line-height: 1.25;
}

.news-related-card a:hover h3,
.news-related-card a:focus-visible h3 {
    color: var(--vhr-red);
}

.news-related-card small {
    display: block;
    margin: 0 18px 16px;
    color: #68727a;
    font-size: 10px;
}

.fun-feature {
    margin-block: 20px;
    background: #d7ff37;
}

.fun-feature-inner {
    padding-block: 28px 32px;
}

.fun-feature-heading {
    margin-bottom: 22px;
}

.fun-feature-heading .eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 7px 10px;
    background: #192833;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.fun-feature-heading h2 {
    margin: 0;
    color: #192833;
    font-family: "Bungee VHR", Inter, sans-serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.08;
    text-transform: uppercase;
    animation: vhr-fun-pop 5s ease-in-out infinite;
}

@keyframes vhr-fun-pop {
    0%, 72%, 100% { transform: translateY(0); }
    78% { transform: translateY(-5px); }
    84% { transform: translateY(0); }
}

.promi-feature {
    scroll-margin-top: 90px;
    margin-block: 20px;
    padding-block: 32px;
    background: #ffe8ee;
}

.promi-feature-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.promi-feature-heading p {
    margin: 0 0 6px;
    color: #922341;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.promi-feature-heading h2 {
    margin: 0;
    color: var(--vhr-red);
    font-family: "Fugaz One VHR", Impact, sans-serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.08;
    text-transform: uppercase;
}

.promi-feature-heading > a {
    flex-shrink: 0;
    padding-bottom: 5px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    text-underline-offset: 5px;
}

.promi-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 20px;
}

.promi-feature-grid--1 {
    grid-template-columns: minmax(0, 1fr);
}

.promi-story {
    min-width: 0;
    background: #fff;
}

.promi-story--lead {
    grid-row: span 2;
}

.promi-story > a {
    display: block;
    color: var(--ink);
    text-decoration: none;
}

.promi-story img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.promi-feature-grid--1 .promi-story img {
    aspect-ratio: 21 / 9;
}

.promi-story-copy {
    padding: 20px 24px 12px;
}

.promi-story-kicker {
    margin: 0 0 10px;
    color: #a42449;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.promi-story h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.promi-story--lead h3 {
    max-width: 900px;
    font-family: "Barlow Condensed VHR", Impact, sans-serif;
    font-size: 44px;
    font-style: italic;
    font-weight: 800;
}

.promi-story a:hover h3 {
    color: var(--vhr-red);
}

.promi-story-summary {
    max-width: 850px;
    margin: 16px 0 0;
    font-size: 17px;
    line-height: 1.5;
}

.promi-story-more {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    color: var(--vhr-red-dark);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.promi-story-credit {
    margin: 0;
    padding: 0 24px 16px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.fun-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
}

.fun-feature-item {
    min-width: 0;
    overflow: hidden;
    border: 0;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(19, 37, 12, .14);
    color: #192833;
    scroll-margin-top: 90px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.fun-feature-item:hover,
.fun-feature-item:focus-within {
    box-shadow: 0 16px 26px rgba(19, 37, 12, .2);
    transform: translateY(-4px);
}

.fun-feature-item summary {
    display: block;
    cursor: pointer;
    list-style: none;
}

.fun-feature-item summary::-webkit-details-marker {
    display: none;
}

.fun-feature-item summary:focus-visible {
    outline: 3px solid #202833;
    outline-offset: 3px;
}

.fun-feature-item summary img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 180ms ease;
}

.fun-feature-item:first-child summary img {
    object-position: center;
}

.fun-feature-item summary:hover img {
    transform: scale(1.025);
}

.fun-feature-label {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    min-height: 128px;
    align-content: space-between;
    gap: 8px;
    padding: 17px 18px 20px;
}

.fun-feature-label small {
    grid-column: 1 / -1;
    color: #d74712;
    font-size: 11px;
    font-weight: 950;
}

.fun-feature-label strong {
    align-self: end;
    font-family: "Bebas Neue VHR", Impact, sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: .95;
    text-transform: uppercase;
    text-wrap: balance;
    transform-origin: left bottom;
    animation: vhr-card-type-beat 6s ease-in-out infinite;
}

.fun-feature-item:first-child .fun-feature-label strong {
    color: #c53227;
    font-family: "Barlow Condensed VHR", Impact, sans-serif;
    font-size: 35px;
    font-style: italic;
    font-weight: 800;
}

.fun-feature-item:nth-child(2) .fun-feature-label strong {
    animation-delay: -2s;
}

.fun-feature-item--telefon .fun-feature-label strong {
    color: var(--vhr-red);
    font-family: "Fugaz One VHR", Impact, sans-serif;
    font-size: 36px;
    line-height: 1.08;
    animation-delay: -4s;
}

.fun-feature-subtitle {
    display: block;
    margin-top: 8px;
    color: var(--ink);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: none;
}

@keyframes vhr-card-type-beat {
    0%, 76%, 100% { transform: translateY(0); }
    82% { transform: translateY(-4px); }
    88% { transform: translateY(0); }
}

.fun-feature-arrow {
    display: grid;
    width: 34px;
    height: 34px;
    align-self: end;
    place-items: center;
    border-radius: 50%;
    background: #192833;
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.fun-feature-item[open] .fun-feature-arrow {
    transform: rotate(45deg);
}

.fun-feature-panel {
    padding: 18px 18px 21px;
    border-top: 1px solid #e1e6e8;
}

.fun-feature-panel h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.3;
}

.fun-feature-panel p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.fun-feature-panel a {
    display: inline-flex;
    gap: 8px;
    margin-top: 18px;
    border-bottom: 2px solid #d74712;
    color: #bd380b;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.opinion-page {
    display: grid;
    min-height: 60vh;
    align-items: center;
    background: #fff url('/assets/images/vhr-fun-daylight.jpg') center / cover no-repeat;
}

.opinion-page-inner {
    padding-block: 74px 88px;
}

.opinion-page .eyebrow {
    display: inline-block;
    padding: 8px 11px;
    background: #192833;
    color: #fff;
    font-weight: 900;
}

.opinion-page h1 {
    max-width: 750px;
    margin: 20px 0;
    color: #192833;
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 950;
    line-height: 1;
}

.opinion-page-inner > p:not(.eyebrow) {
    max-width: 640px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .9);
    color: #192833;
    font-size: 19px;
    line-height: 1.5;
}

.home-schlager {
    padding-block: 68px 80px;
    background: #f4f5f6;
}

.home-schlager-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.home-schlager-heading .eyebrow {
    margin: 0 0 8px;
    color: var(--vhr-red);
}

.home-schlager-heading h2 {
    margin: 0;
    font-family: "Bebas Neue VHR", Impact, sans-serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.home-schlager-heading > a {
    flex: 0 0 auto;
    padding-bottom: 6px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.home-schlager-heading > a:hover,
.home-schlager-heading > a:focus-visible {
    color: var(--vhr-red);
}

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

.home-schlager-grid--1,
.home-schlager-grid--2 {
    grid-template-columns: 1fr;
}

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

.home-schlager-card:first-child {
    grid-column: 1 / -1;
}

.home-schlager-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid #d9dee2;
    background: #fff;
}

.home-schlager-card > a {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    color: var(--ink);
    text-decoration: none;
}

.home-schlager-card > a > img {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.home-schlager-card-copy {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    padding: 24px;
}

.home-schlager-card h3 {
    margin: 24px 0 0;
    font-size: 27px;
    line-height: 1.13;
}

.home-schlager-card p {
    margin: 14px 0 0;
    color: #59636d;
    font-size: 15px;
    line-height: 1.55;
}

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

.home-schlager-card > a:hover h3,
.home-schlager-card > a:focus-visible h3 {
    color: var(--vhr-red);
}

.home-schlager-credit {
    padding: 0 24px 14px;
    color: #68727a;
    font-size: 10px;
    line-height: 1.4;
}

.home-schlager-card:first-child > a {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    height: 400px;
}

.home-schlager-card:first-child > a > img {
    height: 100%;
    aspect-ratio: auto;
}

.home-schlager-card:first-child .home-schlager-card-copy {
    padding: 34px;
}

.home-schlager-card:first-child h3 {
    font-size: 36px;
}

.image-credits-page {
    min-height: 60vh;
    padding-block: 72px 96px;
    background: #fff;
}

.image-credits-page .site-shell {
    max-width: 800px;
}

.image-credits-page h1 {
    margin: 0 0 36px;
    font-size: 44px;
}

.image-credits-page h2 {
    margin: 0 0 12px;
    font-size: 22px;
}

.image-credits-page p {
    color: #4b5660;
    font-size: 16px;
    line-height: 1.7;
}

.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) {
    .hero-copy h1,
    .hero-copy h2 {
        font-size: 70px;
    }

    .fun-feature-label strong {
        font-size: 32px;
    }

    .fun-feature-item:first-child .fun-feature-label strong {
        font-size: 26px;
    }

    .fun-feature-item--telefon .fun-feature-label strong {
        font-size: 26px;
    }

    .news-related-grid,
    .news-related-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .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,
    .hit-tip-feature--page .hit-tip-inner {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 28px;
    }

    .hit-tip-cover,
    .hit-tip-feature--page .hit-tip-cover {
        width: 110px;
        height: 110px;
    }

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

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

    .home-schlager-card:first-child > a {
        display: flex;
        height: auto;
    }

    .home-schlager-card:first-child > a > img {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 680px) {
    .promi-feature {
        padding-block: 24px;
    }

    .promi-feature-heading {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }

    .promi-feature-heading h2 {
        font-size: 38px;
    }

    .promi-feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .promi-feature-grid--1 .promi-story img {
        aspect-ratio: 16 / 9;
    }

    .promi-story-copy {
        padding: 18px 18px 12px;
    }

    .promi-story--lead h3 {
        font-size: 34px;
    }

    .promi-story-credit {
        padding-inline: 18px;
    }

    .fun-feature-heading h2 {
        font-size: 36px;
    }

    .fun-feature-inner {
        padding-block: 24px 28px;
    }

    .fun-feature-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fun-feature-label {
        min-height: 112px;
        padding: 15px 16px 17px;
    }

    .fun-feature-label strong {
        font-size: 31px;
    }

    .fun-feature-item:first-child .fun-feature-label strong {
        font-size: 29px;
    }

    .fun-feature-item--telefon .fun-feature-label strong {
        font-size: 34px;
    }

    .fun-feature-panel {
        padding-inline: 18px;
    }

    .news-article-shell {
        width: min(calc(100% - 32px), 960px);
    }

    .news-related {
        padding-block: 38px 48px;
    }

    .news-related h2 {
        font-size: 25px;
    }

    .news-related-grid,
    .news-related-grid--four {
        grid-template-columns: 1fr;
    }
    .site-shell {
        width: min(calc(100% - 32px), var(--shell));
    }

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

    .brand {
        gap: 10px;
    }

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

    .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-cover,
    .hit-tip-feature--page .hit-tip-cover {
        width: 152px;
        height: 152px;
        box-shadow: 7px 7px 0 rgba(0, 0, 0, .18);
    }

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

    .hit-tip-copy > p:first-child {
        font-size: 38px;
    }

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

    .metrocore-credit {
        width: 100%;
    }

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

    .news-text-card:first-child a {
        display: flex;
    }

    .news-text-card:first-child .news-text-card-image {
        height: auto;
        aspect-ratio: 16 / 9;
    }

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

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

    .news-text-card-copy,
    .news-text-card:first-child .news-text-card-copy {
        padding: 24px 22px;
    }

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

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

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

    .news-article-body > p:first-child {
        font-size: 19px;
    }

    .home-schlager {
        padding-block: 46px 56px;
    }

    .home-schlager-heading h2 {
        font-size: 40px;
    }

    .home-schlager-grid {
        grid-template-columns: 1fr;
    }

    .home-schlager-card:first-child > a {
        display: flex;
        height: auto;
    }

    .home-schlager-card:first-child > a > img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .home-schlager-card:first-child .home-schlager-card-copy {
        padding: 24px;
    }

    .home-schlager-card:first-child h3 {
        font-size: 29px;
    }

    .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: 58px;
        overflow-wrap: anywhere;
    }

    .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 (max-width: 420px) {
    .hero-copy h1,
    .hero-copy h2 {
        font-size: 48px;
    }

    .fun-feature-heading h2 {
        font-size: 29px;
    }
}

@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);
    }

    .hero-copy h1,
    .hero-copy h2,
    .fun-feature-heading h2,
    .fun-feature-label strong {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
