:root {
  --whro-charcoal:#57595d;
  --whro-charcoal-dark:#4c4e52;
  --whro-nav:#74777b;
  --whro-teal:#005b78;
  --whro-teal-dark:#00485f;
  --whro-yellow:#ffd500;
  --whro-white:#ffffff;
  --whro-offwhite:#f3f3f1;
  --whro-border:#d4d4d1;
  --whro-text:#343538;
  --whro-muted:#686a6e;
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; }

body.whro-public-body {
  margin:0;
  color:var(--whro-text);
  background:#ececea;
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.5;
}

button { font:inherit; }
[hidden] { display:none!important; }

.whro-site-header {
  color:#fff;
  background:var(--whro-charcoal);
}

.whro-site-header-inner {
  width:min(1080px,calc(100% - 36px));
  min-height:132px;
  margin:auto;
  display:flex;
  align-items:center;
}

.whro-brand-lockup {
  display:flex;
  align-items:center;
  gap:34px;
  color:#fff;
  text-decoration:none;
}

.whro-official-logo {
  width:160px;
  height:auto;
  display:block;
}

.whro-media-player-title {
  padding-left:34px;
  border-left:1px solid rgba(255,255,255,.28);
  font-family:"Arial Narrow",Arial,sans-serif;
  font-size:clamp(2.2rem,4vw,3.3rem);
  font-weight:800;
  letter-spacing:.035em;
}

.whro-site-nav-bar { background:var(--whro-nav); }

