:root {
    --ink: #18120f;
    --paper: #f7f1e4;
    --cream: #fffaf0;
    --brick: #bf5700;
    --gold: #d0a64a;
    --blue: #24566f;
    --muted: #6f6259;
    --line: rgba(24, 18, 15, 0.16);
    --shadow: 0 18px 45px rgba(36, 20, 12, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

a {
    color: var(--brick);
}

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

.wrap {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link,
.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    z-index: 20;
    padding: 8px 12px;
    background: var(--cream);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 241, 228, 0.94);
    backdrop-filter: blur(10px);
}

.header-wrap,
.footer-grid,
.hero-grid,
.two-column {
    display: grid;
    gap: 28px;
}

.header-wrap {
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--ink);
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 48px;
    height: auto;
    flex: 0 0 auto;
}

.brand-text strong,
.brand-text small {
    display: block;
}

.brand-text strong {
    font-size: 1.25rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-text small {
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.primary-nav {
    justify-self: end;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    color: var(--ink);
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.menu a:hover,
.menu a:focus {
    color: var(--brick);
}

.nav-toggle {
    display: none;
}

.hero {
    min-height: 560px;
    display: grid;
    align-items: center;
    color: var(--cream);
    background:
        linear-gradient(120deg, rgba(18, 12, 9, 0.92), rgba(36, 86, 111, 0.74)),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 48px),
        #211512;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: end;
}

.hero h1,
.page-header h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 5.8rem);
    line-height: 0.95;
}

.hero p,
.page-header p {
    max-width: 720px;
    font-size: 1.15rem;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 18px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--ink);
    font-family: Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.button.secondary {
    background: transparent;
    color: var(--cream);
}

.hero-panel,
.notice,
.program-card,
.post-card,
.contact-box,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: var(--shadow);
}

.hero-panel {
    padding: 28px;
    color: var(--ink);
}

.hero-panel span {
    color: var(--brick);
    font-family: Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
}

.hero-panel strong {
    display: block;
    margin: 10px 0;
    font-size: 1.75rem;
    line-height: 1.1;
}

.hero-panel img {
    display: block;
    max-height: 180px;
    width: auto;
    margin: 0 auto 18px;
}

.content-band,
.page-shell {
    padding-block: 64px;
}

.content-band.light {
    background: var(--cream);
}

