/* Media page-local styles — scoped under .page-media */
.page-media {
  /* COMPACT PAGE HEADER */
  .media-head {
    padding: 56px 0 32px;
    border-bottom: 1px solid var(--line);
  }
  .media-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .media-head .breadcrumbs {
    display: flex; align-items: center; gap: 10px;
    font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 600; color: var(--muted); margin-bottom: 24px;
  }
  .media-head .breadcrumbs .sep { width: 10px; height: 1px; background: var(--line-strong); display:inline-block; }
  .media-head h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 18px 0 0;
    text-wrap: balance;
    max-width: 720px;
  }
  .media-head h1 em {
    font-style: normal;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    color: var(--teal-2);
  }
  .media-head .lede {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 360px;
    margin: 0;
  }

  /* MEDIA TYPE TABS */
  .media-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }
  .media-tabs button {
    font-family: inherit;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    font-weight: 500;
    border: 1px solid transparent;
    background: transparent;
    color: var(--charcoal);
    padding: 9px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: all .15s ease;
    white-space: nowrap;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .media-tabs button:hover { border-color: var(--line-strong); }
  .media-tabs button.active { background: var(--ink); color: var(--sand-3); }
  .media-tabs button .count { opacity: 0.6; font-size: 11px; }
  .media-tabs .spacer { flex: 1; min-width: 8px; }
  .media-tabs .search {
    font-size: 12.5px;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: 9px 16px 9px 36px;
    border-radius: 999px;
    background: transparent;
    width: 220px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'><circle cx='5.5' cy='5.5' r='3.8' stroke='%232A2C2B' stroke-width='1.2'/><path d='M8.4 8.4l3 3' stroke='%232A2C2B' stroke-width='1.2' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: 14px center;
    font-family: inherit;
    outline: none;
  }

  /* ============ MAIN WATCH AREA ============ */
  .watch { padding: 32px 0 80px; }
  .watch-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: start;
  }
  .player-col { min-width: 0; }

  /* Player */
  .player-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    background:
      repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px),
      linear-gradient(160deg, #5E8F88 0%, #1f3431 100%);
    cursor: pointer;
  }
  .player-frame iframe,
  .player-frame video {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  }
  .player-frame .play-big {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    z-index: 2;
  }
  .player-frame .play-big-btn {
    width: 96px; height: 96px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    display: grid; place-items: center;
    box-shadow: 0 24px 48px -20px rgba(0,0,0,0.45);
    transition: transform .2s ease;
    border: none; cursor: pointer;
  }
  .player-frame:hover .play-big-btn { transform: scale(1.06); }
  .player-tagline {
    position: absolute;
    left: 28px; bottom: 28px;
    color: white;
    z-index: 2;
  }
  .player-tagline .pill {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal-3);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
    font-weight: 600;
  }
  .player-tagline h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -0.012em;
    margin: 0;
    max-width: 480px;
  }
  .player-frame .controls {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    color: white;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    z-index: 3;
    opacity: 0;
    transition: opacity .2s ease;
  }
  .player-frame:hover .controls { opacity: 1; }
  .player-frame .bar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.25);
    border-radius: 999px;
    position: relative;
  }
  .player-frame .bar::after {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 32%;
    background: var(--teal-3);
    border-radius: 999px;
  }
  .player-frame .bar::before {
    content: "";
    position: absolute;
    left: 32%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 11px; height: 11px;
    background: var(--teal-3);
    border-radius: 999px;
    box-shadow: 0 0 0 4px rgba(123,168,161,0.3);
  }
  .player-frame .ctrl-icon { width: 16px; height: 16px; opacity: 0.95; }

  /* Player info row */
  .video-info { padding: 22px 0 0; }
  .video-info .series-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-2);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .video-info .series-tag .live-dot {
    width: 7px; height: 7px;
    background: var(--teal-2);
    border-radius: 999px;
  }
  .video-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 2.6vw, 32px);
    letter-spacing: -0.018em;
    line-height: 1.18;
    margin: 0 0 16px;
    color: var(--ink);
    text-wrap: balance;
  }
  .video-info h2 em {
    font-style: normal;
    font-family: 'Cinzel', serif;
    color: var(--teal-2);
    font-weight: 400;
  }
  .video-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
    flex-wrap: wrap;
  }
  .video-meta .preacher { display: flex; align-items: center; gap: 14px; }
  .video-meta .avatar {
    width: 44px; height: 44px;
    border-radius: 999px;
    background: linear-gradient(160deg, #c7b48a, #6f6346);
    overflow: hidden;
  }
  .video-meta .preacher .name {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .video-meta .preacher .stats {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 3px;
  }
  .video-actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .va-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 999px;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: all .15s ease;
  }
  .va-btn:hover { border-color: var(--ink); background: var(--ink); color: var(--sand-3); }
  .va-btn .ic { width: 14px; height: 14px; }
  .va-btn.subscribe { background: var(--ink); color: var(--sand-3); border-color: var(--ink); padding: 9px 18px; }
  .va-btn.subscribe:hover { background: var(--teal-2); border-color: var(--teal-2); }

  /* Description box */
  .description {
    background: var(--sand-3);
    border-radius: 6px;
    padding: 22px 24px;
    margin-top: 22px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--charcoal);
  }
  .description .desc-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
    flex-wrap: wrap;
  }
  .description .desc-meta .sep { width: 3px; height: 3px; background: var(--muted); border-radius: 999px; }
  .description p { margin: 0 0 12px; color: var(--charcoal); max-width: 640px; }
  .description .chapters {
    margin-top: 18px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    display: grid;
    gap: 8px;
    font-family: ui-monospace, Menlo, monospace;
    font-size: 12.5px;
  }
  .description .chapters a {
    display: flex; gap: 14px;
    color: var(--charcoal);
    padding: 4px 0;
    border-bottom: 1px dashed var(--line);
    transition: color .15s ease;
  }
  .description .chapters a:hover { color: var(--teal-2); }
  .description .chapters a span:first-child { color: var(--teal-2); width: 48px; }

  /* ============ SIDEBAR (UP NEXT) ============ */
  .up-next { display: grid; gap: 24px; }
  .up-next-block {
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--paper);
  }
  .up-next-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--sand-3);
  }
  .up-next-header .title {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .up-next-header .autoplay {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: var(--muted);
    cursor: pointer;
  }
  .up-next-header .toggle {
    width: 28px;
    height: 16px;
    background: var(--teal-2);
    border-radius: 999px;
    position: relative;
    transition: background .15s ease;
  }
  .up-next-header .toggle::after {
    content: "";
    position: absolute;
    right: 2px; top: 2px;
    width: 12px; height: 12px;
    background: white;
    border-radius: 999px;
    transition: right .2s ease;
  }
  .up-next-header .autoplay.off .toggle { background: var(--line-strong); }
  .up-next-header .autoplay.off .toggle::after { right: 14px; }

  .vlist { display: grid; }
  .vrow {
    display: grid;
    grid-template-columns: 152px 1fr;
    gap: 14px;
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--line);
    transition: background .15s ease;
    align-items: start;
    color: inherit;
  }
  .vrow:last-child { border-bottom: none; }
  .vrow:hover { background: var(--sand-3); }
  .vrow.now { background: rgba(123, 168, 161, 0.1); }
  .vrow.now:hover { background: rgba(123, 168, 161, 0.16); }
  .vrow .vthumb {
    aspect-ratio: 16/9;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .vrow .vthumb .dur {
    position: absolute;
    right: 4px; bottom: 4px;
    background: rgba(0,0,0,0.72);
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: ui-monospace, Menlo, monospace;
    font-size: 10px;
    z-index: 1;
  }
  .vrow .vthumb .now-tag {
    position: absolute;
    left: 4px; top: 4px;
    background: var(--teal-2);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
  }
  .vrow .vinfo .vt {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 6px;
    letter-spacing: -0.005em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .vrow.now .vinfo .vt { color: var(--teal-2); }
  .vrow .vinfo .vsub {
    font-size: 11.5px;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .vrow .vinfo .vmeta {
    font-size: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .vrow .vinfo .vmeta .sep { width: 2px; height: 2px; background: var(--muted); border-radius: 999px; }
  .vrow .vinfo .vmeta .new-pill {
    background: var(--sand);
    color: var(--ink);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  /* Playlist mini block */
  .playlist-header {
    background: var(--ink);
    color: var(--sand-3);
    padding: 18px 20px;
  }
  .playlist-header .pl-name {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
  }
  .playlist-header .pl-meta {
    font-size: 11.5px;
    color: rgba(250, 246, 236, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .playlist-header .pl-meta .sep { width: 2px; height: 2px; background: rgba(250, 246, 236, 0.4); border-radius: 999px; }
  .playlist-header .progress {
    margin-top: 14px;
    display: flex; align-items: center; gap: 10px;
    font-size: 11px;
    color: rgba(250, 246, 236, 0.6);
  }
  .playlist-header .progress .pbar {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    position: relative;
  }
  .playlist-header .progress .pbar::after {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 66%;
    background: var(--teal-3);
    border-radius: 999px;
  }

  /* ============ FULL PLAYLIST ROW (under player) ============ */
  .full-playlist {
    background: var(--sand-3);
    border-radius: 6px;
    padding: 28px;
    margin-top: 56px;
  }
  .fp-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
    flex-wrap: wrap;
  }
  .fp-head .left { display: flex; align-items: center; gap: 18px; }
  .fp-head .cover {
    width: 56px; height: 56px;
    border-radius: 4px;
    background: linear-gradient(160deg, #5E8F88, #1f3431);
    display: grid; place-items: center;
    color: var(--teal-3);
    font-family: 'Cinzel', serif;
    font-size: 18px;
    text-align: center;
    line-height: 1;
    padding: 6px;
    overflow: hidden;
  }
  .fp-head h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.015em;
    margin: 0;
    color: var(--ink);
  }
  .fp-head .sub {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 3px;
  }
  .fp-head .actions { display: flex; gap: 8px; }
  .fp-row {
    display: grid;
    grid-template-columns: 32px 132px 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background .15s ease;
    color: inherit;
  }
  .fp-row:hover { background: var(--paper); }
  .fp-row.now { background: rgba(123, 168, 161, 0.12); }
  .fp-row .idx {
    font-family: 'Cinzel', serif;
    color: var(--teal-2);
    font-size: 12px;
    text-align: center;
  }
  .fp-row .tn {
    aspect-ratio: 16/9;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  .fp-row .tn .dur {
    position: absolute;
    right: 4px; bottom: 4px;
    background: rgba(0,0,0,0.72);
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: ui-monospace, Menlo, monospace;
    font-size: 10px;
    z-index: 1;
  }
  .fp-row .ttl {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .fp-row.now .ttl { color: var(--teal-2); }
  .fp-row .sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .fp-row .sub .sep { width: 2px; height: 2px; background: var(--muted); border-radius: 999px; }
  .fp-row .speaker {
    font-size: 12px;
    color: var(--muted);
    text-align: right;
  }
  .fp-row .pl-play {
    width: 32px; height: 32px;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--ink);
  }
  .fp-row:hover .pl-play { background: var(--ink); color: var(--sand-3); border-color: var(--ink); }
  .fp-row.upcoming { opacity: 0.5; pointer-events: none; }

  /* ============ MORE VIDEOS ROW ============ */
  .more-videos { padding: 96px 0 64px; }
  .mv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .mv-card { cursor: pointer; transition: transform .2s ease; color: inherit; }
  .mv-card:hover { transform: translateY(-3px); }
  .mv-card .tn {
    aspect-ratio: 16/9;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
  }
  .mv-card .tn .dur {
    position: absolute;
    right: 8px; bottom: 8px;
    background: rgba(0,0,0,0.72);
    color: white;
    padding: 3px 7px;
    border-radius: 3px;
    font-family: ui-monospace, Menlo, monospace;
    font-size: 10.5px;
    z-index: 1;
  }
  .mv-card .tn .play-overlay {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    opacity: 0;
    background: rgba(0,0,0,0.18);
    transition: opacity .2s ease;
    z-index: 1;
  }
  .mv-card:hover .tn .play-overlay { opacity: 1; }
  .mv-card .tn .play-overlay .pob {
    width: 44px; height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    display: grid; place-items: center;
    color: var(--ink);
  }
  .mv-card .vs {
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal-2);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .mv-card h4 {
    margin: 0 0 6px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
    line-height: 1.3;
    text-wrap: balance;
  }
  .mv-card .vm {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .mv-card .vm .sep { width: 2px; height: 2px; background: var(--muted); border-radius: 999px; }

  /* ============ SERIES STRIP (horizontal scroll) ============ */
  .series-strip-section {
    background: var(--sand-3);
    padding: 96px 0;
  }
  .series-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 220px;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .series-strip::-webkit-scrollbar { height: 6px; }
  .series-strip::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
  .series-card-h {
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform .2s ease;
    color: inherit;
  }
  .series-card-h:hover { transform: translateY(-3px); }
  .series-card-h .cover {
    aspect-ratio: 4/5;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    display: grid; place-items: center;
    color: var(--sand-3);
    text-align: center;
    padding: 20px;
  }
  .series-card-h .cover::after {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px);
    pointer-events: none;
  }
  .series-card-h .cover .nm {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0.04em;
    position: relative; z-index: 1;
  }
  .series-card-h .cover.c1 { background: linear-gradient(160deg, #5E8F88, #1f3431); }
  .series-card-h .cover.c2 { background: linear-gradient(160deg, #c7b48a, #6f6346); color: var(--ink); }
  .series-card-h .cover.c3 { background: linear-gradient(160deg, #2A2C2B, #1B1D1C); }
  .series-card-h .cover.c4 { background: linear-gradient(160deg, #7BA8A1, #3d5e59); }
  .series-card-h .cover.c5 { background: linear-gradient(160deg, #b9a884, #7d6e4f); color: var(--ink); }
  .series-card-h .cover.c6 { background: linear-gradient(160deg, #4a4d4c, #2A2C2B); }
  .series-card-h h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
  }
  .series-card-h .smeta {
    font-size: 11.5px;
    color: var(--muted);
    display: flex; align-items: center; gap: 6px;
  }
  .series-card-h .smeta .sep { width: 2px; height: 2px; background: var(--muted); border-radius: 999px; }

  /* ============ AUDIO / PODCAST (smaller) ============ */
  .audio-strip { padding: 88px 0 120px; }
  .audio-card {
    background: var(--ink);
    color: var(--sand-3);
    border-radius: 6px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .audio-card::before {
    content: "";
    position: absolute;
    right: -80px; top: -80px;
    width: 260px; height: 260px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .audio-card h3 {
    font-weight: 300;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 14px 0 14px;
    position: relative; z-index: 2;
  }
  .audio-card h3 em {
    font-style: normal;
    font-family: 'Cinzel', serif;
    color: var(--teal-3);
    font-weight: 400;
  }
  .audio-card p {
    color: rgba(250, 246, 236, 0.7);
    margin: 0 0 24px;
    max-width: 420px;
    font-size: 15px;
    line-height: 1.6;
    position: relative; z-index: 2;
  }
  .platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative; z-index: 2;
  }
  .platforms a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 18px;
    border-radius: 6px;
    transition: all .15s ease;
    font-size: 13px;
    font-weight: 500;
    color: var(--sand-3);
  }
  .platforms a:hover { background: rgba(255,255,255,0.1); transform: translateY(-1px); }
  .platforms a .nm { display: flex; align-items: center; gap: 10px; }
  .platforms a .ic {
    width: 24px; height: 24px;
    border-radius: 999px;
    background: var(--teal-2);
    display: grid; place-items: center;
    color: var(--sand-3);
    font-family: 'Cinzel', serif;
    font-size: 12px;
  }

  @media (max-width: 1200px) {
    .watch-grid { grid-template-columns: 1fr; }
    .up-next { grid-template-columns: 1fr; }
  }
  @media (max-width: 960px) {
    .mv-grid { grid-template-columns: repeat(2, 1fr); }
    .audio-card { grid-template-columns: 1fr; padding: 40px 28px; }
    .fp-row { grid-template-columns: 24px 100px 1fr auto; gap: 12px; }
    .fp-row .speaker { display: none; }
    .video-meta { flex-direction: column; align-items: flex-start; }
  }
}