.whro-site-nav-inner {
  width:min(1080px,calc(100% - 36px));
  min-height:36px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.whro-site-nav {
  display:flex;
  align-items:center;
}

.whro-site-nav a,
.whro-logout-form button {
  padding:7px 13px;
  border:0;
  color:#fff;
  background:transparent;
  text-decoration:none;
  cursor:pointer;
}

.whro-site-nav a:hover,
.whro-logout-form button:hover {
  background:rgba(255,255,255,.11);
}

.whro-logout-form { margin:0; }
.whro-site-link { color:#fff;text-decoration:none;font-size:.82rem; }

.whro-player-shell {
  width:min(1080px,calc(100% - 36px));
  margin:auto;
  background:#fff;
}

.whro-player-grid {
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(340px,.88fr);
}

.whro-live-section,
.whro-archive-section {
  min-width:0;
  padding:40px 42px 54px;
}

.whro-live-section { background:#f4f4f2; }
.whro-archive-section { border-left:2px solid #ccccca;background:#fff; }

.whro-section-label {
  color:var(--whro-muted);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.16em;
}

.whro-section-heading {
  margin:4px 0 28px;
  color:var(--whro-teal);
  font-family:"Arial Narrow",Arial,sans-serif;
  font-size:clamp(1.8rem,3vw,2.4rem);
  font-weight:800;
}

.whro-live-card-header {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:16px;
}

.whro-mode-label {
  color:var(--whro-teal);
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.08em;
}

.whro-live-card-header h2 {
  margin:2px 0 0;
  color:var(--whro-charcoal);
  font-size:clamp(1.8rem,3vw,2.7rem);
  letter-spacing:-.04em;
}

.whro-live-status {
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 10px;
  color:#fff;
  font-size:.7rem;
  font-weight:800;
  text-transform:uppercase;
}

.whro-live-status i {
  width:8px;
  height:8px;
  border-radius:50%;
  background:currentColor;
}

.whro-live-status-radio { background:var(--whro-teal); }
.whro-live-status-video { background:#ad2020; }
.whro-live-status-archive { background:var(--whro-charcoal); }

.whro-stage {
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  border:1px solid #b9bbbd;
  background:#000;
}

.whro-media-player,
.whro-radio-art {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.whro-media-player {
  z-index:2;
  object-fit:contain;
  background:#000;
}

.whro-radio-art {
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:36px;
  color:var(--whro-charcoal);
  background:linear-gradient(135deg,#fff,#ededeb);
}

.whro-radio-brand {
  display:flex;
  align-items:flex-end;
  gap:4px;
  line-height:.85;
}

.whro-radio-call {
  font-size:clamp(4rem,9vw,7.5rem);
  font-weight:800;
  letter-spacing:-.09em;
}

.whro-radio-freq {
  padding-bottom:8px;
  color:#c5c6c8;
  font-size:clamp(1.6rem,4vw,2.8rem);
  font-weight:700;
}

.whro-radio-tagline {
  margin-top:14px;
  color:var(--whro-teal);
  font-weight:700;
}

.whro-radio-divider {
  height:2px;
  margin:20px 0 14px;
  background:var(--whro-border);
}

.whro-radio-art p {
  margin:0;
  color:var(--whro-muted);
  font-style:italic;
}

.whro-loading-overlay {
  position:absolute;
  inset:0;
  z-index:4;
  display:grid;
  place-content:center;
  gap:10px;
  color:#fff;
  text-align:center;
  background:rgba(0,0,0,.72);
}

.whro-spinner {
  width:38px;
  height:38px;
  margin:auto;
  border:4px solid rgba(255,255,255,.25);
  border-top-color:#fff;
  border-radius:50%;
  animation:whro-spin .8s linear infinite;
}

.whro-player-actions {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:12px;
}

.whro-button {
  min-height:40px;
  padding:9px 14px;
  border:0;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.whro-button-primary { background:var(--whro-teal); }
.whro-button-primary:hover { background:var(--whro-teal-dark); }
.whro-button-secondary { background:var(--whro-charcoal); }
.whro-button-secondary:hover { background:var(--whro-charcoal-dark); }

.whro-program-strip {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  margin-top:22px;
  border-top:1px solid var(--whro-border);
  border-bottom:1px solid var(--whro-border);
  background:var(--whro-border);
}

.whro-program-strip div {
  min-width:0;
  padding:12px;
  background:#f8f8f6;
}

.whro-program-strip small {
  display:block;
  color:var(--whro-muted);
  font-size:.65rem;
  font-weight:700;
  text-transform:uppercase;
}

.whro-program-strip strong {
  display:block;
  margin-top:3px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.whro-player-description {
  margin:18px 0 0;
  color:var(--whro-muted);
  font-style:italic;
}

.whro-archive-row {
  display:grid;
  grid-template-columns:145px minmax(0,1fr);
  gap:18px;
  padding:22px 0;
  border-bottom:2px solid #e1e1de;
}

.whro-archive-image {
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  padding:0;
  overflow:hidden;
  border:0;
  background:var(--whro-charcoal);
  cursor:pointer;
}

.whro-archive-image img,
.whro-archive-placeholder {
  width:100%;
  height:100%;
  object-fit:cover;
}

.whro-archive-placeholder {
  display:grid;
  place-items:center;
  color:#fff;
  font-size:1.6rem;
  font-weight:800;
}

.whro-play-button {
  position:absolute;
  left:50%;
  top:50%;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  transform:translate(-50%,-50%);
  border-radius:50%;
  color:var(--whro-teal);
  background:rgba(255,255,255,.94);
}

.whro-archive-type {
  color:var(--whro-teal);
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.12em;
}

.whro-archive-content h3 {
  margin:3px 0 7px;
  color:var(--whro-charcoal);
  font-size:1.32rem;
  line-height:1.15;
}

.whro-archive-content p {
  margin:0 0 10px;
  color:var(--whro-muted);
  font-size:.9rem;
  font-style:italic;
}

.whro-archive-meta {
  display:grid;
  gap:3px;
  color:var(--whro-muted);
  font-size:.78rem;
}

.whro-text-action {
  margin-top:11px;
  padding:0;
  border:0;
  color:var(--whro-teal);
  background:transparent;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
}

.whro-text-action:hover { text-decoration:underline; }

.whro-public-messages {
  width:min(1080px,calc(100% - 36px));
  margin:14px auto;
}

.whro-public-message {
  padding:12px 14px;
  border-left:4px solid var(--whro-teal);
  background:#edf5f7;
}

.whro-site-footer {
  color:#fff;
  background:var(--whro-charcoal);
}

.whro-site-footer-inner {
  width:min(1080px,calc(100% - 36px));
  margin:auto;
  padding:34px 0;
  display:flex;
  justify-content:space-between;
  gap:30px;
}

.whro-footer-logo {
  width:110px;
  height:auto;
}

.whro-site-footer p {
  margin:8px 0 0;
  color:rgba(255,255,255,.72);
}

.whro-site-footer nav {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.whro-site-footer a {
  color:#fff;
  text-decoration:none;
}

@keyframes whro-spin {
  to { transform:rotate(360deg); }
}

@media(max-width:900px) {
  .whro-player-grid { grid-template-columns:1fr; }
  .whro-archive-section { border-top:2px solid #ccccca;border-left:0; }
}

@media(max-width:680px) {
  .whro-site-header-inner { min-height:112px; }
  .whro-brand-lockup { gap:22px; }
  .whro-official-logo { width:125px; }
  .whro-media-player-title { padding-left:22px;font-size:1.8rem; }
  .whro-site-nav-inner { align-items:stretch;flex-direction:column; }
  .whro-site-link { padding:7px 13px; }
  .whro-live-section,.whro-archive-section { padding:28px 22px 38px; }
  .whro-program-strip { grid-template-columns:1fr; }
  .whro-archive-row { grid-template-columns:1fr; }
  .whro-archive-image { max-width:360px; }
  .whro-site-footer-inner { flex-direction:column; }
}

@media(max-width:460px) {
  .whro-site-header-inner { padding:22px 0; }
  .whro-brand-lockup { align-items:flex-start;flex-direction:column; }
  .whro-media-player-title { padding:0;border-left:0; }
  .whro-site-nav { flex-wrap:wrap; }
  .whro-live-card-header { flex-direction:column; }
  .whro-radio-art { padding:22px; }
}

/* Opt-in live video invitation */
.whro-live-invite{margin-bottom:14px;padding:16px 18px;display:flex;align-items:center;justify-content:space-between;gap:18px;border-left:5px solid #b52323;background:#fff;box-shadow:0 6px 20px rgba(0,0,0,.10)}
.whro-live-invite-copy{min-width:0;display:flex;flex-direction:column;gap:3px}
.whro-live-invite-label{display:inline-flex;align-items:center;gap:7px;color:#b52323;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.whro-live-invite-label i{width:9px;height:9px;border-radius:50%;background:#d22424;box-shadow:0 0 0 5px rgba(210,36,36,.12);animation:whro-live-pulse 1.5s ease-in-out infinite}
.whro-live-invite-copy strong{color:var(--whro-charcoal);font-size:1.08rem}
.whro-live-invite-copy>span:last-child{color:var(--whro-muted);font-size:.88rem}
.whro-live-invite-actions{flex:0 0 auto;display:flex;gap:8px}
.whro-button-live{background:#b52323}.whro-button-live:hover{background:#941c1c}
.whro-button-light{color:var(--whro-charcoal);border:1px solid var(--whro-border);background:#f2f2f0}.whro-button-light:hover{background:#e6e6e3}
#watch-live-available{background:#b52323}
@keyframes whro-live-pulse{0%,100%{transform:scale(1);opacity:1}50%{transform:scale(.78);opacity:.65}}
@media(max-width:680px){.whro-live-invite{align-items:stretch;flex-direction:column}.whro-live-invite-actions{width:100%}.whro-live-invite-actions .whro-button{flex:1}}
@media(max-width:430px){.whro-live-invite-actions{flex-direction:column}}

/* Step 5: LiveEvent-aware public homepage */

.whro-live-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin: 0 0 20px;
    padding: 18px 20px;
    border: 1px solid #a51f2b;
    border-left: 6px solid #b22222;
    background: #fff1f2;
    box-shadow: 0 8px 24px rgba(90, 20, 25, 0.12);
}

.whro-live-notice-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #a51f2b;
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.whro-live-notice-label i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c91f2c;
    box-shadow: 0 0 0 5px rgba(201, 31, 44, 0.13);
    animation: whro-live-pulse 1.5s ease-in-out infinite;
}

.whro-live-notice strong {
    display: block;
    margin-top: 7px;
    color: #333437;
    font-size: 1.18rem;
}

.whro-live-notice p {
    margin: 5px 0 0;
    color: #66686c;
}

.whro-live-notice-actions {
    display: flex;
    flex: none;
    gap: 9px;
}

.whro-button-live {
    background: #b22222;
}

.whro-radio-player {
    width: 100%;
    margin-top: 12px;
}

@keyframes whro-live-pulse {
    50% {
        opacity: 0.4;
    }
}

@media (max-width: 720px) {
    .whro-live-notice {
        align-items: stretch;
        flex-direction: column;
    }

    .whro-live-notice-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .whro-live-notice-actions .whro-button {
        width: 100%;
    }
}

/* Public player structural layout fix */

.whro-player-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 44px 0 64px;
}

.whro-player-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
    gap: 32px;
    align-items: start;
}

.whro-live-column,
.whro-archive-column {
    min-width: 0;
}

.whro-section-kicker {
    margin-bottom: 5px;
    color: var(--whro-teal);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.whro-section-title {
    margin: 0 0 20px;
    color: var(--whro-charcoal-dark);
    font-size: clamp(1.55rem, 2.8vw, 2.3rem);
    line-height: 1.1;
    letter-spacing: 0.015em;
}

.whro-live-panel {
    overflow: hidden;
    border: 1px solid var(--whro-border);
    background: var(--whro-white);
    box-shadow: 0 14px 36px rgba(31, 38, 43, 0.12);
}

.whro-live-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--whro-border);
    background: #fff;
}

.whro-live-heading h2 {
    margin: 3px 0 0;
    color: var(--whro-charcoal-dark);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.15;
}

.whro-live-mode {
    display: block;
    color: var(--whro-teal);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
}

.whro-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: none;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
}

.whro-live-pill i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.whro-radio-pill {
    color: #fff;
    background: var(--whro-teal);
}

.whro-radio-pill i {
    background: var(--whro-yellow);
}

.whro-video-pill {
    color: #fff;
    background: #ae2029;
}

.whro-video-pill i {
    background: #fff;
}

.whro-archive-pill {
    color: #fff;
    background: var(--whro-charcoal);
}

.whro-media-stage {
    position: relative;
    min-height: 430px;
    background: #18191b;
}

.whro-media-stage.radio-mode {
    display: flex;
    align-items: stretch;
    background:
        linear-gradient(145deg, rgba(0, 91, 120, 0.96), rgba(0, 48, 67, 0.98));
}

.whro-radio-art {
    display: flex;
    width: 100%;
    min-height: 430px;
    padding: 48px;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.whro-radio-station {
    display: flex;
    align-items: baseline;
    gap: 16px;
    line-height: 1;
}

.whro-radio-main {
    font-size: clamp(4.5rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    text-transform: lowercase;
}

.whro-radio-frequency {
    color: var(--whro-yellow);
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 800;
}

.whro-radio-subtitle {
    margin-top: 10px;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.025em;
}

.whro-radio-rule {
    width: min(340px, 70%);
    height: 5px;
    margin: 24px 0 18px;
    background: var(--whro-yellow);
}

.whro-radio-art p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.04rem;
}

.whro-unified-player {
    display: block;
    width: 100%;
    min-height: 430px;
    max-height: 70vh;
    background: #000;
    object-fit: contain;
}

.whro-waiting-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-direction: column;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
}

.whro-spinner {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: whro-spin 0.8s linear infinite;
}

@keyframes whro-spin {
    to {
        transform: rotate(360deg);
    }
}

.whro-radio-player {
    display: block;
    width: calc(100% - 44px);
    margin: 18px 22px 0;
}

.whro-player-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 22px;
}

.whro-button {
    appearance: none;
    min-height: 42px;
    padding: 10px 17px;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
}

.whro-button-primary {
    color: #fff;
    background: var(--whro-teal);
}

.whro-button-primary:hover {
    background: var(--whro-teal-dark);
}

.whro-button-secondary {
    color: var(--whro-charcoal-dark);
    border: 1px solid var(--whro-border);
    background: #fff;
}

.whro-program-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--whro-border);
    border-bottom: 1px solid var(--whro-border);
    background: var(--whro-offwhite);
}

.whro-program-info > div {
    min-width: 0;
    padding: 15px 18px;
    border-right: 1px solid var(--whro-border);
}

.whro-program-info > div:last-child {
    border-right: 0;
}

.whro-program-info small {
    display: block;
    margin-bottom: 3px;
    color: var(--whro-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.whro-program-info strong {
    display: block;
    overflow: hidden;
    color: var(--whro-charcoal-dark);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whro-player-description {
    margin: 0;
    padding: 17px 22px 22px;
    color: var(--whro-muted);
}

.whro-archive-list {
    display: grid;
    gap: 16px;
}

.whro-archive-item {
    overflow: hidden;
    border: 1px solid var(--whro-border);
    background: #fff;
    box-shadow: 0 7px 20px rgba(31, 38, 43, 0.07);
}

.whro-archive-thumb {
    position: relative;
    display: block;
    width: 100%;
    min-height: 170px;
    padding: 0;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    background: var(--whro-charcoal);
}

.whro-archive-thumb img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.whro-archive-no-image {
    display: flex;
    min-height: 170px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

.whro-play-icon {
    position: absolute;
    left: 16px;
    bottom: 15px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--whro-charcoal-dark);
    background: var(--whro-yellow);
}

.whro-archive-copy {
    padding: 18px;
}

.whro-archive-label {
    color: var(--whro-teal);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.whro-archive-copy h3 {
    margin: 5px 0 8px;
    color: var(--whro-charcoal-dark);
    font-size: 1.16rem;
    line-height: 1.25;
}

.whro-archive-copy p {
    margin: 0 0 12px;
    color: var(--whro-muted);
}

.whro-archive-meta {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
    color: var(--whro-muted);
    font-size: 0.86rem;
}

.whro-text-button {
    padding: 0;
    border: 0;
    cursor: pointer;
    color: var(--whro-teal);
    background: transparent;
    font-weight: 800;
}

.whro-empty-state {
    padding: 32px 24px;
    border: 1px solid var(--whro-border);
    text-align: center;
    background: #fff;
}

@media (max-width: 900px) {
    .whro-player-columns {
        grid-template-columns: 1fr;
    }

    .whro-archive-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .whro-player-shell {
        width: min(100% - 22px, 1180px);
        padding-top: 28px;
    }

    .whro-live-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .whro-radio-art {
        min-height: 330px;
        padding: 28px 22px;
    }

    .whro-media-stage,
    .whro-unified-player {
        min-height: 330px;
    }

    .whro-program-info {
        grid-template-columns: 1fr;
    }

    .whro-program-info > div {
        border-right: 0;
        border-bottom: 1px solid var(--whro-border);
    }

    .whro-program-info > div:last-child {
        border-bottom: 0;
    }

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

/* Public homepage visual polish */

.whro-site-header-inner,
.whro-site-nav-inner,
.whro-site-footer-inner {
    width: min(1180px, calc(100% - 40px));
}

.whro-player-shell {
    width: min(1180px, calc(100% - 40px));
    padding-top: 34px;
}

.whro-player-columns {
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.85fr);
    gap: 24px;
}

.whro-section-title {
    margin-bottom: 14px;
}

.whro-live-panel {
    border-radius: 2px;
}

.whro-media-stage.radio-mode {
    min-height: 390px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 213, 0, 0.16),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #00617f 0%,
            #004d67 48%,
            #00394d 100%
        );
}

.whro-radio-art {
    min-height: 390px;
    padding: 42px 36px;
    color: #ffffff;
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.18);
}

.whro-radio-main {
    color: #ffffff;
    opacity: 1;
}

.whro-radio-frequency {
    color: var(--whro-yellow);
    text-shadow: none;
}

.whro-radio-subtitle {
    color: #ffffff;
    opacity: 0.96;
}

.whro-radio-art p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
}

.whro-radio-player {
    width: calc(100% - 32px);
    margin: 14px 16px 0;
}

.whro-player-actions {
    padding: 14px 16px;
}

.whro-program-info > div {
    padding: 12px 14px;
}

.whro-player-description {
    padding: 14px 16px 17px;
}

.whro-archive-column .whro-empty-state {
    min-height: 128px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.whro-archive-column .whro-empty-state h3 {
    margin: 0 0 8px;
}

.whro-archive-column .whro-empty-state p {
    margin: 0;
}

.whro-site-footer {
    margin-top: 0;
}

@media (max-width: 900px) {
    .whro-player-columns {
        grid-template-columns: 1fr;
    }

    .whro-archive-column {
        margin-top: 14px;
    }
}

@media (max-width: 620px) {
    .whro-site-header-inner,
    .whro-site-nav-inner,
    .whro-site-footer-inner,
    .whro-player-shell {
        width: min(100% - 24px, 1180px);
    }

    .whro-radio-art {
        min-height: 310px;
        padding: 28px 22px;
    }

    .whro-media-stage.radio-mode {
        min-height: 310px;
    }
}


/* ==========================================================
   WHRO Public Player — Modern 2026 presentation layer
   Based on the approved visual mockup.
   ========================================================== */

:root {
    --modern-charcoal: #252c32;
    --modern-charcoal-light: #343c43;
    --modern-teal: #00627d;
    --modern-teal-dark: #00485d;
    --modern-yellow: #ffd400;
    --modern-page: #f2f3f3;
    --modern-card: #ffffff;
    --modern-text: #272d32;
    --modern-muted: #687077;
    --modern-border: #d7dcdf;
    --modern-shadow:
        0 12px 32px rgba(27, 37, 44, 0.09),
        0 2px 6px rgba(27, 37, 44, 0.05);
}

/* Page foundation */

html,
body {
    min-height: 100%;
}

body.whro-public-body {
    margin: 0;
    color: var(--modern-text);
    background:
        linear-gradient(
            90deg,
            #eceeee 0,
            #f7f8f8 8%,
            #ffffff 16%,
            #ffffff 84%,
            #f7f8f8 92%,
            #eceeee 100%
        );
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;
    line-height: 1.5;
}

/* Header */

.whro-site-header {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #20272d 0%,
            #2d353c 62%,
            #252c32 100%
        );
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
}

.whro-site-header-inner {
    width: min(1220px, calc(100% - 48px));
    min-height: 128px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.whro-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    color: #ffffff;
    text-decoration: none;
}

.whro-official-logo {
    width: 164px;
    height: auto;
    filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.18));
}

.whro-media-player-title {
    padding-left: 34px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    font-family:
        "Arial Narrow",
        "Roboto Condensed",
        Arial,
        sans-serif;
    font-size: clamp(2.15rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1;
}

.whro-site-nav-bar {
    background: rgba(44, 53, 60, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.whro-site-nav-inner {
    width: min(1220px, calc(100% - 48px));
    min-height: 48px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whro-site-nav {
    display: flex;
    align-items: stretch;
    gap: 8px;
    min-height: 48px;
}

.whro-site-nav a,
.whro-logout-form button {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border: 0;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.whro-site-nav a:hover,
.whro-logout-form button:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.whro-site-nav a:first-child::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--modern-yellow);
}

.whro-logout-form {
    display: flex;
    margin: 0;
}

.whro-site-link {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
}

.whro-site-link::after {
    content: " ↗";
    color: rgba(255, 255, 255, 0.62);
}

/* Main presentation */

.whro-player-shell {
    width: min(1220px, calc(100% - 48px));
    min-height: 690px;
    margin: 0 auto;
    padding: 46px 0 64px;
}

.whro-player-columns {
    display: grid;
    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(320px, 0.82fr);
    gap: 46px;
    align-items: start;
}

.whro-live-column,
.whro-archive-column {
    min-width: 0;
}

.whro-section-kicker {
    margin: 0 0 5px;
    color: var(--modern-teal);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.whro-section-title {
    margin: 0 0 22px;
    color: var(--modern-text);
    font-family:
        "Arial Narrow",
        "Roboto Condensed",
        Arial,
        sans-serif;
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.98;
    text-transform: uppercase;
}

/* Main live card */

.whro-live-panel {
    overflow: hidden;
    border: 1px solid var(--modern-border);
    border-radius: 7px;
    background: var(--modern-card);
    box-shadow: var(--modern-shadow);
}

.whro-live-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--modern-border);
    background: #ffffff;
}

.whro-live-heading h2 {
    margin: 3px 0 0;
    color: #171c20;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
}

.whro-live-mode {
    display: block;
    color: var(--modern-teal);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.whro-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: none;
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--modern-teal),
            var(--modern-teal-dark)
        );
    box-shadow: 0 5px 14px rgba(0, 98, 125, 0.21);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.whro-live-pill i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--modern-yellow);
    box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.13);
}

/* Radio artwork */

.whro-media-stage {
    position: relative;
    min-height: 408px;
    overflow: hidden;
    background: #071f29;
}

.whro-media-stage.radio-mode {
    display: flex;
    align-items: stretch;
    min-height: 408px;
    background:
        radial-gradient(
            circle at 92% 18%,
            rgba(42, 159, 175, 0.22),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #006078 0%,
            #004e64 48%,
            #003848 100%
        ) !important;
}

.whro-media-stage.radio-mode::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -40px;
    right: -50px;
    width: 470px;
    height: 470px;
    opacity: 0.42;
    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.36) 0 2px,
            transparent 2.5px
        );
    background-size: 17px 17px;
    mask-image:
        radial-gradient(
            circle,
            #000 0,
            rgba(0, 0, 0, 0.82) 40%,
            transparent 72%
        );
    pointer-events: none;
}

