:root {
    --rd-navy: #12314a;
    --rd-navy-deep: #0a2337;
    --rd-blue-soft: #eaf1f4;
    --rd-cream: #f6f0e5;
    --rd-paper: #fffdf8;
    --rd-white: #ffffff;
    --rd-orange: #e55b2d;
    --rd-orange-dark: #c4461d;
    --rd-ink: #1f2b32;
    --rd-muted: #64737d;
    --rd-border: #dce2e4;
    --rd-max: 1640px;
    --rd-content: 1080px;
    --rd-radius: 22px;
    --rd-shadow: 0 24px 70px rgba(24, 49, 66, .13);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.rd-menu-is-open,
body.rd-menu-is-open {
    overflow: hidden;
}

body.rd-theme {
    margin: 0;
    background: var(--rd-paper);
    color: var(--rd-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.rd-skip-link {
    position: fixed;
    left: 1rem;
    top: -120px;
    z-index: 10000;
    padding: .75rem 1rem;
    background: var(--rd-white);
    color: var(--rd-ink);
    border-radius: 8px;
}

.rd-skip-link:focus {
    top: 1rem;
}

.rd-site-header {
    position: sticky;
    top: 0;
    z-index: 5000;
    background: rgba(255, 253, 248, .96);
    border-bottom: 1px solid rgba(18, 49, 74, .10);
    backdrop-filter: blur(16px);
}

.rd-header-inner,
.rd-broadcast-inner,
.rd-footer-inner,
.rd-section-inner,
.rd-page-shell {
    width: min(calc(100% - 40px), var(--rd-max));
    margin-inline: auto;
}

.rd-header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.rd-logo-area {
    min-width: 0;
    display: flex;
    align-items: center;
}

.rd-logo-area .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.rd-logo-area .custom-logo {
    width: auto;
    height: auto;
    max-height: 58px;
    max-width: min(340px, 48vw);
}

.rd-wordmark {
    display: grid;
    text-decoration: none;
    line-height: 1.1;
}

.rd-wordmark-main {
    color: var(--rd-orange);
    font-size: 1.28rem;
    font-weight: 850;
    letter-spacing: .035em;
}

.rd-wordmark-sub {
    margin-top: .3rem;
    color: var(--rd-muted);
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.rd-menu-toggle {
    position: relative;
    z-index: 5300;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    min-height: 46px;
    padding: .65rem 1rem;
    border: 1px solid rgba(18, 49, 74, .22);
    border-radius: 999px;
    background: var(--rd-white);
    color: var(--rd-navy);
    font: inherit;
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(18,49,74,.08);
}

.rd-menu-icon {
    width: 23px;
    display: grid;
    gap: 5px;
}

.rd-menu-icon span {
    height: 2px;
    width: 100%;
    background: currentColor;
    border-radius: 99px;
    transition: transform .25s ease, opacity .2s ease;
}

.rd-menu-toggle[aria-expanded="true"] .rd-menu-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.rd-menu-toggle[aria-expanded="true"] .rd-menu-icon span:nth-child(2) {
    opacity: 0;
}

.rd-menu-toggle[aria-expanded="true"] .rd-menu-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.rd-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 5100;
    padding-top: 86px;
    background:
        radial-gradient(circle at 83% 15%, rgba(229,91,45,.18), transparent 28%),
        linear-gradient(120deg, #eef3f4 0%, #fffdf8 55%, #f6f0e5 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    overflow-y: auto;
}

.rd-menu-panel[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.rd-menu-panel-inner {
    width: min(calc(100% - 40px), var(--rd-max));
    min-height: calc(100vh - 86px);
    margin-inline: auto;
    padding: clamp(3rem, 7vw, 7rem) 0;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: clamp(3rem, 8vw, 9rem);
}

.rd-kicker {
    margin: 0 0 .75rem;
    color: var(--rd-orange);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.rd-menu,
.rd-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rd-menu {
    display: grid;
}

.rd-menu li {
    border-bottom: 1px solid rgba(18,49,74,.14);
}

.rd-menu a {
    display: block;
    padding: .52rem 0;
    color: var(--rd-navy);
    text-decoration: none;
    font-size: clamp(1.9rem, 4.7vw, 5rem);
    font-weight: 820;
    letter-spacing: -.045em;
    line-height: 1.06;
    transition: color .18s ease, padding-left .18s ease;
}

.rd-menu a:hover,
.rd-menu a:focus {
    color: var(--rd-orange);
    padding-left: .25rem;
}

.rd-menu-story {
    align-self: end;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--rd-navy);
    color: var(--rd-white);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow);
}

.rd-menu-story h2 {
    margin: .2rem 0 .8rem;
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.rd-menu-story p:not(.rd-kicker) {
    color: #d8e3e8;
}

.rd-signal-mark {
    display: block;
    width: 64px;
    height: 64px;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255,255,255,.26);
    border-radius: 50%;
    position: relative;
}

.rd-signal-mark::before,
.rd-signal-mark::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px solid rgba(255,255,255,.32);
    border-radius: 50%;
}

.rd-signal-mark::after {
    inset: 22px;
    background: var(--rd-orange);
    border: 0;
}

.rd-broadcast-bar {
    position: sticky;
    top: 86px;
    z-index: 9100;
    background: var(--rd-navy);
    color: var(--rd-white);
}

.rd-broadcast-bar.is-on-air {
    background: var(--rd-orange);
}

.rd-broadcast-inner {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rd-status {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    white-space: nowrap;
}

.rd-status-dot {
    width: .62rem;
    height: .62rem;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
}

.is-on-air .rd-status-dot {
    background: #baf26f;
    box-shadow: 0 0 0 7px rgba(186,242,111,.18);
    animation: rdPulse 1.8s infinite;
}

@keyframes rdPulse {
    50% { box-shadow: 0 0 0 13px rgba(186,242,111,0); }
}

.rd-now-playing,
.rd-next-broadcast {
    min-width: 0;
    flex: 1;
    display: flex;
    gap: .45rem;
    align-items: baseline;
}

.rd-track,
.rd-next-broadcast strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rd-next-broadcast span {
    opacity: .72;
}

.rd-frequency {
    font-weight: 800;
    white-space: nowrap;
}

.rd-listen-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,.28);
    text-decoration: none;
    font-weight: 850;
    white-space: nowrap;
}

.rd-main {
    min-height: 60vh;
}

.rd-home-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(255,253,248,.98) 0%, rgba(246,240,229,.95) 50%, rgba(234,241,244,.95) 100%);
}

.rd-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18,49,74,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,49,74,.035) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to right, transparent, black 45%);
}