.two-column {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.fact-list {
    border-left: 4px solid var(--brick);
    padding-left: 24px;
}

.fact-list ul {
    columns: 2;
    padding-left: 20px;
}

.page-header {
    margin-bottom: 32px;
}

.entry-content {
    max-width: 780px;
}

.program-grid,
.post-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.program-card,
.post-card,
.notice,
.contact-box,
.contact-form {
    padding: 22px;
}

.program-card h2,
.post-card h2 {
    margin-top: 0;
    font-size: 1.4rem;
    line-height: 1.2;
}

audio {
    display: block;
    width: 100%;
    min-height: 42px;
    margin-top: 10px;
}

.missing-note {
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

.featured-media {
    margin: 0 0 24px;
}

.audio-player {
    margin-bottom: 28px;
}

.radio-hero,
.radio-section-heading {
    display: grid;
    align-items: end;
    min-height: 320px;
    padding: 80px 0 44px;
    color: var(--cream);
    background-position: center;
    background-size: cover;
}

.radio-hero h1,
.radio-section-heading h2 {
    margin: 0;
    color: var(--cream);
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    line-height: 0.95;
}

.radio-nav-band {
    padding: 46px 0 56px;
    background: var(--cream);
}

.radio-nav-band h2 {
    text-align: center;
}

.radio-thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}

.radio-thumb-grid a {
    display: grid;
    gap: 10px;
    justify-items: center;
    color: var(--ink);
    font-family: Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.radio-thumb-grid img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

.radio-detail {
    padding: 46px 0;
    background: #fff;
}

.radio-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
    gap: 34px;
    align-items: start;
}

.radio-detail figure {
    margin: 0;
    text-align: center;
}

.radio-detail figure img {
    max-height: 480px;
    object-fit: contain;
}

.recovered-player {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.recovered-player strong,
.recovered-player span {
    font-family: Arial, sans-serif;
}

.recovered-player span {
    color: var(--muted);
    font-size: 0.86rem;
}

.wide-art {
    display: block;
    margin-top: 14px;
}

.entry-content.content {
    max-width: none;
}

.cs-content {
    width: 100%;
}

.x-section {
    padding: 45px 0;
    background-position: center;
    background-size: cover;
}

.x-container {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto !important;
}

.x-container::after {
    content: "";
    display: table;
    clear: both;
}

.x-column {
    padding: 16px;
}

.x-1-2,
.x-1-3,
.x-2-3,
.x-1-4,
.x-1-6 {
    float: left;
}

.x-1-1 { width: 100%; }
.x-1-2 { width: 50%; }
.x-1-3 { width: 33.333%; }
.x-2-3 { width: 66.666%; }
.x-1-4 { width: 25%; }
.x-1-6 { width: 16.666%; }

.h-custom-headline {
    margin: 0 0 20px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.h1 { font-size: clamp(3.25rem, 8vw, 7rem); }
.h2 { font-size: clamp(2rem, 5vw, 4rem); }
.h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.h4 { font-size: 1.35rem; }
.h6 { font-size: 1rem; }

.cs-ta-center,
.center-text {
    text-align: center;
}

.cs-ta-left {
    text-align: left;
}

.circle,
.x-feature-box-graphic img {
    border-radius: 999px;
}

.x-feature-box {
    margin-bottom: 32px;
}

.x-feature-box-graphic {
    margin-bottom: 18px;
}

.x-feature-box-title {
    margin: 0 0 10px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.x-blockquote,
blockquote {
    margin: 22px 0;
    padding: 18px 22px;
    border-left: 5px solid var(--brick);
    background: rgba(243, 243, 243, 0.82);
    color: var(--ink);
    font-size: 1.1rem;
}

.x-cite,
cite {
    display: block;
    margin-top: 10px;
    color: var(--brick);
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    font-style: normal;
}

.x-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    background: var(--brick);
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.x-btn-block {
    display: flex;
    width: 100%;
}

.x-columnize {
    column-count: 2;
    column-gap: 34px;
}

.cue-playlist-container {
    margin-bottom: 20px;
}

.cue-tracks {
    margin: 10px 0 0;
    padding-left: 20px;
    font-family: Arial, sans-serif;
    font-size: 0.92rem;
}

.cue-track {
    margin-bottom: 8px;
}

.cue-track-details,
.cue-track-title,
.cue-track-artist,
.cue-track-length {
    display: block;
}

.cue-track-title {
    font-weight: 700;
}

.cue-track-artist,
.cue-track-length {
    color: var(--muted);
}

.rev_slider_wrapper,
.rev_slider {
    display: block !important;
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #111;
}

.rev_slider ul {
    display: block;
    min-height: 500px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rev_slider li {
    position: relative;
    display: block;
    min-height: 500px;
}

.rev-slidebg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.tp-caption {
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    width: min(86%, 680px);
    text-align: center;
}

.tp-shape {
    inset: 0;
    z-index: 1;
    width: auto;
    min-height: 100%;
    transform: none;
    background: rgba(0, 0, 0, 0.36);
}

.Sports-DisplayFat {
    top: 39%;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
}

.Sports-DisplayFat + .tp-caption {
    display: none;
}

.Sports-DisplayFat + .tp-caption img {
    width: min(100%, 500px);
    height: 45px;
    object-fit: fill;
}

.Sports-Subline {
    display: none;
    top: calc(39% + clamp(4.7rem, 9vw, 8.9rem));
    color: #111;
    font-family: Arial, sans-serif;
    font-size: clamp(0.9rem, 2.1vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.tp-bannertimer {
    display: none;
}

img[src*="jagger-peyton-story"] {
    display: block;
    width: calc(100% - 30px) !important;
    margin-right: 30px;
}

.disabled-button {
    cursor: default;
    pointer-events: none;
}

#x-section-3 .x-container.cs-ta-center {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

#x-section-3 .x-container.cs-ta-center .x-column {
    float: none;
    width: min(150px, 100%) !important;
    padding-inline: 12px !important;
}

#x-section-3 .x-container.cs-ta-center img {
    display: block;
    max-width: 120px;
    margin-inline: auto;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 44px;
}

.team-grid::after {
    display: none;
}

.team-member {
    float: none;
    width: min(50%, 420px) !important;
}

.team-member .x-feature-box {
    text-align: center;
}

.team-member .circle img,
.team-member img.circle {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 999px;
}

.footer-logo {
    display: block;
    width: 48px;
    height: auto;
    filter: invert(1);
}

.footer-copyright {
    margin: 12px 0 0;
    color: var(--cream);
    font-size: 0.9rem;
}

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

.film-title-row {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-bottom: 28px;
}

.film-logo {
    display: block;
    width: clamp(150px, 24vw, 260px);
    height: auto;
    flex: 0 0 auto;
}

.film-title-row p {
    margin: 0;
    font-size: 1.1rem;
}

.film-feature-image {
    display: block;
    width: 100%;
    max-width: 959px;
    height: auto;
    margin: 0 auto 28px;
}

.podcast-page-content {
    max-width: 1100px;
}

.pdf-viewer {
    width: 100%;
    height: min(82vh, 900px);
    min-height: 620px;
    border: 1px solid var(--line);
    background: #fff;
}

.pdf-viewer object,
.pdf-viewer iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.pdf-fallback {
    margin-top: 18px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    font: inherit;
}

.contact-form .button {
    justify-content: center;
    cursor: pointer;
}

.form-status {
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(36, 86, 111, 0.3);
    border-radius: 6px;
    background: rgba(36, 86, 111, 0.08);
    color: var(--blue);
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

.form-status.error {
    border-color: rgba(143, 47, 36, 0.35);
    background: rgba(143, 47, 36, 0.08);
    color: var(--brick);
}

.site-footer {
    padding: 42px 0;
    border-top: 1px solid var(--line);
    background: var(--ink);
    color: var(--cream);
}

.footer-grid {
    grid-template-columns: 1fr 1fr auto;
    align-items: start;
}

.site-footer a {
    color: var(--gold);
}

address {
    display: grid;
    gap: 6px;
    font-style: normal;
}

@media (max-width: 760px) {
    .header-wrap {
        grid-template-columns: 1fr auto;
    }

    .nav-toggle {
        display: inline-grid;
        gap: 4px;
        width: 44px;
        height: 44px;
        place-content: center;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--cream);
    }

    .nav-toggle span:not(.screen-reader-text) {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ink);
    }

    .primary-nav {
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
        padding-bottom: 18px;
    }

    .primary-nav.is-open {
        display: block;
    }

    .menu {
        display: grid;
        gap: 12px;
    }

    .hero {
        min-height: auto;
        padding: 64px 0 34px;
    }

    .hero-grid,
    .two-column,
    .radio-detail-grid,
    .footer-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-grid,
    #x-section-3 .x-container.cs-ta-center {
        display: grid;
        gap: 28px;
    }

    .team-member {
        width: 100% !important;
    }

    .film-title-row {
        align-items: center;
        gap: 16px;
    }

    .pdf-viewer {
        height: 72vh;
        min-height: 480px;
    }

    .fact-list ul {
        columns: 1;
    }

    .x-column,
    .x-1-2,
    .x-1-3,
    .x-2-3,
    .x-1-4,
    .x-1-6 {
        float: none;
        width: 100% !important;
    }

    .x-columnize {
        column-count: 1;
    }
}