.whro-media-stage.radio-mode::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -120px;
    bottom: -190px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, 0.018),
        0 0 0 110px rgba(255, 255, 255, 0.014);
    pointer-events: none;
}

.whro-radio-art {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    min-height: 408px;
    padding: 48px 62px;
    flex-direction: column;
    justify-content: center;
    color: #ffffff !important;
    background: transparent !important;
}

.whro-radio-station {
    display: flex;
    align-items: baseline;
    gap: 18px;
    line-height: 0.9;
}

.whro-radio-main {
    color: #ffffff !important;
    font-size: clamp(5rem, 10vw, 8.2rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.9;
    opacity: 1 !important;
    text-shadow: 0 7px 18px rgba(0, 0, 0, 0.21);
}

.whro-radio-frequency {
    color: var(--modern-yellow) !important;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
}

.whro-radio-subtitle {
    margin-top: 20px;
    color: #ffffff !important;
    font-size: clamp(1.1rem, 2.1vw, 1.55rem);
    font-weight: 750;
    letter-spacing: 0.01em;
    opacity: 1 !important;
}

.whro-radio-rule {
    width: min(420px, 72%);
    height: 5px;
    margin: 28px 0 18px;
    border-radius: 999px;
    background: var(--modern-yellow);
    box-shadow: 0 2px 8px rgba(255, 212, 0, 0.23);
}

.whro-radio-art p {
    max-width: 570px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.04rem;
    font-style: italic;
    text-shadow: none;
}

/* Media controls */

.whro-unified-player {
    display: block;
    width: 100%;
    min-height: 408px;
    max-height: 72vh;
    background: #000000;
    object-fit: contain;
}

.whro-radio-player {
    display: block;
    width: calc(100% - 36px);
    margin: 16px 18px 0;
    border-radius: 999px;
}

.whro-player-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 20px;
}