.rd-home-hero-inner {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--rd-max));
    min-height: clamp(560px, 70vh, 780px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: clamp(2rem, 5vw, 6rem);
    align-items: center;
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.rd-home-copy {
    max-width: 1000px;
}

.rd-home-copy h1 {
    margin: 0;
    max-width: 1050px;
    color: var(--rd-navy);
    font-size: clamp(3.6rem, 7.4vw, 7.7rem);
    font-weight: 850;
    letter-spacing: -.06em;
    line-height: .92;
}

.rd-lead {
    max-width: 770px;
    margin: 1.65rem 0 0;
    color: #42535d;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.rd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.rd-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: .8rem 1.3rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 850;
    transition: transform .17s ease, box-shadow .17s ease;
}

.rd-button:hover,
.rd-button:focus {
    transform: translateY(-2px);
}

.rd-button-primary {
    background: var(--rd-orange);
    color: var(--rd-white);
    box-shadow: 0 14px 30px rgba(229,91,45,.22);
}

.rd-button-secondary {
    background: var(--rd-white);
    color: var(--rd-navy);
    border: 1px solid rgba(18,49,74,.18);
}

.rd-hero-card {
    position: relative;
    z-index: 3;
    width: min(100%, 560px);
    margin-top: clamp(2rem, 4vw, 3.25rem);
    padding: clamp(1.35rem, 2.3vw, 2rem);
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(18,49,74,.11);
    border-radius: var(--rd-radius);
    box-shadow: 0 16px 45px rgba(18,49,74,.10);
    backdrop-filter: blur(10px);
}

.rd-hero-card strong {
    display: block;
    color: var(--rd-navy);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.18;
}

.rd-hero-card p:not(.rd-kicker) {
    color: var(--rd-muted);
}

.rd-hero-card a {
    color: var(--rd-orange-dark);
    font-weight: 850;
    text-decoration: none;
}


.rd-home-hero-map {
    position: absolute;
    right: -3%;
    top: 3%;
    width: min(50vw, 820px);
    aspect-ratio: 760 / 620;
    opacity: .9;
}

.rd-europe-map {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.rd-map-rings circle {
    fill: none;
    stroke: rgba(18,49,74,.10);
    stroke-width: 1.5;
}

.rd-europe-shape {
    fill: rgba(234,241,244,.56);
    stroke: rgba(18,49,74,.18);
    stroke-width: 2;
}

.rd-signal-path {
    fill: none;
    stroke: rgba(229,91,45,.58);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 7 9;
}

.rd-map-pin circle:first-child {
    fill: var(--rd-orange);
    stroke: rgba(255,255,255,.95);
    stroke-width: 4;
    filter: drop-shadow(0 5px 12px rgba(229,91,45,.28));
}

.rd-map-pin circle:last-child {
    fill: var(--rd-white);
}

.rd-pin-elburg circle:first-child {
    fill: var(--rd-navy);
    stroke: var(--rd-orange);
    stroke-width: 5;
}

.rd-home-intro {
    background: var(--rd-white);
}

.rd-section-inner {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.rd-section-heading {
    display: grid;
    grid-template-columns: minmax(0, .55fr) minmax(0, 1.45fr);
    gap: 2rem;
    align-items: start;
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.rd-section-heading h2,
.rd-two-column h2 {
    margin: 0;
    color: var(--rd-navy);
    font-size: clamp(2.5rem, 5vw, 5.4rem);
    letter-spacing: -.055em;
    line-height: .96;
}

.rd-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.rd-feature-card {
    min-height: 310px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--rd-cream);
    border-radius: var(--rd-radius);
    border: 1px solid rgba(18,49,74,.08);
}

.rd-feature-card:nth-child(2) {
    background: var(--rd-blue-soft);
}

.rd-feature-card:nth-child(3) {
    background: var(--rd-navy);
    color: var(--rd-white);
}

.rd-card-number {
    display: inline-flex;
    margin-bottom: 3rem;
    color: var(--rd-orange);
    font-size: .82rem;
    font-weight: 850;
}

.rd-feature-card h3 {
    margin: 0 0 1rem;
    color: var(--rd-navy);
    font-size: clamp(1.7rem, 2.6vw, 2.65rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.rd-feature-card:nth-child(3) h3 {
    color: var(--rd-white);
}

.rd-feature-card p {
    color: var(--rd-muted);
}

.rd-feature-card:nth-child(3) p {
    color: #d5e0e5;
}

.rd-home-content-preview {
    background: var(--rd-cream);
}

.rd-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .65fr);
    gap: clamp(2rem, 8vw, 8rem);
    align-items: start;
}

.rd-two-column > p {
    margin-top: 2rem;
    color: var(--rd-muted);
    font-size: 1.08rem;
}

.rd-page-main {
    background:
        linear-gradient(180deg, var(--rd-blue-soft) 0, var(--rd-paper) 240px);
}

.rd-page-shell {
    padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.rd-page-article {
    width: 100%;
    background: var(--rd-white);
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow);
    overflow: hidden;
}

.rd-page-header {
    padding: clamp(2rem, 5vw, 5rem);
    background: var(--rd-cream);
    border-bottom: 1px solid var(--rd-border);
}

.rd-page-header h1 {
    max-width: 1150px;
    margin: 0;
    color: var(--rd-navy);
    font-size: clamp(2.8rem, 6vw, 6.5rem);
    line-height: .95;
    letter-spacing: -.055em;
}

.rd-entry-content {
    padding: clamp(1.5rem, 4vw, 4rem);
}

.rd-entry-content > :where(p, ul, ol, blockquote, h2, h3, h4, h5, h6) {
    max-width: var(--rd-content);
}

.rd-entry-content h2 {
    color: var(--rd-navy);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.rd-entry-content a {
    color: var(--rd-orange-dark);
}

.rd-entry-content iframe {
    max-width: 100%;
}

.rd-entry-content .alignwide,
.rd-entry-content .alignfull {
    max-width: none;
    width: 100%;
}

.rd-error {
    min-height: 55vh;
    display: grid;
    place-content: center;
    justify-items: start;
}

.rd-error h1 {
    margin: 0 0 1rem;
    color: var(--rd-navy);
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: .95;
}

.rd-footer {
    background: var(--rd-navy-deep);
    color: var(--rd-white);
}

.rd-footer-inner {
    padding: 3.5rem 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
}

.rd-footer-brand {
    display: grid;
}

.rd-footer-brand strong {
    font-size: 1.25rem;
}

.rd-footer-brand span,
.rd-footer-copy {
    color: #b9c9d1;
}

.rd-footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.rd-footer-menu a {
    text-decoration: none;
}

.rd-footer-copy {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.12);
}

.rd-header-actions {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}

.rd-youtube-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(18, 49, 74, .22);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(18,49,74,.08);
    text-decoration: none;
}

.rd-youtube-button svg {
    width: 20px;
    height: 20px;
    display: block;
}

.rd-youtube-button:hover,
.rd-youtube-button:focus-visible {
    border-color: rgba(229, 91, 45, .44);
    box-shadow: 0 10px 26px rgba(18,49,74,.12);
    outline: none;
}

.rd-footer-links-wrap {
    display: grid;
    gap: .7rem;
}

.rd-footer-links-title {
    margin: 0;
    color: #dce8ee;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rd-footer-menu li {
    list-style: none;
}

.rd-footer-youtube-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.rd-footer-youtube-link svg {
    width: 16px;
    height: 16px;
    display: block;
}

@media (max-width: 1000px) {
    .rd-menu-panel-inner,
    .rd-home-hero-inner,
    .rd-section-heading,
    .rd-two-column {
        grid-template-columns: 1fr;
    }

    .rd-menu-story {
        align-self: start;
    }

    .rd-home-hero-map {
        width: 90vw;
        right: -38%;
        top: 10%;
    }

    .rd-home-hero-inner {
        min-height: auto;
    }

    .rd-hero-card {
        max-width: 620px;
        margin: 0;
    }

    .rd-feature-grid {
        grid-template-columns: 1fr;
    }

    .rd-feature-card {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    .rd-header-inner {
        min-height: 74px;
    }

    .rd-logo-area .custom-logo {
        max-height: 44px;
        max-width: 53vw;
    }

    .rd-wordmark-sub,
    .rd-menu-toggle-label {
        display: none;
    }

    .rd-header-actions {
        gap: .42rem;
    }

    .rd-youtube-button {
        width: 42px;
        height: 42px;
    }

    .rd-menu-panel {
        padding-top: 74px;
    }

    .rd-menu-panel-inner {
        min-height: calc(100vh - 74px);
        padding-top: 2rem;
    }

    .rd-menu a {
        font-size: clamp(1.75rem, 9vw, 3rem);
    }

    .rd-broadcast-inner {
        min-height: 62px;
        gap: .7rem;
    }

    .rd-now-playing,
    .rd-next-broadcast {
        display: grid;
        gap: 0;
        line-height: 1.18;
    }

    .rd-next-broadcast span {
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .rd-frequency {
        font-size: .82rem;
    }

    .rd-listen-link {
        padding-left: .7rem;
        font-size: .82rem;
    }

    .rd-home-hero-inner {
        padding: 4.5rem 0;
    }

    .rd-home-copy h1 {
        font-size: clamp(3.15rem, 15vw, 5rem);
    }

    .rd-actions {
        display: grid;
    }

    .rd-button {
        width: 100%;
    }

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

    .rd-footer-menu {
        gap: .8rem;
    }

    .rd-footer-copy {
        grid-column: 1;
    }
}

@media (max-width: 520px) {
    .rd-broadcast-inner {
        flex-wrap: wrap;
        padding: .65rem 0;
    }

    .rd-status {
        width: 100%;
    }

    .rd-frequency {
        margin-left: auto;
    }
}


/* v0.2.1 menu correction */
.rd-menu-panel {
    z-index: 9000;
}

.rd-menu-panel[aria-hidden="false"] {
    display: block;
}

.rd-menu-panel[aria-hidden="true"] {
    display: block;
}

.rd-site-header {
    z-index: 9200;
}

.rd-menu-toggle {
    z-index: 9300;
}

.rd-broadcast-bar {
    z-index: 9100;
}

@media (max-width: 1000px) {
    .rd-home-hero-map {
        width: 94vw;
        right: -35%;
        top: 9%;
    }
}

@media (max-width: 760px) {
    .rd-home-hero-map {
        width: 125vw;
        right: -66%;
        top: 14%;
        opacity: .55;
    }
}

/* v0.3.0 motion and homepage modules */
.rd-europe-shape{animation:rdMapFade 1.1s ease both}
.rd-map-rings circle{transform-origin:center;animation:rdRingIn 1.4s ease both}
.rd-map-rings circle:nth-child(2){animation-delay:.12s}.rd-map-rings circle:nth-child(3){animation-delay:.24s}
.rd-map-pin{opacity:0;transform-box:fill-box;transform-origin:center;animation:rdPinIn .55s ease forwards}
.rd-pin-elburg{animation-delay:.45s}.pin1{animation-delay:.75s}.pin2{animation-delay:.95s}.pin3{animation-delay:1.15s}.pin4{animation-delay:1.35s}
.rd-signal-path{stroke-dasharray:8 10;stroke-dashoffset:90;animation:rdSignalTravel 2.5s linear infinite}
.p2{animation-delay:.45s}.p3{animation-delay:.9s}.p4{animation-delay:1.2s}
.rd-home-hero.is-on-air .rd-pin-elburg{animation:rdPinIn .55s ease .35s forwards,rdElburgPulse 2.2s ease-in-out 1s infinite}
@keyframes rdMapFade{from{opacity:0;transform:scale(.97)}to{opacity:1;transform:scale(1)}}
@keyframes rdRingIn{from{opacity:0;transform:scale(.88)}to{opacity:1;transform:scale(1)}}
@keyframes rdPinIn{from{opacity:0;transform:scale(.3)}to{opacity:1;transform:scale(1)}}
@keyframes rdSignalTravel{to{stroke-dashoffset:0}}
@keyframes rdElburgPulse{0%,100%{filter:drop-shadow(0 0 0 rgba(229,91,45,0))}50%{filter:drop-shadow(0 0 13px rgba(229,91,45,.72))}}

.rd-now-playing-section{background:var(--rd-orange);color:var(--rd-white)}
.rd-now-playing-layout{display:grid;grid-template-columns:1fr auto;gap:2rem;align-items:center}
.rd-now-playing-layout h2{margin:0;font-size:clamp(2.2rem,4.5vw,5rem);line-height:1;letter-spacing:-.045em}
.rd-now-playing-section .rd-kicker{color:rgba(255,255,255,.72)}
.rd-now-playing-meta{display:grid;gap:1rem;justify-items:end}.rd-now-playing-meta>strong{font-size:1.4rem}

.rd-home-modules{background:var(--rd-paper)}
.rd-module-grid{display:grid;grid-template-columns:1.3fr .85fr .85fr;gap:1.25rem}
.rd-module-card{min-height:360px;padding:clamp(1.5rem,3vw,2.6rem);border-radius:var(--rd-radius);border:1px solid rgba(18,49,74,.09);background:var(--rd-white);box-shadow:0 14px 45px rgba(24,49,66,.08);display:flex;flex-direction:column;align-items:flex-start}
.rd-module-card h3{margin:0 0 1rem;color:var(--rd-navy);font-size:clamp(1.8rem,3vw,3.2rem);line-height:1;letter-spacing:-.04em}
.rd-module-card>p:not(.rd-kicker){color:var(--rd-muted)}.rd-module-card>a{margin-top:auto;color:var(--rd-orange-dark);font-weight:850;text-decoration:none}
.rd-module-card-large{background:var(--rd-navy);color:var(--rd-white)}.rd-module-card-large h3{color:var(--rd-white)}
.rd-report-preview{width:100%;margin:1.5rem 0 2rem;padding:1.25rem 0;display:grid;grid-template-columns:1fr auto auto;gap:1rem;border-top:1px solid rgba(255,255,255,.16);border-bottom:1px solid rgba(255,255,255,.16)}
.rd-map-preview-card{background:var(--rd-blue-soft)}
.rd-mini-pins{width:100%;min-height:150px;margin:1rem 0 2rem;position:relative;border-radius:18px;background:radial-gradient(circle at center,rgba(229,91,45,.12),transparent 48%),linear-gradient(rgba(18,49,74,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(18,49,74,.045) 1px,transparent 1px);background-size:auto,28px 28px,28px 28px}
.rd-mini-pins span{position:absolute;width:12px;height:12px;background:var(--rd-orange);border:3px solid var(--rd-white);border-radius:50%;box-shadow:0 0 0 6px rgba(229,91,45,.13)}
.rd-mini-pins span:nth-child(1){left:18%;top:32%}.rd-mini-pins span:nth-child(2){left:42%;top:52%}.rd-mini-pins span:nth-child(3){left:65%;top:23%}.rd-mini-pins span:nth-child(4){left:75%;top:67%}.rd-mini-pins span:nth-child(5){left:31%;top:72%}
.rd-frequency-card{background:var(--rd-cream)}.rd-frequency-card h3{font-size:clamp(3rem,5.6vw,5.5rem)}

.rd-programmes{background:var(--rd-white)}
.rd-programme-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.rd-programme-card{min-height:310px;padding:clamp(1.5rem,3vw,2.5rem);border-radius:var(--rd-radius);background:linear-gradient(145deg,rgba(18,49,74,.98),rgba(10,35,55,.98));color:var(--rd-white);display:flex;flex-direction:column}
.rd-programme-card:nth-child(2){background:linear-gradient(145deg,#e55b2d,#c4461d)}.rd-programme-card:nth-child(3){background:linear-gradient(145deg,#eaf1f4,#dbe7eb);color:var(--rd-navy)}
.rd-programme-card>span{color:rgba(255,255,255,.6);font-weight:850}.rd-programme-card:nth-child(3)>span{color:var(--rd-orange)}
.rd-programme-card h3{margin:auto 0 1rem;font-size:clamp(1.8rem,3vw,3rem);line-height:1;letter-spacing:-.04em}
.rd-programme-card p{margin:0;color:rgba(255,255,255,.72)}.rd-programme-card:nth-child(3) p{color:var(--rd-muted)}

@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}
@media(max-width:1050px){.rd-module-grid,.rd-programme-grid,.rd-now-playing-layout{grid-template-columns:1fr}.rd-now-playing-meta{justify-items:start}}
@media(max-width:760px){.rd-hero-card{width:100%;margin:0}.rd-report-preview{grid-template-columns:1fr;gap:.25rem}}

/* v0.3.1: fixed broadcast bar and unobstructed map */
@media (max-width: 760px) {
    .rd-broadcast-bar { top: 74px; }
    .rd-home-hero-inner { grid-template-columns: 1fr; }
    .rd-hero-card { width: min(100%, 560px); margin-top: 1.75rem; }
}

/* v0.3.2: recognisable Europe map, Elburg origin and tighter hero */
.rd-home-hero-inner {
    min-height: clamp(610px, 72vh, 790px);
    padding-top: clamp(4.2rem, 7vw, 7rem);
    padding-bottom: clamp(3.2rem, 6vw, 5.5rem);
}

.rd-home-copy {
    align-self: center;
}

.rd-hero-card {
    max-width: 480px;
    margin-top: 1.5rem;
    padding: clamp(1.25rem, 2vw, 1.75rem);
}

.rd-home-hero-map {
    width: min(58vw, 860px);
    right: 0;
    top: 2%;
    opacity: .88;
}

.rd-europe-land path {
    fill: rgba(224, 233, 237, .72);
    stroke: rgba(18, 49, 74, .23);
    stroke-width: 2.2;
    vector-effect: non-scaling-stroke;
}

.rd-country-lines path {
    fill: none;
    stroke: rgba(18, 49, 74, .10);
    stroke-width: 1.2;
    vector-effect: non-scaling-stroke;
}

.rd-europe-shape { display: none; }

.rd-map-pin {
    opacity: 0;
    animation: rdPinOpacity .55s ease forwards;
}

.rd-pin-elburg { animation-delay: .35s; }
.pin1 { animation-delay: .7s; }
.pin2 { animation-delay: .9s; }
.pin3 { animation-delay: 1.1s; }
.pin4 { animation-delay: 1.3s; }

.rd-pin-outer {
    fill: var(--rd-white);
    stroke: var(--rd-orange);
    stroke-width: 4;
    vector-effect: non-scaling-stroke;
}

.rd-pin-core { fill: var(--rd-orange); }

.rd-pin-halo {
    fill: rgba(229, 91, 45, .12);
    stroke: rgba(229, 91, 45, .28);
    stroke-width: 2;
    transform-box: fill-box;
    transform-origin: center;
    animation: rdElburgHalo 2.4s ease-in-out infinite;
}

.rd-map-label line {
    stroke: rgba(18, 49, 74, .55);
    stroke-width: 1.5;
}

.rd-map-label text,
.rd-listener-label {
    fill: var(--rd-navy);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.rd-map-label .rd-map-label-sub {
    fill: var(--rd-orange-dark);
    font-size: 9px;
    letter-spacing: .16em;
}

.rd-listener-label {
    opacity: .56;
    font-size: 9px;
}

@keyframes rdPinOpacity {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes rdElburgHalo {
    0%,100% { transform: scale(.8); opacity: .28; }
    50% { transform: scale(1.25); opacity: .7; }
}

.rd-mini-map {
    width: 100%;
    min-height: 155px;
    margin: .75rem 0 1.4rem;
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(rgba(18,49,74,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,49,74,.045) 1px, transparent 1px);
    background-size: 24px 24px;
}

.rd-mini-map svg {
    display: block;
    width: 100%;
    height: 155px;
}

.rd-mini-land,
.rd-mini-uk,
.rd-mini-scandinavia {
    fill: rgba(255,255,255,.64);
    stroke: rgba(18,49,74,.19);
    stroke-width: 1.5;
}

.rd-mini-route {
    fill: none;
    stroke: rgba(229,91,45,.5);
    stroke-width: 1.7;
    stroke-dasharray: 5 5;
}

.rd-mini-pin {
    fill: var(--rd-orange);
    stroke: var(--rd-white);
    stroke-width: 3;
}

.rd-mini-elburg-halo {
    fill: rgba(229,91,45,.14);
    stroke: rgba(229,91,45,.22);
}

.rd-mini-elburg-text {
    fill: var(--rd-navy);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}

.rd-programme-card {
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.rd-programme-card:hover,
.rd-programme-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(18,49,74,.16);
}

.rd-programme-card em {
    margin-top: 1.35rem;
    font-style: normal;
    font-weight: 850;
    color: rgba(255,255,255,.78);
}

.rd-programme-card:nth-child(3) em { color: var(--rd-orange-dark); }

@media (max-width: 1050px) {
    .rd-home-hero-map {
        width: 74vw;
        right: -19%;
        top: 5%;
        opacity: .64;
    }

    .rd-map-label,
    .rd-listener-label { display: none; }
}

@media (max-width: 760px) {
    .rd-home-hero-inner {
        min-height: auto;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .rd-home-hero-map {
        width: 134vw;
        right: -70%;
        top: 9%;
        opacity: .34;
    }

    .rd-hero-card {
        max-width: 100%;
        margin-top: 1.25rem;
    }
}


/* v0.4.0 — recognisable globe centred on Europe */
.rd-world-globe {
    width: min(100%, 690px);
    height: auto;
    overflow: visible;
    filter: drop-shadow(0 26px 46px rgba(18,49,74,.10));
}

.rd-globe-shadow {
    fill: rgba(18,49,74,.07);
    transform: translateY(16px);
}

.rd-globe-ocean {
    fill: url(#rd-globe-fill);
}

.rd-globe-outline {
    fill: none;
    stroke: rgba(18,49,74,.20);
    stroke-width: 2.2;
}

.rd-globe-grid > * {
    fill: none;
    stroke: rgba(18,49,74,.09);
    stroke-width: 1.4;
}

.rd-world-land path {
    fill: rgba(255,255,255,.70);
    stroke: rgba(18,49,74,.27);
    stroke-width: 2;
    stroke-linejoin: round;
}

.rd-world-globe .rd-signal-path {
    fill: none;
    stroke: rgba(229,91,45,.72);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 7 9;
    stroke-dashoffset: 90;
    animation: rdSignalTravel 2.9s linear infinite;
}

.rd-world-globe .rd-route-finland { animation-delay: .35s; }
.rd-world-globe .rd-route-germany { animation-delay: .7s; }
.rd-world-globe .rd-route-spain { animation-delay: 1.05s; }
.rd-world-globe .rd-route-italy { animation-delay: 1.4s; }

.rd-world-globe .rd-map-pin {
    opacity: 0;
    animation: rdPinIn .55s ease forwards;
}

.rd-world-globe .rd-pin-elburg { animation-delay: .25s; }
.rd-world-globe .pin1 { animation-delay: .55s; }
.rd-world-globe .pin2 { animation-delay: .75s; }
.rd-world-globe .pin3 { animation-delay: .95s; }
.rd-world-globe .pin4 { animation-delay: 1.15s; }
.rd-world-globe .pin5 { animation-delay: 1.35s; }

.rd-globe-caption text {
    fill: var(--rd-orange-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .21em;
    text-anchor: middle;
}

.rd-home-hero-map {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: clamp(1rem, 3vw, 4rem);
}

.rd-home-hero {
    min-height: clamp(650px, 78vh, 820px);
}

.rd-home-copy {
    max-width: 760px;
}

.rd-mini-globe svg {
    width: 100%;
    height: auto;
}

.rd-mini-ocean {
    fill: rgba(255,255,255,.74);
}

.rd-mini-outline {
    fill: none;
    stroke: rgba(18,49,74,.22);
    stroke-width: 1.5;
}

.rd-mini-grid {
    fill: none;
    stroke: rgba(18,49,74,.09);
    stroke-width: 1;
}

.rd-mini-globe .rd-mini-land {
    fill: rgba(255,255,255,.88);
    stroke: rgba(18,49,74,.23);
    stroke-width: 1.25;
    stroke-linejoin: round;
}

.rd-mini-globe .rd-mini-route {
    fill: none;
    stroke: rgba(229,91,45,.72);
    stroke-width: 1.6;
    stroke-dasharray: 4 5;
}

@media (max-width: 1100px) {
    .rd-world-globe {
        width: min(100%, 570px);
    }
}

@media (max-width: 900px) {
    .rd-home-hero-map {
        position: relative;
        inset: auto;
        justify-content: center;
        padding: 0 1rem 2rem;
    }

    .rd-home-hero {
        min-height: auto;
    }

    .rd-world-globe {
        width: min(100%, 520px);
    }
}


/* v0.5.0 — dynamic record hero */
.rd-home-hero {
    min-height: clamp(610px, 72vh, 760px);
}

.rd-home-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(255,255,255,.36), transparent);
}

.rd-home-hero-visual {
    position: absolute;
    inset: 0 0 0 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 5rem);
}

.rd-record-visual {
    width: min(100%, 560px);
    display: grid;
    grid-template-columns: minmax(260px, 1fr);
    gap: 1.4rem;
}

.rd-record-cover {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 28px;
    background: var(--rd-navy);
    box-shadow: 0 30px 70px rgba(18,49,74,.20);
}

.rd-record-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rd-record-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 76% 28%, rgba(229,91,45,.22), transparent 30%),
        linear-gradient(145deg, #163b58 0%, #0d2d45 56%, #081f31 100%);
}

.rd-record-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 34px 34px;
}

.rd-record-disc {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    right: -18%;
    top: 14%;
    border-radius: 50%;
    background:
        radial-gradient(circle, var(--rd-orange) 0 4%, #f4e8d8 4.5% 8%, #111 8.5% 12%, #222 12.5% 100%);
    box-shadow:
        inset 0 0 0 2px rgba(255,255,255,.08),
        0 18px 48px rgba(0,0,0,.34);
}

.rd-record-disc::before,
.rd-record-disc::after {
    content: "";
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
}

.rd-record-disc::after {
    inset: 27%;
}

.rd-record-brand {
    position: absolute;
    left: clamp(1.5rem, 4vw, 2.8rem);
    bottom: clamp(1.5rem, 4vw, 2.6rem);
    z-index: 2;
    color: var(--rd-white);
    max-width: 62%;
}

.rd-record-brand small {
    display: block;
    margin-bottom: .8rem;
    color: var(--rd-orange-light);
    font-weight: 900;
    letter-spacing: .18em;
}

.rd-record-brand strong {
    display: block;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: .93;
    letter-spacing: -.045em;
}

.rd-record-brand em {
    display: block;
    margin-top: 1rem;
    color: rgba(255,255,255,.66);
    font-style: normal;
    font-size: .92rem;
}

.rd-record-details {
    padding: .2rem .4rem 0;
}

.rd-record-details h2 {
    margin: 0;
    color: var(--rd-navy);
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: .98;
    letter-spacing: -.04em;
}

.rd-record-track {
    margin: .45rem 0 0;
    color: var(--rd-muted);
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

.rd-record-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.rd-record-meta strong {
    color: var(--rd-navy);
    font-size: 1.2rem;
}

.rd-record-meta span {
    color: var(--rd-muted);
    font-size: .94rem;
}

.rd-record-visual.is-live .rd-record-cover {
    box-shadow:
        0 30px 70px rgba(18,49,74,.20),
        0 0 0 8px rgba(229,91,45,.09);
}

.rd-report-strip {
    background: var(--rd-navy);
    color: var(--rd-white);
}

.rd-report-strip-inner {
    min-height: 170px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(220px, .8fr) auto;
    align-items: center;
    gap: 2rem;
}

.rd-report-strip .rd-kicker {
    color: var(--rd-orange-light);
}

.rd-report-strip h2 {
    margin: 0;
    max-width: 760px;
    color: var(--rd-white);
    font-size: clamp(1.8rem, 3.2vw, 3.5rem);
    line-height: .98;
    letter-spacing: -.04em;
}

.rd-report-strip p:not(.rd-kicker) {
    margin: 0;
    color: rgba(255,255,255,.70);
    font-size: 1.08rem;
}

.rd-report-strip .rd-button-secondary {
    color: var(--rd-white);
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.06);
}

.rd-report-strip .rd-button-secondary:hover {
    background: rgba(255,255,255,.12);
}

/* Hide old globe-specific hero visual rules */
.rd-home-hero > .rd-home-hero-map,
.rd-world-globe {
    display: none !important;
}

@media (max-width: 1100px) {
    .rd-home-hero-visual {
        inset: 0 0 0 48%;
        padding-left: 2rem;
    }

    .rd-record-visual {
        width: min(100%, 500px);
    }

    .rd-report-strip-inner {
        grid-template-columns: 1fr auto;
    }

    .rd-report-strip-inner > p {
        grid-column: 1;
    }

    .rd-report-strip-inner > a {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
}

@media (max-width: 900px) {
    .rd-home-hero-visual {
        position: relative;
        inset: auto;
        padding: 1rem 1rem 3rem;
    }

    .rd-record-visual {
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .rd-report-strip-inner {
        grid-template-columns: 1fr;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .rd-report-strip-inner > p,
    .rd-report-strip-inner > a {
        grid-column: auto;
        grid-row: auto;
    }

    .rd-report-strip .rd-button {
        justify-self: start;
    }
}

@media (max-width: 620px) {
    .rd-record-cover {
        border-radius: 22px;
    }

    .rd-record-brand {
        max-width: 72%;
    }

    .rd-record-meta {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* v0.5.1 — softer palette and reusable Now Playing presentation */
.rd-home-hero {
    background:
        radial-gradient(circle at 76% 31%, rgba(227,236,239,.72), transparent 30%),
        radial-gradient(circle at 24% 75%, rgba(244,232,215,.78), transparent 34%),
        linear-gradient(120deg, #fbf8f1 0%, #f8f7f3 55%, #f2f6f7 100%);
}

.rd-record-cover {
    background: #eef2f3;
    box-shadow: 0 22px 55px rgba(18,49,74,.13);
}

.rd-record-placeholder {
    background:
        radial-gradient(circle at 76% 28%, rgba(229,91,45,.13), transparent 32%),
        linear-gradient(145deg, #eef3f4 0%, #e5ecef 55%, #dae5e9 100%);
}

.rd-record-placeholder::before {
    background:
        linear-gradient(rgba(18,49,74,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18,49,74,.025) 1px, transparent 1px);
}

.rd-record-disc {
    background:
        radial-gradient(circle, var(--rd-orange) 0 4%, #f6efe6 4.5% 8%, #282828 8.5% 12%, #343434 12.5% 100%);
    opacity: .94;
    box-shadow:
        inset 0 0 0 2px rgba(255,255,255,.10),
        0 14px 34px rgba(0,0,0,.18);
}

.rd-record-brand {
    color: var(--rd-navy);
    text-shadow: none;
}

.rd-record-brand small {
    color: var(--rd-orange-dark);
}

.rd-record-brand em {
    color: var(--rd-muted);
}

.rd-record-details {
    padding: .5rem .3rem 0;
}

.rd-record-details h2 {
    font-size: clamp(1.9rem, 3.4vw, 3.3rem);
}

.rd-record-track {
    color: #617583;
}

.rd-record-meta span {
    color: #7b8c96;
}

.rd-report-strip {
    background: linear-gradient(120deg, #f3eadb 0%, #edf3f4 100%);
    color: var(--rd-navy);
    border-top: 1px solid rgba(18,49,74,.07);
    border-bottom: 1px solid rgba(18,49,74,.07);
}

.rd-report-strip .rd-kicker {
    color: var(--rd-orange-dark);
}

.rd-report-strip h2 {
    color: var(--rd-navy);
}

.rd-report-strip p:not(.rd-kicker) {
    color: var(--rd-muted);
}

.rd-report-strip .rd-button-secondary {
    color: var(--rd-navy);
    border-color: rgba(18,49,74,.18);
    background: rgba(255,255,255,.58);
}

.rd-report-strip .rd-button-secondary:hover {
    background: rgba(255,255,255,.90);
}

.rd-feature-card,
.rd-module-card,
.rd-programme-card {
    box-shadow: 0 12px 34px rgba(18,49,74,.06);
}

.rd-feature-card:nth-child(3),
.rd-module-card-large {
    background: #e9f0f3;
    color: var(--rd-navy);
}

.rd-feature-card:nth-child(3) h3,
.rd-module-card-large h3 {
    color: var(--rd-navy);
}

.rd-module-card-large .rd-report-preview {
    border-color: rgba(18,49,74,.12);
}

.rd-module-card-large a {
    color: var(--rd-orange-dark);
}

.rd-programme-card {
    background: linear-gradient(145deg, #e8eff2, #dfe9ed);
    color: var(--rd-navy);
}

.rd-programme-card:nth-child(2) {
    background: linear-gradient(145deg, #f4eadc, #f0dfcb);
    color: var(--rd-navy);
}

.rd-programme-card:nth-child(3) {
    background: linear-gradient(145deg, #eef3f5, #e6edef);
    color: var(--rd-navy);
}

.rd-programme-card > span,
.rd-programme-card:nth-child(3) > span {
    color: var(--rd-orange);
}

.rd-programme-card p,
.rd-programme-card:nth-child(3) p {
    color: var(--rd-muted);
}

.rd-programme-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(18,49,74,.09);
}

.rd-programme-card:nth-child(2)::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    border-radius: inherit;
    background: var(--rd-orange);
}

.rd-programme-card {
    position: relative;
    overflow: hidden;
}

.rd-now-playing-section {
    background: linear-gradient(120deg, #f3eadb 0%, #edf3f4 100%);
    color: var(--rd-navy);
}

.rd-now-playing-section .rd-kicker {
    color: var(--rd-orange-dark);
}

.rd-now-playing-layout h2 {
    color: var(--rd-navy);
}

@media (max-width: 900px) {
    .rd-record-details {
        padding-inline: .2rem;
    }
}


/* v0.5.2 — adjustable logo and more subtle menu */

/* Larger, user-adjustable branding */
.rd-site-branding,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo,
.rd-site-logo img,
.rd-brand img {
    width: var(--rd-logo-width-desktop, 285px) !important;
    max-width: none !important;
    height: auto !important;
}

.rd-site-header-inner {
    min-height: 88px;
}

.rd-site-header {
    background: rgba(255,253,248,.96);
    backdrop-filter: blur(14px);
}

/* More understated menu button */
.rd-menu-toggle {
    min-width: auto;
    padding: .62rem .86rem;
    gap: .6rem;
    border: 1px solid rgba(18,49,74,.13);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 6px 18px rgba(18,49,74,.055);
    font-size: .92rem;
    font-weight: 760;
}

.rd-menu-toggle:hover {
    background: rgba(255,255,255,.96);
    border-color: rgba(18,49,74,.20);
    box-shadow: 0 8px 22px rgba(18,49,74,.08);
}

.rd-menu-toggle-icon,
.rd-menu-toggle-lines {
    width: 20px;
    height: 16px;
}

/* Softer, narrower fullscreen menu */
.rd-menu-overlay {
    background:
        radial-gradient(circle at 78% 22%, rgba(229,91,45,.10), transparent 34%),
        linear-gradient(120deg, #f8fbfc 0%, #fffaf3 100%);
}

.rd-menu-panel,
.rd-menu-overlay-inner {
    width: min(100%, 1180px);
    margin-inline: auto;
    padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.rd-menu-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.rd-menu-nav {
    max-width: 760px;
}

.rd-menu-nav a,
.rd-menu-overlay .menu a {
    display: block;
    padding: .55rem 0 .62rem;
    border-bottom: 1px solid rgba(18,49,74,.10);
    color: var(--rd-navy);
    font-size: clamp(2rem, 4.2vw, 4.4rem);
    line-height: .96;
    letter-spacing: -.045em;
    text-decoration: none;
    transition:
        color .18s ease,
        transform .18s ease,
        padding-left .18s ease;
}

.rd-menu-nav a:hover,
.rd-menu-overlay .menu a:hover,
.rd-menu-nav .current-menu-item > a {
    color: var(--rd-orange);
    transform: none;
    padding-left: .45rem;
}

.rd-menu-feature-card {
    width: min(100%, 360px);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-radius: 24px;
    box-shadow: 0 16px 42px rgba(18,49,74,.10);
}

.rd-menu-feature-card h2,
.rd-menu-feature-card h3 {
    font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.rd-menu-eyebrow,
.rd-menu-overlay .rd-kicker {
    letter-spacing: .17em;
    font-size: .72rem;
}

/* Reduce visual dominance of menu close state */
body.rd-menu-open .rd-menu-toggle {
    background: rgba(255,255,255,.88);
    border-color: rgba(18,49,74,.14);
}

@media (max-width: 900px) {
    .custom-logo,
    .rd-site-logo img,
    .rd-brand img {
        width: var(--rd-logo-width-mobile, 220px) !important;
    }

    .rd-site-header-inner {
        min-height: 76px;
    }

    .rd-menu-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .rd-menu-feature-card {
        display: none;
    }

    .rd-menu-nav a,
    .rd-menu-overlay .menu a {
        font-size: clamp(1.75rem, 8vw, 3.1rem);
        padding-block: .48rem;
    }
}

@media (max-width: 560px) {
    .custom-logo,
    .rd-site-logo img,
    .rd-brand img {
        width: min(var(--rd-logo-width-mobile, 220px), 64vw) !important;
    }

    .rd-menu-toggle {
        padding: .55rem .72rem;
        font-size: .84rem;
    }

    .rd-menu-toggle span:first-child {
        display: none;
    }
}


/* v0.5.3 — proportional logo scaling fix */
.rd-site-branding,
.rd-brand,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: auto !important;
    height: auto !important;
    line-height: 0;
}

.custom-logo-link {
    max-width: min(var(--rd-logo-width-desktop, 250px), 32vw);
}

.custom-logo,
.custom-logo-link img,
.rd-site-logo img,
.rd-brand img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.rd-site-header-inner {
    min-height: 86px;
    height: auto !important;
    padding-top: .65rem;
    padding-bottom: .65rem;
}

.rd-site-header .rd-section-inner,
.rd-site-header-inner {
    overflow: visible;
}

/* Do not stretch branding when a very wide logo is selected */
.rd-site-branding img,
.custom-logo-link img {
    flex: none;
}

@media (max-width: 900px) {
    .custom-logo-link {
        max-width: min(var(--rd-logo-width-mobile, 205px), 58vw);
    }

    .rd-site-header-inner {
        min-height: 74px;
        padding-top: .55rem;
        padding-bottom: .55rem;
    }
}

@media (max-width: 560px) {
    .custom-logo-link {
        max-width: min(var(--rd-logo-width-mobile, 205px), 62vw);
    }
}


/* v0.6.0 — Radio Delta branding alignment */
:root {
    --rd-brand-dark: #11111F;
    --rd-brand-orange: #FF7932;

    --rd-navy: var(--rd-brand-dark);
    --rd-orange: var(--rd-brand-orange);
    --rd-orange-dark: #D95F20;
    --rd-orange-light: #FF9B66;

    --rd-white: #FFFFFF;
    --rd-paper: #FBFAF7;
    --rd-cream: #F7F3EC;
    --rd-blue-soft: #F1F4F5;
    --rd-muted: #666B78;

    --rd-font-primary: "Bariol", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    --rd-font-display: "Bariol", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    --rd-font-accent: "Cleveland", "Bariol", "Avenir Next", sans-serif;
}

html,
body {
    font-family: var(--rd-font-primary);
    color: var(--rd-brand-dark);
}

body {
    background: var(--rd-white);
}

h1,
h2,
h3,
h4,
h5,
h6,
.rd-home-copy h1,
.rd-section-heading h2,
.rd-module-card h3,
.rd-programme-card h3,
.rd-menu-nav a,
.rd-menu-overlay .menu a {
    font-family: var(--rd-font-display);
    color: var(--rd-brand-dark);
}

.rd-kicker,
.rd-card-number,
.rd-menu-eyebrow,
.rd-record-brand small,
.rd-globe-caption text,
.rd-listener-label,
.rd-map-label,
.rd-mini-elburg-text {
    font-family: var(--rd-font-primary);
    color: var(--rd-brand-orange);
    letter-spacing: .15em;
}

.rd-site-header {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(17,17,31,.06);
}

.rd-broadcast-bar {
    background: var(--rd-brand-dark);
    color: var(--rd-white);
}

.rd-broadcast-bar a,
.rd-broadcast-bar strong {
    color: var(--rd-white);
}

.rd-home-hero {
    background:
        linear-gradient(rgba(17,17,31,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,17,31,.025) 1px, transparent 1px),
        linear-gradient(120deg, #FFFFFF 0%, #FAF8F3 60%, #F5F5F6 100%);
    background-size: 34px 34px, 34px 34px, auto;
}

.rd-home-copy h1 {
    color: var(--rd-brand-dark);
    font-weight: 800;
}

.rd-lead,
.rd-record-track,
.rd-record-meta span,
.rd-module-card > p:not(.rd-kicker),
.rd-programme-card p,
.rd-feature-card p {
    color: var(--rd-muted);
}

.rd-button-primary {
    background: var(--rd-brand-orange);
    border-color: var(--rd-brand-orange);
    color: var(--rd-white);
    box-shadow: 0 10px 24px rgba(255,121,50,.18);
}

.rd-button-primary:hover {
    background: #E96D2E;
    border-color: #E96D2E;
}

.rd-button-secondary {
    background: var(--rd-white);
    color: var(--rd-brand-dark);
    border-color: rgba(17,17,31,.14);
}

.rd-button-secondary:hover {
    border-color: rgba(17,17,31,.28);
    background: #FCFCFC;
}

.rd-record-cover {
    background: #F2F2F4;
    border: 1px solid rgba(17,17,31,.06);
    box-shadow: 0 18px 46px rgba(17,17,31,.12);
}

.rd-record-placeholder {
    background:
        radial-gradient(circle at 74% 26%, rgba(255,121,50,.10), transparent 31%),
        linear-gradient(145deg, #F6F6F7 0%, #EEEFF1 100%);
}

.rd-record-disc {
    background:
        radial-gradient(circle,
            var(--rd-brand-orange) 0 4%,
            #F8F3EC 4.5% 8%,
            #11111F 8.5% 12%,
            #20202C 12.5% 100%
        );
}

.rd-record-brand {
    color: var(--rd-brand-dark);
}

.rd-record-brand em {
    color: var(--rd-muted);
}

.rd-report-strip {
    background: var(--rd-paper);
    color: var(--rd-brand-dark);
    border-color: rgba(17,17,31,.07);
}

.rd-report-strip h2 {
    color: var(--rd-brand-dark);
}

.rd-report-strip .rd-button-secondary {
    color: var(--rd-brand-dark);
    border-color: rgba(17,17,31,.14);
    background: var(--rd-white);
}

.rd-home-intro,
.rd-programmes {
    background: var(--rd-white);
}

.rd-home-modules {
    background: var(--rd-paper);
}

.rd-feature-card,
.rd-module-card,
.rd-programme-card {
    border: 1px solid rgba(17,17,31,.07);
    box-shadow: 0 12px 30px rgba(17,17,31,.055);
}

.rd-feature-card:nth-child(1),
.rd-frequency-card,
.rd-programme-card:nth-child(2) {
    background: var(--rd-cream);
}

.rd-feature-card:nth-child(2),
.rd-map-preview-card,
.rd-programme-card:nth-child(1),
.rd-programme-card:nth-child(3),
.rd-module-card-large {
    background: var(--rd-blue-soft);
    color: var(--rd-brand-dark);
}

.rd-feature-card:nth-child(3) {
    background: var(--rd-brand-dark);
    color: var(--rd-white);
}

.rd-feature-card:nth-child(3) h3,
.rd-feature-card:nth-child(3) p {
    color: var(--rd-white);
}

.rd-module-card-large h3,
.rd-module-card-large,
.rd-programme-card h3 {
    color: var(--rd-brand-dark);
}

.rd-programme-card:nth-child(2)::after {
    background: var(--rd-brand-orange);
}

.rd-module-card a,
.rd-programme-card a,
.rd-report-strip a,
.rd-hero-card a {
    color: var(--rd-brand-orange);
}

.rd-menu-overlay {
    background:
        radial-gradient(circle at 78% 20%, rgba(255,121,50,.09), transparent 34%),
        linear-gradient(120deg, #FFFFFF 0%, #FAF8F3 100%);
}

.rd-menu-feature-card {
    background: var(--rd-brand-dark);
    color: var(--rd-white);
}

.rd-menu-feature-card h2,
.rd-menu-feature-card h3,
.rd-menu-feature-card p {
    color: var(--rd-white);
}

.rd-menu-feature-card .rd-kicker {
    color: var(--rd-brand-orange);
}

.rd-menu-nav a:hover,
.rd-menu-overlay .menu a:hover,
.rd-menu-nav .current-menu-item > a {
    color: var(--rd-brand-orange);
}

.rd-menu-toggle {
    color: var(--rd-brand-dark);
    border-color: rgba(17,17,31,.13);
}

.rd-site-footer {
    background: var(--rd-brand-dark);
    color: var(--rd-white);
}

.rd-site-footer a,
.rd-site-footer strong,
.rd-site-footer h2,
.rd-site-footer h3 {
    color: var(--rd-white);
}

.rd-now-playing-section {
    background: var(--rd-brand-dark);
    color: var(--rd-white);
}

.rd-now-playing-section .rd-kicker {
    color: var(--rd-brand-orange);
}

.rd-now-playing-layout h2 {
    color: var(--rd-white);
}

/* Use Cleveland only as a restrained accent where available */
.rd-record-brand strong,
.rd-menu-feature-card h2,
.rd-menu-feature-card h3 {
    font-family: var(--rd-font-accent);
}

/* Keep accent usage readable when Cleveland is unavailable */
@supports not (font-variation-settings: normal) {
    .rd-record-brand strong,
    .rd-menu-feature-card h2,
    .rd-menu-feature-card h3 {
        font-family: var(--rd-font-primary);
    }
}

@media (max-width: 900px) {
    .rd-home-hero {
        background-size: 28px 28px, 28px 28px, auto;
    }
}


/* v0.6.1 — Core artwork and richer track metadata */
.rd-record-cover.has-artwork {
    background: var(--rd-brand-dark);
}

.rd-record-cover.has-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.001);
}

.rd-cover-corner {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
}

.rd-cover-corner span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .42rem .68rem;
    border-radius: 999px;
    background: rgba(17,17,31,.78);
    color: #fff;
    backdrop-filter: blur(8px);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.rd-record-visual.is-live .rd-cover-corner span::before {
    content: "";
    width: .48rem;
    height: .48rem;
    border-radius: 50%;
    background: var(--rd-brand-orange);
    box-shadow: 0 0 0 5px rgba(255,121,50,.18);
}

.rd-record-album {
    margin: .55rem 0 0;
    color: var(--rd-muted);
    font-size: .98rem;
}

.rd-record-programme {
    display: inline-flex;
    margin: .85rem 0 0;
    padding: .38rem .62rem;
    border: 1px solid rgba(17,17,31,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    color: var(--rd-brand-dark);
    font-size: .78rem;
    font-weight: 800;
}

.rd-record-cover.has-artwork::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 28%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(17,17,31,.16), transparent);
}

.rd-frequency-card h3 {
    overflow-wrap: anywhere;
}

@media (max-width: 620px) {
    .rd-cover-corner {
        top: .75rem;
        left: .75rem;
    }
}


/* v0.6.2 — upcoming broadcasts from Radio Delta Core */
.rd-upcoming-card {
    background: var(--rd-cream);
}

.rd-upcoming-list {
    width: 100%;
    display: grid;
    gap: 0;
    margin: .4rem 0 1.6rem;
}

.rd-upcoming-item {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: .8rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(17,17,31,.10);
}

.rd-upcoming-item:last-child {
    border-bottom: 1px solid rgba(17,17,31,.10);
}

.rd-upcoming-number {
    color: var(--rd-brand-orange);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.rd-upcoming-item strong {
    display: block;
    color: var(--rd-brand-dark);
    font-size: 1.08rem;
    line-height: 1.15;
}

.rd-upcoming-item p {
    margin: .35rem 0 .3rem;
    color: var(--rd-muted);
    font-size: .9rem;
    line-height: 1.35;
}

.rd-upcoming-item div > span {
    color: var(--rd-brand-dark);
    font-size: .82rem;
    font-weight: 800;
}

.rd-upcoming-card > a {
    margin-top: auto;
}

/* v0.6.3 — Sprint 1A: Live Station Experience */
.rd-home-hero.rd-sprint-1a {
    background:
        radial-gradient(circle at 82% 18%, rgba(255,121,50,.13), transparent 30%),
        linear-gradient(118deg, #fffdf8 0%, #f6f0e5 54%, #eef3f4 100%);
}

.rd-home-hero.rd-sprint-1a::before {
    opacity: .7;
    mask-image: linear-gradient(to right, transparent 2%, #000 45%, #000 100%);
}

.rd-s1a-shell {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--rd-max));
    margin-inline: auto;
    padding: clamp(3.75rem, 7vw, 7.5rem) 0;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(400px, .98fr);
    gap: clamp(2.5rem, 6vw, 7rem);
    align-items: center;
}

.rd-s1a-copy h1 {
    max-width: 850px;
    margin: 0;
    color: var(--rd-brand-dark);
    font-size: clamp(3.45rem, 6.7vw, 7.25rem);
    font-weight: 880;
    letter-spacing: -.065em;
    line-height: .91;
}

.rd-s1a-copy .rd-lead { max-width: 690px; }

.rd-next-panel {
    width: min(100%, 650px);
    margin-top: clamp(2rem, 4vw, 3.5rem);
    padding: clamp(1.25rem, 2.2vw, 1.8rem);
    border: 1px solid rgba(17,17,31,.12);
    border-left: 5px solid var(--rd-brand-orange);
    border-radius: 18px;
    background: rgba(255,255,255,.79);
    box-shadow: 0 18px 50px rgba(17,17,31,.08);
    backdrop-filter: blur(12px);
}

.rd-next-panel.has-current-broadcast {
    color: #fff;
    border-color: rgba(255,255,255,.16);
    border-left-color: var(--rd-brand-orange);
    background: var(--rd-brand-dark);
}

.rd-next-panel-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: .65rem;
}

.rd-live-or-next {
    color: var(--rd-brand-orange);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.rd-next-programme {
    display: block;
    color: var(--rd-brand-dark);
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.1;
}

.rd-next-panel.has-current-broadcast .rd-next-programme,
.rd-next-panel.has-current-broadcast .rd-next-facts { color: #fff; }

.rd-next-date {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem .9rem;
    align-items: baseline;
    margin-top: .6rem;
    color: var(--rd-muted);
}

.rd-next-date b { color: var(--rd-brand-dark); }

.rd-next-facts {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: .85rem;
    color: var(--rd-brand-dark);
}

.rd-next-facts span {
    padding: .35rem .58rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    opacity: .8;
}

.rd-next-live-link {
    display: inline-flex;
    margin-top: 1rem;
    color: #fff;
    font-weight: 850;
    text-decoration: none;
}

.rd-following-broadcast {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto auto auto;
    gap: .6rem 1rem;
    align-items: baseline;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(17,17,31,.11);
    font-size: .78rem;
}

.rd-next-panel.has-current-broadcast .rd-following-broadcast { border-color: rgba(255,255,255,.16); }
.rd-following-broadcast span { color: var(--rd-muted); }
.rd-following-broadcast em { font-style: normal; color: var(--rd-muted); }

.rd-now-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(17,17,31,.17);
}

.rd-now-artwork {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--rd-brand-dark);
}

.rd-now-artwork img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.rd-now-artwork::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 30%;
    background: linear-gradient(to top, rgba(17,17,31,.35), transparent);
    pointer-events: none;
}

.rd-now-badge {
    position: absolute;
    z-index: 3;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .48rem;
    padding: .5rem .72rem;
    border-radius: 999px;
    background: rgba(17,17,31,.82);
    color: #fff;
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .13em;
    backdrop-filter: blur(10px);
}

.rd-live-dot {
    width: .52rem;
    height: .52rem;
    border-radius: 50%;
    background: var(--rd-brand-orange);
    box-shadow: 0 0 0 6px rgba(255,121,50,.2);
    animation: rdS1aPulse 1.8s infinite;
}

.rd-now-content { padding: clamp(1.4rem, 3vw, 2.25rem); }
.rd-now-programme { margin: 0 0 .55rem; color: var(--rd-brand-orange); font-size: .75rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.rd-now-content h2 { margin: 0; color: var(--rd-brand-dark); font-size: clamp(2rem, 3.5vw, 3.5rem); line-height: .98; letter-spacing: -.045em; }
.rd-now-track { margin: .55rem 0 0; color: var(--rd-brand-dark); font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 720; line-height: 1.2; }
.rd-now-album { margin: .65rem 0 0; color: var(--rd-muted); }
.rd-now-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem 1.15rem; margin-top: 1.35rem; }
.rd-text-link { color: var(--rd-brand-dark); font-weight: 850; text-decoration: none; }
.rd-text-link:hover { color: var(--rd-brand-orange); }

.rd-now-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: radial-gradient(circle at 25% 25%, #30304a 0%, var(--rd-brand-dark) 58%);
    color: #fff;
    text-align: center;
}

.rd-now-placeholder > div { position: relative; z-index: 2; }
.rd-now-placeholder small,.rd-now-placeholder em { display: block; }
.rd-now-placeholder small { color: var(--rd-brand-orange); font-weight: 900; letter-spacing: .18em; }
.rd-now-placeholder strong { display: block; margin: .8rem 0; font-size: clamp(2.2rem, 4vw, 4.4rem); line-height: .9; letter-spacing: -.05em; }
.rd-now-placeholder em { opacity: .72; font-style: normal; font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; }
.rd-vinyl { position: absolute; width: 82%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); box-shadow: inset 0 0 0 30px rgba(255,255,255,.018), inset 0 0 0 70px rgba(255,255,255,.018); }

.rd-equalizer,.rd-mini-eq { display: inline-flex; align-items: end; gap: 3px; height: 18px; }
.rd-equalizer { float: right; }
.rd-equalizer i,.rd-mini-eq i { display: block; width: 3px; border-radius: 3px; background: var(--rd-brand-orange); animation: rdEq .9s ease-in-out infinite alternate; }
.rd-equalizer i:nth-child(1),.rd-mini-eq i:nth-child(1){height:35%;animation-delay:-.4s}.rd-equalizer i:nth-child(2),.rd-mini-eq i:nth-child(2){height:80%;animation-delay:-.2s}.rd-equalizer i:nth-child(3),.rd-mini-eq i:nth-child(3){height:55%;animation-delay:-.6s}.rd-equalizer i:nth-child(4),.rd-mini-eq i:nth-child(4){height:100%;animation-delay:-.1s}.rd-equalizer i:nth-child(5){height:65%;animation-delay:-.5s}

@keyframes rdEq { to { height: 22%; } }
@keyframes rdS1aPulse { 50% { box-shadow: 0 0 0 12px rgba(255,121,50,0); } }

@media (prefers-reduced-motion: reduce) {
    .rd-live-dot,.rd-equalizer i,.rd-mini-eq i { animation: none; }
}

@media (max-width: 980px) {
    .rd-s1a-shell { grid-template-columns: 1fr; }
    .rd-s1a-copy { max-width: 800px; }
    .rd-now-card { width: min(100%, 680px); }
}

@media (max-width: 620px) {
    .rd-s1a-shell { width: min(calc(100% - 28px), var(--rd-max)); padding: 3rem 0 3.5rem; gap: 2.5rem; }
    .rd-s1a-copy h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
    .rd-actions { display: grid; }
    .rd-actions .rd-button { width: 100%; }
    .rd-following-broadcast { grid-template-columns: 1fr auto; }
    .rd-following-broadcast em,.rd-following-broadcast b { grid-column: 2; }
    .rd-now-card { border-radius: 20px; }
    .rd-now-badge { top: .75rem; left: .75rem; }
}

/* Music Favourites — Theme 0.7.0 */
.rd-favourite-panel {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .45rem 1rem;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(17,17,31,.10);
}
.rd-favourite-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 46px;
    padding: .72rem 1rem;
    border: 1px solid rgba(17,17,31,.16);
    border-radius: 999px;
    background: #fff;
    color: var(--rd-brand-dark);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.rd-favourite-button:hover:not(:disabled),.rd-favourite-button:focus-visible:not(:disabled) { transform: translateY(-1px); border-color: var(--rd-brand-orange); }
.rd-favourite-button.is-favourited { background: rgba(255,121,50,.10); border-color: rgba(255,121,50,.42); color: var(--rd-brand-orange); }
.rd-favourite-button:disabled { cursor: default; }
.rd-favourite-heart { font-size: 1.35rem; line-height: 1; color: var(--rd-brand-orange); }
.rd-favourite-button.is-loading .rd-favourite-heart { animation: rdFavouriteBeat .7s ease-in-out infinite alternate; }
.rd-favourite-count { color: var(--rd-brand-dark); font-size: .88rem; font-weight: 800; }
.rd-favourite-note { grid-column: 1 / -1; color: var(--rd-muted); font-size: .76rem; }
.rd-favourite-ranking-link { grid-column: 1 / -1; color: var(--rd-brand-dark); font-size: .84rem; font-weight: 850; text-decoration: none; }
.rd-favourite-ranking-link:hover { color: var(--rd-brand-orange); }
@keyframes rdFavouriteBeat { to { transform: scale(1.18); } }

.rd-top100-hero { padding: clamp(3.5rem,8vw,7rem) 0 2rem; background: linear-gradient(135deg,var(--rd-paper),var(--rd-cream)); }
.rd-top100-hero h1 { max-width: 1000px; margin: .4rem 0 1rem; font-size: clamp(3rem,7vw,7rem); line-height: .92; letter-spacing: -.055em; }
.rd-top100-intro { max-width: 720px; color: var(--rd-muted); font-size: 1.12rem; }
.rd-top100-list { display: grid; gap: .8rem; padding: 2rem 0 clamp(4rem,8vw,8rem); }
.rd-top100-row { display: grid; grid-template-columns: 62px 76px minmax(0,1fr) auto; gap: 1rem; align-items: center; padding: .9rem 1rem; background: #fff; border: 1px solid rgba(17,17,31,.09); border-radius: 16px; }
.rd-top100-rank { color: var(--rd-brand-orange); font-size: 1.15rem; font-weight: 900; }
.rd-top100-cover { width: 76px; aspect-ratio: 1; border-radius: 10px; object-fit: cover; background: var(--rd-brand-dark); }
.rd-top100-track strong,.rd-top100-track span { display: block; }
.rd-top100-track strong { color: var(--rd-brand-dark); font-size: 1.05rem; }
.rd-top100-track span { color: var(--rd-muted); margin-top: .2rem; }
.rd-top100-likes { white-space: nowrap; font-weight: 850; }
.rd-top100-empty { padding: 2rem; background: #fff; border-radius: 16px; }
@media(max-width:620px){
  .rd-favourite-panel{grid-template-columns:1fr}.rd-favourite-button{width:100%}.rd-favourite-count{text-align:center}
  .rd-top100-row{grid-template-columns:44px 58px minmax(0,1fr)}.rd-top100-cover{width:58px}.rd-top100-likes{grid-column:3}
}
@media(prefers-reduced-motion:reduce){.rd-favourite-button.is-loading .rd-favourite-heart{animation:none}}

/* Live data updates are applied in place; only changed artwork fades softly. */
.rd-now-artwork [data-rd-now-image] {
    opacity: 1;
    transition: opacity .22s ease;
}

.rd-now-artwork [data-rd-now-image].is-updating {
    opacity: .72;
}

/* =========================================================
   v0.8.0 — Desktop homepage composition
   ========================================================= */
@media (min-width: 1121px) {
  .rd-header-inner { min-height: 102px; gap: 2rem; }
  .rd-site-header { background: rgba(255,255,255,.98); }
  .rd-logo-area .custom-logo { max-height: 68px; max-width: var(--rd-logo-width-desktop, 270px); }
  .rd-desktop-nav { margin-left: auto; }
  .rd-desktop-menu { display:flex; align-items:center; gap:1.65rem; margin:0; padding:0; list-style:none; }
  .rd-desktop-menu li { position:relative; }
  .rd-desktop-menu a { color:var(--rd-navy-deep); text-decoration:none; font-size:.95rem; font-weight:760; white-space:nowrap; }
  .rd-desktop-menu a:hover,.rd-desktop-menu a:focus,.rd-desktop-menu .current-menu-item>a { color:var(--rd-orange); }
  .rd-desktop-menu .current-menu-item>a::after { content:""; position:absolute; left:0; right:0; bottom:-18px; height:3px; background:var(--rd-orange); border-radius:4px; }
  .rd-desktop-menu .sub-menu { display:none; }
  .rd-header-report { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:.7rem 1.25rem; border-radius:999px; background:var(--rd-orange); color:#fff; text-decoration:none; font-weight:830; white-space:nowrap; box-shadow:0 12px 25px rgba(229,91,45,.20); }
  .rd-menu-toggle { display:none; }
  .rd-broadcast-bar { top:102px; }
}
@media (max-width: 1120px) {
  .rd-desktop-nav,.rd-header-report { display:none; }
}

.rd-home-hero.rd-desktop-v2 {
  position:relative;
  overflow:hidden;
  padding:0;
  background:linear-gradient(110deg,#fffefa 0%,#faf6ee 53%,#f7f5f0 100%);
  border-bottom:1px solid rgba(18,49,74,.08);
}
.rd-home-hero.rd-desktop-v2::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image:linear-gradient(rgba(18,49,74,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(18,49,74,.025) 1px,transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(to bottom,black 0%,transparent 90%);
}
.rd-v2-shell {
  position:relative; z-index:2;
    width:min(calc(100% - 40px),var(--rd-max)); margin-inline:auto;
  min-height:570px; padding:3.5rem 0 2.8rem;
  display:grid; grid-template-columns:minmax(0,1.15fr) minmax(470px,.85fr); gap:clamp(3rem,6vw,7rem); align-items:center;
}
.rd-v2-copy { max-width:720px; }
.rd-v2-copy h1 { margin:0; color:#0d1423; font-size:clamp(4rem,5.45vw,6.15rem); font-weight:900; letter-spacing:-.065em; line-height:.87; }
.rd-v2-copy .rd-lead { max-width:600px; margin:1.6rem 0 0; font-size:clamp(1.08rem,1.35vw,1.35rem); line-height:1.55; color:#56626d; }
.rd-v2-copy .rd-actions { margin-top:1.8rem; }

.rd-hero-map-bg { position:absolute; z-index:0; left:31%; top:8%; width:48%; height:78%; opacity:.52; pointer-events:none; background:radial-gradient(ellipse at 62% 55%,rgba(18,49,74,.055),transparent 52%); }
.rd-hero-map-bg::before { content:"EUROPE"; position:absolute; left:22%; top:30%; font-weight:900; font-size:clamp(5rem,10vw,10rem); letter-spacing:.08em; color:rgba(18,49,74,.025); transform:rotate(-7deg); }
.rd-map-origin { position:absolute; left:58%; top:54%; width:12px; height:12px; background:var(--rd-orange); border:3px solid #fff; border-radius:50%; box-shadow:0 0 0 1px rgba(229,91,45,.45); }
.rd-map-ring { position:absolute; left:58%; top:54%; border:1px solid rgba(229,91,45,.32); border-radius:50%; transform:translate(-50%,-50%); }
.rd-map-ring.r1{width:105px;height:105px}.rd-map-ring.r2{width:210px;height:210px}.rd-map-ring.r3{width:330px;height:330px}

.rd-now-card-v2 { width:100%; max-width:530px; justify-self:end; padding:1.25rem; border-radius:18px; color:#fff; background:linear-gradient(145deg,#0b1a2b,#07111f); border:1px solid rgba(255,255,255,.12); box-shadow:0 28px 65px rgba(8,25,41,.22); }
.rd-now-card-v2 .rd-now-card-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:1rem; }
.rd-now-card-v2 .rd-now-badge { position:static; padding:0; background:none; color:#fff; font-size:.72rem; letter-spacing:.13em; font-weight:900; }
.rd-now-card-v2 .rd-now-card-main { display:grid; grid-template-columns:210px minmax(0,1fr); gap:1.65rem; align-items:center; }
.rd-now-card-v2 .rd-now-artwork { aspect-ratio:1; border-radius:0; overflow:hidden; border:1px solid rgba(229,91,45,.65); background:#101b27; }
.rd-now-card-v2 .rd-now-artwork img { width:100%; height:100%; object-fit:cover; display:block; }
.rd-now-card-v2 .rd-now-content { padding:0; min-width:0; }
.rd-now-card-v2 .rd-now-programme { margin:0 0 .7rem; color:var(--rd-orange); font-size:.82rem; font-weight:900; letter-spacing:.04em; text-transform:uppercase; }
.rd-now-card-v2 .rd-now-content h2 { margin:0; color:#ff7436; font-size:1.02rem; letter-spacing:0; line-height:1.2; }
.rd-now-card-v2 .rd-now-track { margin:.6rem 0 .8rem; color:#fff; font-size:clamp(1.55rem,2vw,2.15rem); font-weight:850; letter-spacing:-.035em; line-height:1.08; }
.rd-now-card-v2 .rd-now-album { margin:0; color:#b9c2cd; font-size:1rem; line-height:1.55; }
.rd-now-card-v2 .rd-equalizer { display:inline-flex; align-items:flex-end; gap:3px; height:24px; }
.rd-now-card-v2 .rd-equalizer i { display:block; width:3px; border-radius:3px; background:var(--rd-orange); animation:rdEq .9s ease-in-out infinite alternate; }
.rd-now-card-v2 .rd-equalizer i:nth-child(1){height:8px}.rd-now-card-v2 .rd-equalizer i:nth-child(2){height:17px;animation-delay:.1s}.rd-now-card-v2 .rd-equalizer i:nth-child(3){height:23px;animation-delay:.2s}.rd-now-card-v2 .rd-equalizer i:nth-child(4){height:14px;animation-delay:.3s}.rd-now-card-v2 .rd-equalizer i:nth-child(5){height:20px;animation-delay:.4s}
@keyframes rdEq{to{height:6px}}
.rd-player-line { height:28px; margin-top:1.1rem; display:flex; align-items:center; }
.rd-player-line::before { content:""; width:100%; height:3px; border-radius:4px; background:#293544; }
.rd-player-line span { position:absolute; margin-left:18%; width:10px; height:10px; border-radius:50%; background:var(--rd-orange); }
.rd-now-footer { display:flex; align-items:center; gap:.75rem; margin-top:.45rem; }
.rd-recent-toggle { flex:1; display:flex; justify-content:center; align-items:center; gap:.55rem; min-height:42px; border-radius:8px; background:rgba(255,255,255,.055); color:#dbe2e8; text-decoration:none; font-weight:730; }
.rd-recent-toggle span { margin-left:.25rem; opacity:.7; }
.rd-favourite-compact { min-width:42px; min-height:42px; padding:.4rem; border-radius:8px; }

.rd-hero-facts { position:relative; z-index:3; width:min(calc(100% - 40px),var(--rd-max)); margin:0 auto 2rem; min-height:82px; display:grid; grid-template-columns:repeat(4,1fr); align-items:center; background:rgba(255,255,255,.88); border:1px solid rgba(18,49,74,.1); border-radius:14px; box-shadow:0 14px 34px rgba(18,49,74,.08); backdrop-filter:blur(10px); }
.rd-hero-facts>div { display:flex; align-items:center; justify-content:center; gap:1rem; min-width:0; padding:1rem 1.35rem; }
.rd-hero-facts>div+div { border-left:1px solid rgba(18,49,74,.11); }
.rd-hero-facts b { color:var(--rd-orange); font-size:1.7rem; line-height:1; }
.rd-hero-facts span { display:grid; line-height:1.25; }
.rd-hero-facts strong { color:#172333; font-size:.92rem; }
.rd-hero-facts small { margin-top:.25rem; color:#75808a; font-size:.82rem; }

@media (max-width: 1120px) {
    .rd-v2-shell { grid-template-columns:minmax(0,1fr) minmax(410px,.85fr); gap:2.5rem; }
  .rd-v2-copy h1 { font-size:clamp(3.6rem,6vw,5rem); }
  .rd-now-card-v2 .rd-now-card-main { grid-template-columns:170px minmax(0,1fr); }
}
@media (max-width: 900px) {
  .rd-v2-shell { grid-template-columns:1fr; padding-top:3rem; }
  .rd-v2-copy { max-width:760px; }
  .rd-v2-copy h1 br { display:none; }
  .rd-now-card-v2 { justify-self:start; max-width:680px; }
  .rd-hero-map-bg { left:25%; width:70%; }
  .rd-hero-facts { grid-template-columns:repeat(2,1fr); }
  .rd-hero-facts>div:nth-child(3) { border-left:0; border-top:1px solid rgba(18,49,74,.11); }
  .rd-hero-facts>div:nth-child(4) { border-top:1px solid rgba(18,49,74,.11); }
}
@media (max-width: 620px) {
  .rd-v2-shell { width:min(calc(100% - 28px),100%); padding:2.4rem 0 2rem; }
  .rd-v2-copy h1 { font-size:clamp(3.05rem,15vw,4.2rem); line-height:.91; }
  .rd-v2-copy h1 br { display:block; }
  .rd-v2-copy .rd-actions { display:grid; }
  .rd-v2-copy .rd-button { width:100%; }
  .rd-now-card-v2 { padding:1rem; }
  .rd-now-card-v2 .rd-now-card-main { grid-template-columns:110px minmax(0,1fr); gap:1rem; }
  .rd-now-card-v2 .rd-now-track { font-size:1.35rem; }
  .rd-now-card-v2 .rd-now-album { font-size:.86rem; }
  .rd-hero-facts { width:min(calc(100% - 28px),100%); grid-template-columns:1fr; }
  .rd-hero-facts>div { justify-content:flex-start; padding:.9rem 1.1rem; }
  .rd-hero-facts>div+div { border-left:0; border-top:1px solid rgba(18,49,74,.11); }
}

/* =========================================================
   v0.8.1 — Header correction
   Keep the compact hamburger navigation at every screen size.
   This prevents long WordPress menus from colliding with the
   logo and reception-report button on laptops and smaller desktops.
   ========================================================= */
.rd-desktop-nav,
.rd-header-report {
    display: none !important;
}

.rd-menu-toggle {
    display: inline-flex !important;
    flex: 0 0 auto;
}

@media (min-width: 1121px) {
    .rd-header-inner {
        min-height: 86px;
        gap: 1.5rem;
    }

    .rd-logo-area {
        flex: 1 1 auto;
        min-width: 0;
    }

    .rd-logo-area .custom-logo {
        max-height: 58px;
        max-width: min(var(--rd-logo-width-desktop, 270px), calc(100vw - 180px));
    }

    .rd-broadcast-bar {
        top: 86px;
    }
}

@media (max-width: 720px) {
    .rd-menu-toggle {
        padding: .58rem .78rem;
        gap: .55rem;
    }
}


/* v0.8.2: restored interactive Listener Map and cleaner broadcast bar */
.rd-module-grid.rd-module-grid-two {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
}

.rd-listener-map-section {
    padding: clamp(3rem, 6vw, 6rem) 0;
    background: var(--rd-paper);
}

.rd-listener-map-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.4rem;
}

.rd-listener-map-heading > div:first-child > p:last-child {
    max-width: 760px;
    margin: .75rem 0 0;
    color: var(--rd-muted);
}

.rd-map-recognition-key {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .5rem;
}

.rd-map-key-badge {
    display: inline-flex;
    align-items: center;
    padding: .45rem .7rem;
    border: 1px solid rgba(18,49,74,.1);
    border-radius: 999px;
    background: #fff;
    font-size: .72rem;
    font-weight: 900;
    white-space: nowrap;
}

.rd-map-key-silver { color: #676d73; }
.rd-map-key-gold { color: #9b6900; }
.rd-map-key-platinum { color: #4a5360; }

.rd-listener-map-card {
    padding: 1rem;
    border: 1px solid rgba(18,49,74,.09);
    border-radius: var(--rd-radius);
    background: #fff;
    box-shadow: 0 18px 50px rgba(24,49,66,.09);
}

.rd-listener-map-stage {
    position: relative;
}

.rd-map-rotation-controls {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    z-index: 700;
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .55rem;
    border: 1px solid rgba(18,49,74,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 12px 32px rgba(18,49,74,.2);
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
}

.rd-map-rotation-button,
.rd-map-rotation-toggle {
    border: 0;
    background: transparent;
    color: var(--rd-navy);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.rd-map-rotation-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 1.55rem;
    line-height: 1;
}

.rd-map-rotation-button:hover,
.rd-map-rotation-toggle:hover {
    background: rgba(244,124,32,.1);
    color: var(--rd-orange-dark);
}

.rd-map-rotation-toggle {
    padding: .45rem .65rem;
    border-radius: 999px;
    font-size: .72rem;
}

.rd-map-rotation-count {
    min-width: 3rem;
    color: var(--rd-muted);
    font-size: .72rem;
    font-weight: 900;
    text-align: center;
}

#rd-listener-map-home {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 18px;
    background: #eaf1f4;
}

.rd-listener-map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem .3rem .2rem;
    color: var(--rd-muted);
    font-weight: 700;
}

.rd-listener-map-footer a {
    color: var(--rd-orange-dark);
    font-weight: 900;
    text-decoration: none;
}

.rd-mobile-featured { display: none; }

.rd-home-leaflet-popup .leaflet-popup-content-wrapper {
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 17px;
    box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.rd-home-leaflet-popup .leaflet-popup-content { width: auto !important; margin: 0; }
.rd-home-leaflet-popup .leaflet-popup-tip { box-shadow: 3px 3px 8px rgba(0,0,0,.10); }
.rd-home-leaflet-popup .leaflet-popup-close-button {
    top: 7px; right: 7px; z-index: 5;
    width: 28px; height: 28px; line-height: 26px;
    border-radius: 50%; background: rgba(255,255,255,.2); color: #fff;
    font-size: 21px; font-weight: 700;
}
.rd-home-map-popup { min-width: 255px; background: #fff; font-family: inherit; }
.rd-home-map-popup-head {
    min-height: 64px; padding: 12px 42px 11px 15px;
    background: radial-gradient(circle at 90% 10%,rgba(255,255,255,.18),transparent 34%),linear-gradient(135deg,#ee6f12,#f58a32);
    color: #fff;
}
.rd-home-map-popup-brand { font-size: 12px; line-height: 1.2; letter-spacing: .09em; font-weight: 950; }
.rd-home-map-record { margin-top: 6px; color: rgba(255,255,255,.88); font-size: 10px; letter-spacing: .1em; font-weight: 900; }
.rd-home-map-status { display: inline-flex; align-items: center; gap: 5px; margin-top: 7px; padding: 5px 8px; border-radius: 999px; background: rgba(255,255,255,.93); font-size: 10px; line-height: 1; letter-spacing: .055em; font-weight: 950; box-shadow: 0 5px 14px rgba(0,0,0,.12); }
.rd-home-status-silver { color: #646a70; }
.rd-home-status-gold { color: #9b6900; }
.rd-home-status-platinum { color: #4a5360; }
.rd-home-map-popup-body { padding: 15px; }
.rd-home-map-popup-name { color: #111; font-size: 19px; line-height: 1.18; font-weight: 950; }
.rd-home-map-popup-location { margin-top: 4px; color: #666; font-size: 13.5px; line-height: 1.45; }
.rd-home-map-popup-report { margin-top: 12px; padding: 9px 10px; border: 1px solid rgba(244,124,32,.15); border-radius: 11px; background: rgba(244,124,32,.08); color: #444; font-size: 12.5px; line-height: 1.4; }
.rd-home-map-popup-link { display: inline-flex; margin-top: 12px; color: var(--rd-orange-dark) !important; font-size: 13px; line-height: 1.3; font-weight: 950; text-decoration: none; }

@media (max-width: 1050px) {
    .rd-module-grid.rd-module-grid-two { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .rd-listener-map-heading { display: block; }
    .rd-map-recognition-key { justify-content: flex-start; margin-top: 1rem; }
    #rd-listener-map-home { height: 365px; }
    .rd-listener-map-footer { display: block; }
    .rd-listener-map-footer a { display: inline-block; margin-top: .6rem; }
    .rd-mobile-featured { display: block; margin-bottom: .75rem; }
    .rd-mobile-featured:empty { display: none; }
    .rd-map-rotation-controls { bottom: .7rem; }
    .rd-map-rotation-toggle { display: none; }
}

@media (max-width: 430px) {
    #rd-listener-map-home { height: 330px; }
    .rd-map-key-badge { font-size: .65rem; }
}

.rd-mobile-featured {
    overflow: hidden;
    border: 1px solid rgba(244,124,32,.18);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
.rd-mobile-featured-head { display:flex; align-items:center; justify-content:space-between; gap:.6rem; padding:.6rem .75rem; background:linear-gradient(135deg,#ee6f12,#f58a32); color:#fff; }
.rd-mobile-featured-brand { font-size:.62rem; letter-spacing:.08em; font-weight:950; }
.rd-mobile-featured-status { padding:.28rem .45rem; border-radius:999px; background:rgba(255,255,255,.94); color:#7b3a0c; font-size:.56rem; font-weight:950; white-space:nowrap; }
.rd-mobile-featured-body { padding:.7rem .75rem; }
.rd-mobile-featured-name { color:#111; font-size:1.05rem; line-height:1.2; font-weight:950; }
.rd-mobile-featured-meta,.rd-mobile-featured-count { margin-top:.25rem; color:#666; font-size:.78rem; line-height:1.4; }

/* v0.8.5: full listener recognition cards and dynamic map control bar */
.rd-listener-map-heading { display:block; margin-bottom:1.4rem; }
.rd-listener-map-heading > div:first-child > p:last-child { max-width:900px; }
.rd-recognition-cards { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.1rem; margin:0 0 1.35rem; }
.rd-recognition-card { position:relative; display:flex; justify-content:space-between; gap:1rem; min-height:190px; padding:1.45rem 1.55rem; overflow:hidden; border:1px solid rgba(18,49,74,.13); border-radius:18px; background:#fff; box-shadow:0 10px 28px rgba(24,49,66,.045); }
.rd-recognition-copy { position:relative; z-index:2; max-width:78%; }
.rd-recognition-card h3 { display:flex; align-items:center; gap:.65rem; margin:0 0 .7rem; color:var(--rd-navy); font-size:1.25rem; line-height:1.15; }
.rd-recognition-card strong { display:block; margin-bottom:.65rem; color:#111; font-size:.93rem; }
.rd-recognition-card p { margin:0; color:var(--rd-muted); font-size:.92rem; line-height:1.5; }
.rd-recognition-symbol { font-size:1.35rem; }
.rd-recognition-emblem { position:absolute; right:1.35rem; top:50%; display:flex; align-items:center; justify-content:center; width:5.2rem; height:5.2rem; border-radius:50%; font-size:2.2rem; transform:translateY(-50%); }
.rd-recognition-card-silver .rd-recognition-symbol { color:#8d949b; }
.rd-recognition-card-silver .rd-recognition-emblem { color:#56606b; background:rgba(143,150,157,.13); }
.rd-recognition-card-gold { border-color:rgba(196,130,0,.38); }
.rd-recognition-card-gold h3,.rd-recognition-card-gold .rd-recognition-symbol { color:#a97000; }
.rd-recognition-card-gold .rd-recognition-emblem { color:#b77a00; background:rgba(244,200,76,.2); }
.rd-recognition-card-platinum .rd-recognition-symbol { color:#3f4b59; }
.rd-recognition-card-platinum .rd-recognition-emblem { color:#344252; background:rgba(123,165,197,.16); }
.rd-listener-map-card { padding:1rem 1rem .7rem; }
#rd-listener-map-home { height:500px; }
.rd-map-control-bar { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:1rem; padding:1rem .65rem .9rem; border-bottom:1px solid rgba(18,49,74,.08); }
.rd-map-control-left,.rd-map-control-right { display:flex; align-items:center; gap:.75rem; }
.rd-map-control-right { justify-content:flex-end; }
.rd-map-control-button,.rd-map-auto-info { min-height:50px; border:1px solid rgba(18,49,74,.13); border-radius:12px; background:#fff; color:var(--rd-navy); box-shadow:0 5px 16px rgba(24,49,66,.035); }
.rd-map-control-button { display:inline-flex; align-items:center; justify-content:center; gap:.55rem; padding:.75rem 1rem; font:inherit; font-size:.82rem; font-weight:900; cursor:pointer; }
.rd-map-control-button:hover { border-color:rgba(244,124,32,.4); color:var(--rd-orange-dark); background:rgba(244,124,32,.04); }
.rd-map-pause-button { min-width:145px; }
.rd-map-control-icon { font-size:1rem; letter-spacing:-.15em; }
.rd-map-auto-info { display:flex; align-items:center; gap:.65rem; padding:.55rem .85rem; }
.rd-map-auto-info span:last-child { display:flex; flex-direction:column; }
.rd-map-auto-info strong { font-size:.78rem; line-height:1.2; }
.rd-map-auto-info small { margin-top:.1rem; color:var(--rd-muted); font-size:.7rem; }
.rd-map-auto-icon { font-size:1.55rem; }
.rd-map-current-listener { min-width:190px; text-align:center; color:var(--rd-navy); }
.rd-map-current-listener span { display:block; font-size:.88rem; }
.rd-map-current-listener strong { color:var(--rd-orange-dark); }
.rd-map-current-listener small { display:block; margin-top:.25rem; color:var(--rd-muted); font-size:.75rem; }
.rd-listener-map-footer { padding:.85rem .3rem .15rem; font-size:.82rem; }

@media (max-width:1050px) {
  .rd-recognition-cards { grid-template-columns:1fr; }
  .rd-recognition-card { min-height:150px; }
  .rd-recognition-copy { max-width:86%; }
  .rd-map-control-bar { grid-template-columns:1fr; }
  .rd-map-control-left,.rd-map-control-right { justify-content:center; }
  .rd-map-current-listener { order:-1; }
}
@media (max-width:820px) {
  .rd-recognition-card { padding:1.15rem; min-height:145px; }
  .rd-recognition-copy { max-width:78%; }
  .rd-recognition-emblem { right:1rem; width:4.2rem; height:4.2rem; font-size:1.8rem; }
  #rd-listener-map-home { height:390px; }
  .rd-map-control-left { display:grid; grid-template-columns:1fr 1fr; width:100%; }
  .rd-map-control-right { display:grid; grid-template-columns:1fr 1fr; width:100%; }
  .rd-map-control-button,.rd-map-auto-info { width:100%; }
  .rd-map-control-button span { display:inline; }
  .rd-listener-map-footer { display:flex; flex-direction:column; align-items:flex-start; }
}
@media (max-width:520px) {
  .rd-recognition-copy { max-width:100%; padding-right:3.3rem; }
  .rd-recognition-card h3 { font-size:1.05rem; }
  .rd-recognition-card p { font-size:.82rem; }
  .rd-recognition-emblem { width:3.2rem; height:3.2rem; font-size:1.35rem; }
  .rd-map-control-left { grid-template-columns:1fr; }
  #rd-listener-map-home { height:340px; }
}

/* v0.8.6: compact listener map layout for laptop screens */
@media (min-width:1051px) and (max-width:1450px) {
  .rd-listener-map-heading { margin-bottom:1rem; }
  .rd-recognition-cards { gap:.75rem; margin-bottom:.9rem; }
  .rd-recognition-card {
    min-height:112px;
    padding:1rem 1.05rem;
    border-radius:15px;
  }
  .rd-recognition-copy { max-width:calc(100% - 3.5rem); }
  .rd-recognition-card h3 { margin-bottom:.45rem; font-size:1.05rem; }
  .rd-recognition-card strong { margin:0; font-size:.82rem; line-height:1.35; }
  .rd-recognition-card p { display:none; }
  .rd-recognition-symbol { font-size:1rem; }
  .rd-recognition-emblem {
    right:.9rem;
    width:3.35rem;
    height:3.35rem;
    font-size:1.4rem;
  }
  .rd-listener-map-card { padding:.75rem .75rem .45rem; }
  #rd-listener-map-home { height:455px; }
  .rd-map-control-bar {
    gap:.65rem;
    padding:.65rem .35rem .55rem;
  }
  .rd-map-control-left,.rd-map-control-right { gap:.5rem; }
  .rd-map-control-button,.rd-map-auto-info {
    min-height:42px;
    border-radius:10px;
  }
  .rd-map-control-button { padding:.55rem .72rem; font-size:.75rem; }
  .rd-map-pause-button { min-width:122px; }
  .rd-map-auto-info { padding:.4rem .65rem; }
  .rd-map-auto-info strong { font-size:.71rem; }
  .rd-map-auto-info small { font-size:.63rem; }
  .rd-map-auto-icon { font-size:1.25rem; }
  .rd-map-current-listener { min-width:165px; }
  .rd-map-current-listener span { font-size:.78rem; }
  .rd-map-current-listener small { margin-top:.12rem; font-size:.68rem; }
  .rd-listener-map-footer { padding:.6rem .2rem .05rem; font-size:.75rem; }
  .rd-home-map-popup { min-width:225px; }
  .rd-home-map-popup-head { padding:9px 36px 8px 12px; }
  .rd-home-map-popup-brand { font-size:10px; }
  .rd-home-map-record { margin-top:4px; font-size:9px; }
  .rd-home-map-status { margin-top:5px; padding:4px 7px; font-size:9px; }
  .rd-home-map-popup-body { padding:12px; }
  .rd-home-map-popup-name { font-size:17px; }
  .rd-home-map-popup-location { font-size:12.5px; }
  .rd-home-map-popup-report { margin-top:9px; padding:7px 9px; font-size:11.5px; }
  .rd-home-map-popup-link { margin-top:9px; font-size:12px; }
}


/* v0.8.7: true one-screen laptop composition */
@media (min-width:1051px) and (max-width:1450px) {
  .rd-listener-map-section { padding-top:2.1rem; padding-bottom:2.1rem; }
  .rd-listener-map-heading { margin-bottom:.75rem; }
  .rd-listener-map-heading h2 { font-size:clamp(2rem,3.4vw,3.4rem); line-height:.98; }
  .rd-listener-map-heading > div:first-child > p:last-child { margin-top:.55rem; font-size:.95rem; }

  .rd-recognition-cards {
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:.65rem;
    margin-bottom:.7rem;
  }
  .rd-recognition-card {
    min-height:86px;
    padding:.72rem .82rem;
    align-items:center;
    border-radius:14px;
  }
  .rd-recognition-copy { max-width:calc(100% - 2.75rem); }
  .rd-recognition-card h3 {
    margin:0 0 .28rem;
    gap:.45rem;
    font-size:.96rem;
    line-height:1.1;
  }
  .rd-recognition-card strong {
    margin:0;
    font-size:.72rem;
    line-height:1.25;
  }
  .rd-recognition-card p { display:none; }
  .rd-recognition-emblem {
    right:.7rem;
    width:2.65rem;
    height:2.65rem;
    font-size:1.15rem;
  }

  .rd-listener-map-card { padding:.62rem .62rem .35rem; border-radius:18px; }
  #rd-listener-map-home { height:390px; border-radius:14px; }

  .rd-map-control-bar {
    grid-template-columns:auto 1fr auto;
    gap:.5rem;
    padding:.5rem .15rem .45rem;
  }
  .rd-map-control-button,.rd-map-auto-info { min-height:38px; }
  .rd-map-control-button { padding:.45rem .62rem; font-size:.69rem; }
  .rd-map-pause-button { min-width:108px; }
  .rd-map-auto-info { padding:.32rem .55rem; }
  .rd-map-auto-info strong { font-size:.66rem; }
  .rd-map-auto-info small { font-size:.59rem; }
  .rd-map-auto-icon { font-size:1.1rem; }
  .rd-map-current-listener { min-width:145px; }
  .rd-map-current-listener span { font-size:.71rem; }
  .rd-map-current-listener small { font-size:.62rem; }
  .rd-listener-map-footer { padding:.45rem .15rem .02rem; font-size:.68rem; }

  .rd-home-map-popup { min-width:205px; }
  .rd-home-map-popup-head { min-height:50px; padding:8px 32px 7px 10px; }
  .rd-home-map-popup-brand { font-size:9px; }
  .rd-home-map-record { font-size:8px; }
  .rd-home-map-popup-body { padding:10px; }
  .rd-home-map-popup-name { font-size:15px; }
  .rd-home-map-popup-location { font-size:11.5px; }
  .rd-home-map-popup-report { margin-top:7px; padding:6px 8px; font-size:10.5px; }
  .rd-home-map-popup-link { margin-top:7px; font-size:11px; }
}

/* v0.8.8: Core-powered community score and listener feed */
.rd-community-section{padding:72px 0;background:linear-gradient(180deg,#fff 0%,#fffaf6 100%)}
.rd-community-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:28px;margin-bottom:24px}
.rd-community-heading h2{max-width:760px;margin:.2rem 0 .55rem;font-size:clamp(2rem,3vw,3.7rem);line-height:.98;letter-spacing:-.045em}
.rd-community-heading p:last-child{max-width:760px;color:var(--rd-muted,#667085)}
.rd-community-submit{flex:0 0 auto;padding:14px 20px;border:1px solid rgba(13,19,35,.12);border-radius:999px;background:#fff;font-weight:800;box-shadow:0 10px 28px rgba(13,19,35,.06)}
.rd-community-grid{display:grid;grid-template-columns:minmax(320px,.82fr) minmax(0,1.18fr);gap:18px}
.rd-community-score-card,.rd-community-feed-card{min-height:340px;padding:24px;border:1px solid rgba(13,19,35,.08);border-radius:24px;background:#fff;box-shadow:0 18px 44px rgba(13,19,35,.07)}
.rd-community-score-card{background:radial-gradient(circle at 92% 8%,rgba(255,122,27,.13),transparent 29%),#fff}
.rd-community-eyebrow{display:block;margin-bottom:8px;color:#f47721;font-size:.76rem;font-weight:900;letter-spacing:.11em;text-transform:uppercase}
.rd-community-score-top{display:flex;align-items:flex-start;justify-content:space-between;gap:20px}
.rd-community-score-line{display:flex;align-items:flex-end;gap:6px;color:#0d1323}
.rd-community-score-line strong{font-size:4rem;line-height:.9;letter-spacing:-.06em}
.rd-community-score-line span{padding-bottom:7px;font-size:1.1rem;font-weight:800;color:#687080}
.rd-community-stars{margin:12px 0 8px;color:#ff781f;font-size:1.55rem;letter-spacing:.1em;white-space:nowrap}
.rd-community-score-top p{font-size:.92rem;color:#687080}
.rd-community-score-badge{display:flex;align-items:center;gap:9px;padding:11px 13px;border-radius:16px;background:#fff5eb;border:1px solid rgba(244,119,33,.18)}
.rd-community-score-badge span{font-size:1.6rem;color:#ff781f}.rd-community-score-badge small{font-size:.72rem;line-height:1.15;font-weight:850;text-transform:uppercase;letter-spacing:.06em}
.rd-community-rating-bars{display:grid;gap:7px;margin:22px 0 18px}
.rd-community-rating-row{display:grid;grid-template-columns:28px 1fr 34px;align-items:center;gap:8px;font-size:.78rem;color:#667085}
.rd-community-rating-track{height:7px;border-radius:999px;background:#edf0f4;overflow:hidden}
.rd-community-rating-fill{height:100%;border-radius:inherit;background:#ff781f}
.rd-community-metrics{display:grid;grid-template-columns:1fr 1fr;gap:10px;padding-top:15px;border-top:1px solid rgba(13,19,35,.08)}
.rd-community-metrics div{display:flex;align-items:flex-end;justify-content:space-between;gap:10px;padding:10px 12px;border-radius:14px;background:#f8f9fb}
.rd-community-metrics span{font-size:.76rem;color:#687080}.rd-community-metrics strong{font-size:1.05rem;color:#0d1323}
.rd-community-feed-card{display:flex;flex-direction:column}
.rd-community-feed-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}.rd-community-feed-head h3{margin:0;font-size:1.45rem}.rd-community-feed-counter{padding:6px 10px;border-radius:999px;background:#f5f6f8;color:#667085;font-size:.75rem;font-weight:850}
.rd-community-feed-stage{flex:1;display:flex;align-items:stretch;margin-top:18px}
.rd-community-report-card{width:100%;display:grid;grid-template-columns:minmax(150px,.42fr) minmax(0,.58fr);gap:18px;padding:20px;border-radius:20px;background:linear-gradient(135deg,#101828,#182237);color:#fff;opacity:1;transform:translateY(0);transition:opacity .22s ease,transform .22s ease}.rd-community-report-card.is-changing{opacity:.18;transform:translateY(4px)}
.rd-community-report-meta{display:flex;flex-direction:column;justify-content:space-between;gap:16px}
.rd-community-report-location{font-size:1.45rem;line-height:1.05;font-weight:900}.rd-community-report-country{display:block;margin-top:5px;font-size:.9rem;font-weight:600;color:rgba(255,255,255,.68)}
.rd-community-report-tags{display:flex;flex-wrap:wrap;gap:7px}.rd-community-report-tag{padding:6px 9px;border-radius:999px;background:rgba(255,255,255,.09);font-size:.73rem;font-weight:800}
.rd-community-report-copy{display:flex;flex-direction:column;justify-content:center;padding-left:18px;border-left:1px solid rgba(255,255,255,.14)}
.rd-community-report-stars{color:#ff8a36;letter-spacing:.09em;font-size:1.05rem}.rd-community-report-quote{margin:12px 0;font-size:1.2rem;line-height:1.35;font-weight:750}.rd-community-report-setup{font-size:.78rem;line-height:1.55;color:rgba(255,255,255,.68)}
.rd-community-feed-controls{display:flex;align-items:center;justify-content:flex-end;gap:10px;margin-top:12px}.rd-community-feed-controls button{width:36px;height:36px;border:1px solid rgba(13,19,35,.1);border-radius:50%;background:#fff;font-weight:900;cursor:pointer}.rd-community-feed-controls span{margin-right:auto;font-size:.76rem;color:#7b8494}
.rd-community-loading{color:#7b8494;font-size:.9rem}
.rd-module-grid-one{grid-template-columns:1fr}
@media (min-width:1024px) and (max-width:1440px){.rd-community-section{padding:46px 0}.rd-community-heading{margin-bottom:17px}.rd-community-heading h2{font-size:2.45rem}.rd-community-score-card,.rd-community-feed-card{min-height:286px;padding:19px}.rd-community-score-line strong{font-size:3.15rem}.rd-community-rating-bars{margin:15px 0 12px}.rd-community-report-card{padding:16px}.rd-community-report-quote{font-size:1.02rem}.rd-community-report-location{font-size:1.2rem}}
@media(max-width:900px){.rd-community-heading{align-items:flex-start;flex-direction:column}.rd-community-grid{grid-template-columns:1fr}.rd-community-score-card,.rd-community-feed-card{min-height:0}}
@media(max-width:620px){.rd-community-section{padding:44px 0}.rd-community-heading h2{font-size:2.25rem}.rd-community-submit{width:100%;text-align:center}.rd-community-score-card,.rd-community-feed-card{padding:18px;border-radius:20px}.rd-community-score-badge{display:none}.rd-community-score-line strong{font-size:3.2rem}.rd-community-report-card{grid-template-columns:1fr}.rd-community-report-copy{padding:14px 0 0;border-left:0;border-top:1px solid rgba(255,255,255,.14)}.rd-community-metrics{grid-template-columns:1fr}}

/* v0.9.0: homepage flow — community directly after hero, compact transition into Listener Map */
.rd-community-section{
  padding-top:clamp(2.75rem,4.5vw,4.5rem);
  padding-bottom:clamp(2.75rem,4.5vw,4.5rem);
}
.rd-community-section + .rd-listener-map-section{
  padding-top:clamp(2.5rem,4vw,4rem);
  border-top:1px solid rgba(13,19,35,.06);
}
.rd-listener-map-heading{
  align-items:flex-end;
  margin-bottom:1.15rem;
}
.rd-listener-map-heading > div:first-child{
  max-width:850px;
}
.rd-listener-map-heading h2{
  max-width:820px;
}
.rd-listener-map-heading-link{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border:1px solid rgba(13,19,35,.12);
  border-radius:999px;
  background:#fff;
  color:var(--rd-navy);
  font-weight:850;
  box-shadow:0 10px 28px rgba(13,19,35,.05);
  white-space:nowrap;
}
.rd-listener-map-heading-link:hover{
  border-color:rgba(244,119,33,.35);
  color:var(--rd-orange);
}
@media (min-width:1024px) and (max-width:1440px){
  .rd-community-section{padding-top:2.6rem;padding-bottom:2.6rem}
  .rd-community-section + .rd-listener-map-section{padding-top:2.3rem}
  .rd-listener-map-heading{margin-bottom:.95rem}
}
@media (max-width:900px){
  .rd-listener-map-heading{align-items:flex-start;flex-direction:column}
  .rd-listener-map-heading-link{align-self:flex-start}
}
@media (max-width:620px){
  .rd-community-section{padding-top:2.35rem;padding-bottom:2.35rem}
  .rd-community-section + .rd-listener-map-section{padding-top:2.1rem}
  .rd-listener-map-heading-link{width:100%}
}


/* v0.9.1: static latest-five verified reception feed from Radio Delta Core */
.rd-community-feed-stage{display:block;overflow:hidden}
.rd-community-list{display:grid;gap:0;border-top:1px solid rgba(13,19,35,.07)}
.rd-community-list-item{display:grid;grid-template-columns:minmax(150px,.38fr) minmax(0,.62fr);gap:16px;padding:13px 2px;border-bottom:1px solid rgba(13,19,35,.07)}
.rd-community-list-item:last-child{border-bottom:0}
.rd-community-list-main{min-width:0}
.rd-community-list-location{font-size:.98rem;line-height:1.15;font-weight:900;color:#0d1323}
.rd-community-list-country{margin-top:2px;font-size:.76rem;color:#747d8e}
.rd-community-list-meta{display:flex;flex-wrap:wrap;gap:5px;margin-top:7px}
.rd-community-list-meta span{padding:4px 7px;border-radius:999px;background:#f3f5f8;color:#3f4858;font-size:.65rem;font-weight:800}
.rd-community-list-copy{min-width:0;padding-left:15px;border-left:1px solid rgba(13,19,35,.08)}
.rd-community-list-stars{color:#ff781f;font-size:.82rem;letter-spacing:.06em}
.rd-community-list-copy blockquote{margin:5px 0 4px;color:#1f2937;font-size:.82rem;line-height:1.35;font-weight:700;font-style:normal}
.rd-community-list-copy small,.rd-community-list-noquote{display:block;margin:0;color:#7a8392;font-size:.67rem;line-height:1.35}
.rd-community-feed-card{min-height:0}
.rd-community-feed-counter{white-space:nowrap}
@media (min-width:1024px) and (max-width:1440px){
  .rd-community-list-item{padding:9px 0;gap:12px}
  .rd-community-list-location{font-size:.88rem}
  .rd-community-list-copy{padding-left:11px}
  .rd-community-list-copy blockquote{font-size:.74rem;line-height:1.28}
  .rd-community-list-copy small,.rd-community-list-noquote{font-size:.61rem}
  .rd-community-list-meta{margin-top:5px}
  .rd-community-list-meta span{font-size:.58rem;padding:3px 6px}
}
@media(max-width:620px){
  .rd-community-list-item{grid-template-columns:1fr;gap:8px;padding:14px 0}
  .rd-community-list-copy{padding:0;border-left:0}
}


/* v0.9.2 — five latest Core reports with listener names */
.rd-community-list-name{font-size:1rem;line-height:1.15;font-weight:950;color:#0d1323}
.rd-community-list-location{margin-top:2px;font-size:.73rem;line-height:1.25;font-weight:600;color:#747d8e}
.rd-community-list-item{padding:10px 2px;gap:14px}
.rd-community-list-copy blockquote{margin:3px 0;color:#1f2937;font-size:.77rem;line-height:1.28;font-weight:700;font-style:normal;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.rd-community-list-copy small{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rd-community-list-stars{font-size:.75rem}
@media (min-width:1024px) and (max-width:1440px){
  .rd-community-list-item{padding:7px 0;gap:10px}
  .rd-community-list-name{font-size:.84rem}
  .rd-community-list-location{font-size:.63rem}
  .rd-community-list-copy{padding-left:10px}
  .rd-community-list-copy blockquote{font-size:.67rem;line-height:1.22;-webkit-line-clamp:1}
  .rd-community-list-copy small{font-size:.56rem}
  .rd-community-list-stars{font-size:.66rem}
  .rd-community-list-meta span{font-size:.54rem;padding:3px 5px}
}
@media(max-width:620px){
  .rd-community-list-item{grid-template-columns:1fr;gap:7px;padding:13px 0}
  .rd-community-list-copy{padding:0;border-left:0}
  .rd-community-list-copy blockquote{-webkit-line-clamp:3}
  .rd-community-list-copy small{white-space:normal}
}


/* v0.9.3 — community polish and compact section flow */
.rd-community-section > .rd-section-inner,
.rd-listener-map-section > .rd-section-inner{
  padding-top:0;
  padding-bottom:0;
}
.rd-community-section{
  padding-top:clamp(2.5rem,4vw,4rem);
  padding-bottom:clamp(2.1rem,3.4vw,3.25rem);
}
.rd-community-section + .rd-listener-map-section{
  padding-top:clamp(1.6rem,2.5vw,2.4rem);
  padding-bottom:clamp(2.5rem,4vw,4rem);
}
.rd-community-stars{font-size:1.38rem;letter-spacing:.085em}
.rd-community-rating-track{height:9px}
.rd-community-rating-row strong{color:#344054;font-weight:900}
.rd-community-metrics div:first-child{align-items:center}
.rd-community-metrics div:first-child span{max-width:125px;line-height:1.2}
.rd-community-list-item{
  border-radius:12px;
  transition:background-color .18s ease,transform .18s ease;
}
.rd-community-list-item:hover{
  background:#fffaf5;
  transform:translateX(2px);
}
.rd-community-list-name{
  display:flex;
  align-items:center;
  gap:.42rem;
  font-weight:1000;
}
.rd-community-country-flag{font-size:1rem;line-height:1;flex:0 0 auto}
.rd-community-list-stars{font-size:.68rem;letter-spacing:.045em}
.rd-community-list-copy small{font-size:.61rem;color:#858d9b}
.rd-community-list-copy blockquote{max-width:100%}
@media (min-width:1024px) and (max-width:1440px){
  .rd-community-section{padding-top:2.15rem;padding-bottom:1.75rem}
  .rd-community-section + .rd-listener-map-section{padding-top:1.45rem;padding-bottom:2.2rem}
  .rd-community-stars{font-size:1.22rem}
  .rd-community-rating-track{height:8px}
  .rd-community-country-flag{font-size:.82rem}
  .rd-community-list-stars{font-size:.61rem}
  .rd-community-list-copy small{font-size:.53rem}
}
@media(max-width:620px){
  .rd-community-section{padding-top:2rem;padding-bottom:1.7rem}
  .rd-community-section + .rd-listener-map-section{padding-top:1.4rem}
  .rd-community-country-flag{font-size:.95rem}
}


/* v0.9.4 — compact Listener Map intro on laptop so the map remains visible */
@media (min-width:1024px) and (max-width:1440px){
  .rd-listener-map-section{
    padding-top:1rem!important;
  }
  .rd-listener-map-heading{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    column-gap:1.4rem;
    row-gap:.45rem;
    align-items:center;
    margin-bottom:.8rem;
  }
  .rd-listener-map-heading > div:first-child{
    max-width:none;
  }
  .rd-listener-map-heading .rd-kicker{
    margin-bottom:.32rem;
  }
  .rd-listener-map-heading h2{
    max-width:760px;
    margin-bottom:.35rem;
    font-size:2.05rem;
    line-height:1.02;
  }
  .rd-listener-map-heading p:not(.rd-kicker){
    max-width:860px;
    margin:0;
    font-size:.92rem;
    line-height:1.4;
  }
  .rd-listener-map-heading-link{
    grid-column:2;
    grid-row:1 / span 2;
    align-self:center;
    padding:11px 16px;
    font-size:.9rem;
  }
  .rd-recognition-cards{
    margin-bottom:.65rem;
  }
}

@media (min-width:1024px) and (max-height:900px){
  .rd-listener-map-heading p:not(.rd-kicker){
    display:none;
  }
  .rd-listener-map-heading h2{
    margin-bottom:0;
  }
  .rd-listener-map-heading{
    margin-bottom:.65rem;
  }
}


/* v0.9.8 — viewport-aware desktop layout
   Keeps complete homepage modules visible on wide desktop screens with limited height. */
@media (min-width: 1000px) {
  .rd-community-grid{
    align-items:start;
  }
  .rd-community-score-card,
  .rd-community-feed-card{
    min-height:0;
  }
}

/* Wide desktop and iMac-style screens: prevent oversized editorial layout. */
@media (min-width: 1441px) {
  .rd-community-section{
    padding-top:clamp(2.1rem,3.2vh,3rem);
    padding-bottom:clamp(2.1rem,3.2vh,3rem);
  }
  .rd-community-heading{
    margin-bottom:1.15rem;
  }
  .rd-community-heading h2{
    max-width:900px;
    font-size:clamp(2.35rem,2.55vw,3.1rem);
    line-height:1;
  }
  .rd-community-score-card,
  .rd-community-feed-card{
    padding:1.25rem;
  }
  .rd-community-score-line strong{
    font-size:3.35rem;
  }
  .rd-community-rating-bars{
    margin:1rem 0 .85rem;
  }

  .rd-community-section + .rd-listener-map-section{
    padding-top:2rem;
    padding-bottom:2.5rem;
  }
  .rd-listener-map-heading{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    column-gap:1.5rem;
    margin-bottom:.9rem;
  }
  .rd-listener-map-heading > div:first-child{
    max-width:none;
  }
  .rd-listener-map-heading h2{
    max-width:920px;
    margin:.2rem 0 .35rem;
    font-size:clamp(2.35rem,3vw,3.25rem);
    line-height:.98;
  }
  .rd-listener-map-heading p:not(.rd-kicker){
    max-width:900px;
    margin:.35rem 0 0;
    font-size:.95rem;
    line-height:1.4;
  }
  .rd-listener-map-heading-link{
    grid-column:2;
    grid-row:1;
    align-self:center;
  }
  .rd-recognition-cards{
    gap:.8rem;
    margin-bottom:.8rem;
  }
  .rd-recognition-card{
    min-height:112px;
    padding:1rem 1.15rem;
  }
  .rd-recognition-card h3{
    margin-bottom:.42rem;
    font-size:1.02rem;
  }
  .rd-recognition-card strong{
    margin-bottom:.38rem;
    font-size:.78rem;
  }
  .rd-recognition-card p{
    font-size:.76rem;
    line-height:1.35;
  }
  .rd-recognition-emblem{
    right:1rem;
    width:3.8rem;
    height:3.8rem;
    font-size:1.65rem;
  }
  #rd-listener-map-home{
    height:430px;
  }
}

/* Height is the decisive constraint in Customizer/live preview, regardless of width. */
@media (min-width: 1000px) and (max-height: 950px) {
  .rd-community-section{
    padding-top:1.8rem!important;
    padding-bottom:1.8rem!important;
  }
  .rd-community-heading{
    margin-bottom:.9rem!important;
  }
  .rd-community-heading h2{
    margin-bottom:.3rem;
    font-size:2.25rem!important;
    line-height:1!important;
  }
  .rd-community-heading p:last-child{
    font-size:.86rem;
  }
  .rd-community-submit{
    padding:10px 15px;
    font-size:.82rem;
  }
  .rd-community-score-card,
  .rd-community-feed-card{
    padding:1rem!important;
    border-radius:20px;
  }
  .rd-community-score-line strong{
    font-size:2.85rem!important;
  }
  .rd-community-stars{
    margin:8px 0 5px;
    font-size:1.05rem;
  }
  .rd-community-rating-bars{
    gap:5px;
    margin:.8rem 0 .65rem!important;
  }
  .rd-community-rating-row{
    font-size:.68rem;
  }
  .rd-community-rating-track{
    height:6px;
  }
  .rd-community-metrics{
    padding-top:.65rem;
  }
  .rd-community-metrics div{
    padding:8px 10px;
  }
  .rd-community-list-item{
    padding:7px 0;
  }

  .rd-community-section + .rd-listener-map-section{
    padding-top:1.25rem!important;
    padding-bottom:1.8rem!important;
  }
  .rd-listener-map-heading{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    align-items:center!important;
    column-gap:1.25rem!important;
    margin-bottom:.65rem!important;
  }
  .rd-listener-map-heading .rd-kicker{
    margin-bottom:.2rem;
  }
  .rd-listener-map-heading h2{
    max-width:900px!important;
    margin:0!important;
    font-size:2.05rem!important;
    line-height:1!important;
  }
  .rd-listener-map-heading p:not(.rd-kicker){
    display:none!important;
  }
  .rd-listener-map-heading-link{
    grid-column:2!important;
    grid-row:1!important;
    padding:10px 14px!important;
    font-size:.8rem!important;
  }
  .rd-recognition-cards{
    gap:.65rem!important;
    margin-bottom:.65rem!important;
  }
  .rd-recognition-card{
    min-height:82px!important;
    padding:.75rem .9rem!important;
  }
  .rd-recognition-copy{
    max-width:82%;
  }
  .rd-recognition-card h3{
    margin-bottom:.28rem!important;
    font-size:.92rem!important;
  }
  .rd-recognition-card strong{
    margin:0!important;
    font-size:.7rem!important;
  }
  .rd-recognition-card p{
    display:none!important;
  }
  .rd-recognition-emblem{
    right:.8rem!important;
    width:3rem!important;
    height:3rem!important;
    font-size:1.25rem!important;
  }
  .rd-listener-map-card{
    padding:.65rem .65rem .4rem!important;
  }
  #rd-listener-map-home{
    height:360px!important;
  }
  .rd-listener-map-footer{
    padding:.55rem .2rem .1rem!important;
    font-size:.72rem;
  }
  .rd-map-control-bar{
    min-height:46px;
  }
  .rd-home-map-popup{
    min-width:210px;
  }
  .rd-home-map-popup-head{
    min-height:48px;
    padding:8px 34px 7px 11px;
  }
  .rd-home-map-popup-body{
    padding:10px;
  }
  .rd-home-map-popup-name{
    font-size:15px;
  }
  .rd-home-map-popup-location{
    font-size:11px;
  }
  .rd-home-map-popup-report{
    margin-top:6px;
    padding:5px 7px;
    font-size:10px;
  }
  .rd-home-map-popup-link{
    margin-top:6px;
    font-size:10px;
  }
}

/* Very low desktop preview: preserve the module, not decorative copy. */
@media (min-width: 1000px) and (max-height: 780px) {
  .rd-community-heading p:last-child,
  .rd-community-score-top p{
    display:none;
  }
  .rd-community-section{
    padding-top:1.35rem!important;
    padding-bottom:1.35rem!important;
  }
  .rd-community-heading h2{
    font-size:1.95rem!important;
  }
  .rd-community-rating-bars{
    margin:.55rem 0!important;
  }
  .rd-community-metrics{
    padding-top:.5rem;
  }
  .rd-listener-map-heading h2{
    font-size:1.8rem!important;
  }
  #rd-listener-map-home{
    height:315px!important;
  }
}

/* =========================================================
   v0.9.9 — Compact navigation drawer
   ========================================================= */
.rd-menu-panel {
    inset: 0;
    padding: 0;
    background: transparent;
    transform: none;
    overflow: hidden;
}

.rd-menu-panel[aria-hidden="true"] {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.rd-menu-panel[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rd-menu-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(6, 17, 29, .48);
    backdrop-filter: blur(5px);
    cursor: pointer;
    opacity: 0;
    transition: opacity .28s ease;
}

.rd-menu-panel[aria-hidden="false"] .rd-menu-backdrop {
    opacity: 1;
}

.rd-menu-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(460px, 92vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 7.25rem 2.25rem 2rem;
    background: linear-gradient(155deg, #fffefa 0%, #f7f2e8 100%);
    border-left: 1px solid rgba(18,49,74,.12);
    box-shadow: -24px 0 70px rgba(5,17,29,.22);
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.22,.75,.25,1);
    overflow-y: auto;
}

.rd-menu-panel[aria-hidden="false"] .rd-menu-drawer {
    transform: translateX(0);
}

.rd-menu-drawer-head {
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(18,49,74,.12);
}

.rd-menu-drawer-head .rd-kicker {
    margin-bottom: .35rem;
}

.rd-menu-drawer-tagline {
    margin: 0;
    color: var(--rd-navy);
    font-size: 1.02rem;
    font-weight: 780;
    letter-spacing: -.015em;
}

.rd-menu-navigation {
    flex: 1 0 auto;
    padding: 1.25rem 0 2rem;
}

.rd-menu-compact li {
    border-bottom: 1px solid rgba(18,49,74,.11);
}

.rd-menu-compact a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--rd-navy);
    font-size: clamp(1.35rem, 2.1vw, 1.72rem);
    font-weight: 820;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.rd-menu-compact a:hover,
.rd-menu-compact a:focus {
    padding-left: 0;
    color: var(--rd-orange);
}

.rd-menu-arrow {
    flex: 0 0 auto;
    color: var(--rd-orange);
    font-size: 1.15rem;
    transition: transform .18s ease;
}

.rd-menu-compact a:hover .rd-menu-arrow,
.rd-menu-compact a:focus .rd-menu-arrow {
    transform: translateX(4px);
}

.rd-menu-drawer-footer {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(18,49,74,.12);
}

.rd-menu-identity-card {
    margin-bottom: 1rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(18,49,74,.10);
    border-radius: 12px;
    background: rgba(255,255,255,.48);
}

.rd-menu-identity-card p {
    margin: 0;
}

.rd-menu-identity-name {
    color: var(--rd-orange);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.rd-menu-identity-slogan {
    margin-top: .35rem !important;
    color: var(--rd-navy);
    font-size: 1rem;
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -.015em;
}

.rd-menu-identity-location {
    margin-top: .42rem !important;
    color: var(--rd-muted);
    font-size: .8rem;
    line-height: 1.45;
}

.rd-menu-report-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 54px;
    padding: .85rem 1.05rem;
    border-radius: 12px;
    background: var(--rd-orange);
    color: #fff;
    text-decoration: none;
    font-weight: 830;
    box-shadow: 0 12px 28px rgba(229,91,45,.22);
}

.rd-menu-report-cta:hover,
.rd-menu-report-cta:focus {
    color: #fff;
    transform: translateY(-1px);
}

html.rd-menu-is-open,
body.rd-menu-is-open {
    overflow: hidden;
}

@media (max-width: 620px) {
    .rd-menu-drawer {
        width: 100%;
        padding: 6.25rem 1.4rem 1.35rem;
    }

    .rd-menu-compact a {
        padding: .9rem 0;
        font-size: 1.42rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rd-menu-backdrop,
    .rd-menu-drawer {
        transition: none;
    }
}

/* v0.9.13 Homepage 2.0 final test: compact flow, restored map, core music discovery */
.rd-home-hero.rd-desktop-v2 {
    padding-top: .4rem;
}

.rd-v2-shell {
    min-height: 500px;
    padding: 2.4rem 0 1.7rem;
}

.rd-v2-copy .rd-lead {
    margin-top: 1.1rem;
}

.rd-hero-note {
    margin: .65rem 0 0;
    color: var(--rd-muted);
    font-size: .97rem;
    font-weight: 700;
}

.rd-v2-copy .rd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.25rem;
}

.rd-v2-copy .rd-actions .rd-button {
    min-height: 44px;
}

.rd-hero-facts {
    margin-bottom: 1.3rem;
}

.rd-home-music {
    padding: clamp(1.7rem, 3vw, 2.7rem) 0;
    background: #fff;
}

.rd-home-music-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rd-home-music-heading h2 {
    margin: 0;
    font-size: clamp(1.65rem, 2.2vw, 2.25rem);
    line-height: 1.04;
    letter-spacing: -.03em;
}

.rd-home-music-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: .55rem .9rem;
    border: 1px solid rgba(18,49,74,.14);
    border-radius: 999px;
    background: #fff;
    color: var(--rd-navy);
    font-size: .84rem;
    font-weight: 820;
    text-decoration: none;
}

.rd-home-music-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem;
}

.rd-home-music-card {
    border: 1px solid rgba(18,49,74,.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18,49,74,.06);
    padding: .95rem;
}

.rd-home-music-card h3 {
    margin: 0 0 .65rem;
    color: var(--rd-navy);
    font-size: 1rem;
    letter-spacing: .01em;
}

.rd-home-music-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .5rem;
}

.rd-home-music-item {
    display: grid;
    grid-template-columns: 30px 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: .55rem;
    padding: .45rem;
    border-radius: 10px;
    background: #f9fbfc;
}

.rd-home-music-art {
    width: 52px;
    height: 52px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #e9eef2;
    flex: 0 0 52px;
}

.rd-home-music-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rd-home-music-art-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18,49,74,.12), rgba(18,49,74,.05));
}

.rd-home-music-track {
    min-width: 0;
    display: grid;
    gap: .08rem;
}

.rd-home-music-track strong,
.rd-home-music-track small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rd-home-music-track strong {
    color: #13253a;
    font-size: .86rem;
    line-height: 1.2;
}

.rd-home-music-track small {
    color: #6d7a85;
    font-size: .75rem;
    line-height: 1.2;
}

.rd-home-music-count {
    color: #425363;
    font-size: .7rem;
    font-weight: 760;
    white-space: nowrap;
    justify-self: end;
}

.rd-listener-map-section {
    padding: clamp(1.8rem, 3vw, 2.8rem) 0;
}

.rd-listener-map-heading {
    margin-bottom: .85rem;
}

.rd-recognition-cards {
    display: none;
}

.rd-listener-map-card {
    padding: .7rem .7rem .45rem;
}

#rd-listener-map-home {
    height: min(44vh, 360px);
}

.rd-map-control-bar {
    padding: .75rem .35rem .7rem;
}

.rd-listener-map-footer {
    padding-top: .6rem;
}

.rd-home-modules {
    padding: clamp(1.7rem, 3vw, 2.7rem) 0;
}

.rd-module-card {
    min-height: 0;
    padding: 1rem;
}

.rd-module-card.rd-upcoming-card {
    gap: .75rem;
}

.rd-module-card.rd-upcoming-card .rd-kicker {
    margin-bottom: .25rem;
}

.rd-upcoming-list {
    gap: .65rem;
}

.rd-community-section {
    padding-top: clamp(1.7rem, 3vw, 2.8rem) !important;
    padding-bottom: clamp(1.8rem, 3vw, 2.9rem) !important;
}

.rd-community-heading {
    margin-bottom: .95rem;
}

@media (max-width: 900px) {
    .rd-v2-shell {
        min-height: 0;
        padding-top: 2rem;
        padding-bottom: 1.5rem;
        gap: 1.35rem;
    }

    .rd-v2-copy .rd-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .rd-home-music-heading {
        margin-bottom: .75rem;
    }

    #rd-listener-map-home {
        height: min(42vh, 320px);
    }
}

@media (max-width: 820px) {
    .rd-broadcast-inner {
        min-height: 54px;
        padding: .45rem 0;
        gap: .6rem;
        flex-wrap: nowrap;
        align-items: center;
    }

    .rd-status {
        flex: 0 0 auto;
    }

    .rd-status strong {
        font-size: .82rem;
        letter-spacing: .02em;
    }

    .rd-now-playing,
    .rd-next-broadcast {
        min-width: 0;
        flex: 1 1 auto;
        display: flex;
        align-items: baseline;
        gap: .38rem;
        line-height: 1.22;
    }

    .rd-broadcast-inner > * {
        min-width: 0;
    }

    .rd-next-broadcast span,
    .rd-next-broadcast strong,
    .rd-track {
        font-size: .78rem;
    }

    .rd-frequency {
        font-size: .76rem;
    }

    .rd-listen-link {
        padding-left: .55rem;
        font-size: .76rem;
    }

    .rd-v2-copy .rd-lead {
        margin-top: 1rem;
    }

    .rd-hero-note {
        margin-top: 1rem;
    }

    .rd-v2-copy .rd-actions {
        margin-top: 1.1rem;
        gap: .65rem;
    }
}

@media (max-width: 620px) {
    .rd-community-score-line strong {
        font-size: 3.45rem;
    }

    .rd-community-list-item {
        padding: 10px 0;
        gap: 6px;
    }

    .rd-community-list-meta {
        margin-top: 5px;
    }

    .rd-community-list-meta span {
        padding: 3px 6px;
        font-size: .6rem;
    }

    .rd-community-list-copy blockquote {
        margin: 2px 0;
        font-size: .74rem;
        line-height: 1.24;
    }
}

@media (max-width: 620px) {
    .rd-home-hero.rd-desktop-v2 {
        padding-top: 0;
    }

    .rd-v2-shell {
        padding-top: 1.55rem;
        padding-bottom: 1.2rem;
    }

    .rd-hero-note {
        font-size: .9rem;
    }

    .rd-hero-facts {
        margin-bottom: .8rem;
    }

    .rd-home-music-item {
        grid-template-columns: 26px 44px minmax(0, 1fr);
    }

    .rd-home-music-art {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .rd-home-music-count {
        grid-column: 2 / span 2;
        padding-left: .1rem;
    }

    #rd-listener-map-home {
        height: 285px;
    }

    .rd-map-control-left,
    .rd-map-control-right {
        gap: .45rem;
    }

    .rd-community-heading h2 {
        font-size: clamp(1.8rem, 8vw, 2.25rem);
    }
}