.whro-button {
    min-height: 43px;
    padding: 10px 19px;
    border: 0;
    border-radius: 4px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 140ms ease,
        box-shadow 140ms ease,
        background 140ms ease;
}

.whro-button:hover {
    transform: translateY(-1px);
}

.whro-button-primary,
.whro-button-live {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--modern-teal),
            var(--modern-teal-dark)
        );
    box-shadow: 0 6px 14px rgba(0, 98, 125, 0.18);
}

.whro-button-primary:hover,
.whro-button-live:hover {
    background:
        linear-gradient(
            135deg,
            #00718d,
            #00526a
        );
    box-shadow: 0 8px 18px rgba(0, 98, 125, 0.24);
}

.whro-button-secondary {
    color: var(--modern-text);
    border: 1px solid var(--modern-border);
    background: #ffffff;
}

.whro-program-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--modern-border);
    border-bottom: 1px solid var(--modern-border);
    background:
        linear-gradient(
            180deg,
            #fafbfb,
            #f4f5f5
        );
}

.whro-program-info > div {
    min-width: 0;
    padding: 15px 20px;
    border-right: 1px solid var(--modern-border);
}

.whro-program-info > div:last-child {
    border-right: 0;
}

.whro-program-info small {
    display: block;
    margin-bottom: 4px;
    color: var(--modern-muted);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.whro-program-info strong {
    display: block;
    overflow: hidden;
    color: var(--modern-text);
    font-size: 0.94rem;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whro-player-description {
    margin: 0;
    padding: 16px 20px 19px;
    color: var(--modern-muted);
    background: #ffffff;
    font-size: 0.93rem;
    font-style: italic;
}

/* Live-video notice */

.whro-live-notice {
    margin-bottom: 20px;
    padding: 19px 21px;
    border: 1px solid rgba(173, 32, 41, 0.28);
    border-left: 5px solid #ad2029;
    border-radius: 6px;
    background:
        linear-gradient(
            135deg,
            #fff7f7,
            #ffffff
        );
    box-shadow: 0 8px 20px rgba(90, 20, 25, 0.08);
}

/* Archive presentation */

.whro-archive-list {
    display: grid;
    gap: 18px;
}

.whro-empty-state {
    position: relative;
    display: flex;
    min-height: 238px;
    padding: 80px 28px 34px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--modern-border);
    border-radius: 6px;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fafbfb
        );
    box-shadow: 0 8px 24px rgba(27, 37, 44, 0.04);
}

.whro-empty-state::before {
    content: "◉";
    position: absolute;
    top: 31px;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: var(--modern-teal);
    background: #edf5f7;
    font-size: 1.55rem;
    box-shadow: inset 0 0 0 1px rgba(0, 98, 125, 0.08);
}

.whro-empty-state::after {
    content: "";
    position: absolute;
    top: 44px;
    width: 2px;
    height: 28px;
    background: var(--modern-teal);
    transform: rotate(-18deg);
    opacity: 0.55;
}

.whro-empty-state h3 {
    margin: 0 0 9px;
    color: var(--modern-text);
    font-size: 1.05rem;
}

.whro-empty-state p {
    margin: 0;
    color: var(--modern-muted);
    font-size: 0.92rem;
}

.whro-archive-item {
    overflow: hidden;
    border: 1px solid var(--modern-border);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: var(--modern-shadow);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.whro-archive-item:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 36px rgba(27, 37, 44, 0.12),
        0 3px 8px rgba(27, 37, 44, 0.06);
}

/* Footer */

.whro-site-footer {
    margin-top: 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #20272d,
            #2b343b
        );
}

.whro-site-footer-inner {
    width: min(1220px, calc(100% - 48px));
    min-height: 184px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.whro-footer-logo {
    width: 108px;
    height: auto;
}

.whro-site-footer p {
    margin: 11px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
}

.whro-site-footer nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.whro-site-footer nav a {
    position: relative;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.whro-site-footer nav a + a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%);
}

/* Responsive design */

@media (max-width: 980px) {
    .whro-player-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whro-archive-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .whro-empty-state {
        min-height: 210px;
    }
}

@media (max-width: 720px) {
    .whro-site-header-inner {
        min-height: 104px;
    }

    .whro-official-logo {
        width: 120px;
    }

    .whro-media-player-title {
        padding-left: 20px;
        font-size: 1.8rem;
    }

    .whro-site-nav-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .whro-site-nav {
        width: 100%;
        overflow-x: auto;
    }

    .whro-site-link {
        display: none;
    }

    .whro-player-shell {
        width: min(100% - 26px, 1220px);
        padding-top: 32px;
    }

    .whro-radio-art {
        min-height: 330px;
        padding: 36px 27px;
    }

    .whro-media-stage,
    .whro-media-stage.radio-mode,
    .whro-unified-player {
        min-height: 330px;
    }

    .whro-program-info {
        grid-template-columns: 1fr;
    }

    .whro-program-info > div {
        border-right: 0;
        border-bottom: 1px solid var(--modern-border);
    }

    .whro-program-info > div:last-child {
        border-bottom: 0;
    }

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

    .whro-site-footer-inner {
        min-height: 210px;
        padding: 35px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .whro-site-footer nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .whro-site-footer nav a {
        padding: 0;
    }

    .whro-site-footer nav a + a::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .whro-site-header-inner,
    .whro-site-nav-inner,
    .whro-site-footer-inner {
        width: min(100% - 24px, 1220px);
    }

    .whro-brand-lockup {
        gap: 16px;
    }

    .whro-official-logo {
        width: 100px;
    }

    .whro-media-player-title {
        padding-left: 16px;
        font-size: 1.42rem;
    }

    .whro-live-heading {
        align-items: flex-start;
        padding: 18px;
        flex-direction: column;
    }

    .whro-radio-main {
        font-size: 4.15rem;
    }

    .whro-radio-frequency {
        font-size: 2.35rem;
    }

    .whro-radio-station {
        gap: 12px;
    }
}


/* ==========================================================
   WHRO public radio station selector
   ========================================================== */

.whro-station-selector {
    margin-bottom: 22px;
    padding: 20px;
    border: 1px solid var(--modern-border);
    border-radius: 7px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7f9f9
        );
    box-shadow: 0 8px 22px rgba(27, 37, 44, 0.05);
}

.whro-station-selector-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.whro-station-selector-kicker {
    display: block;
    margin-bottom: 2px;
    color: var(--modern-teal);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.whro-station-selector-heading h2 {
    margin: 0;
    color: var(--modern-text);
    font-size: 1.22rem;
    line-height: 1.1;
}

#selected-station-label {
    color: var(--modern-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.whro-station-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.whro-station-card {
    position: relative;
    display: flex;
    min-height: 118px;
    padding: 15px 14px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--modern-border);
    border-radius: 6px;
    color: var(--modern-text);
    text-align: left;
    background: #ffffff;
    cursor: pointer;
    overflow: hidden;
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        transform 150ms ease,
        background 150ms ease;
}

.whro-station-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: transparent;
}

.whro-station-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 98, 125, 0.38);
    box-shadow: 0 8px 18px rgba(27, 37, 44, 0.08);
}

.whro-station-card.is-active {
    border-color: var(--modern-teal);
    background:
        linear-gradient(
            145deg,
            #f6fbfc,
            #ffffff
        );
    box-shadow:
        0 0 0 2px rgba(0, 98, 125, 0.09),
        0 8px 20px rgba(27, 37, 44, 0.08);
}

.whro-station-card.is-active::after {
    background: var(--modern-yellow);
}

.whro-station-logo {
    display: block;
    color: #596168;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.whro-station-logo b {
    color: var(--modern-teal);
    font-size: 0.78em;
}

.whro-station-logo-compact {
    max-width: 105px;
    font-size: 1.05rem;
    letter-spacing: -0.025em;
    line-height: 1.05;
}

.whro-station-card-copy {
    display: block;
    margin-top: 14px;
    color: var(--modern-muted);
    font-size: 0.73rem;
    line-height: 1.25;
}

@media (max-width: 1100px) {
    .whro-station-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .whro-station-selector-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .whro-station-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 430px) {
    .whro-station-grid {
        grid-template-columns: 1fr;
    }

    .whro-station-card {
        min-height: 100px;
    }
}
