:root {
    --bs-bg: #0a0a0a;
    --bs-bg-card: #121212;
    --bs-bg-meta: #1a1a1a;
    --bs-text: #ffffff;
    --bs-text-muted: #888888;
    --bs-accent: #ffffff;
    --bs-chip-bg: #222222;
    --bs-chip-border: #333333;
    --bs-radius: 24px;
    --bs-radius-sm: 14px;
    --bs-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    --bs-glow: 0 0 40px rgba(255, 255, 255, 0.15);
    --bs-gap: 20px;
}

.bs-podcast-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.bs-podcast-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: var(--bs-gap);
}

@media (max-width: 1024px) {
    .bs-podcast-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .bs-podcast-grid {
        grid-template-columns: 1fr !important;
    }
}

.bs-podcast-card {
    background: var(--bs-bg-card);
    border-radius: var(--bs-radius);
    overflow: hidden;
    box-shadow: var(--bs-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bs-podcast-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
}

.bs-podcast-card__cover {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.bs-podcast-card__cover-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #111;
    position: relative;
}

.bs-podcast-card__cover-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.bs-podcast-card__cover-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'><defs><radialGradient id='g' cx='50%' cy='50%' r='50%'><stop offset='0%' stop-color='%23333' stop-opacity='0.15'/><stop offset='100%' stop-color='%23000' stop-opacity='0'/></radialGradient></defs><circle cx='250' cy='250' r='200' fill='url(%23g)'/><path d='M150 350 Q200 50 350 150 Q450 250 300 400 Q200 450 150 350 Z' fill='none' stroke='%23444' stroke-width='40' stroke-opacity='0.3' stroke-linecap='round' fill-opacity='0.05' fill='%23222'/></svg>");
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.9;
}

.bs-podcast-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    color: var(--bs-text);
}

.bs-podcast-card__brand {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-bottom: 12px;
}

.bs-podcast-card__title-large {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.2rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 20px;
}

.bs-podcast-card__waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    max-width: 280px;
    height: 36px;
    margin-bottom: 18px;
    position: relative;
}

.bs-podcast-card__waveform::before,
.bs-podcast-card__waveform::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 60px);
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.bs-podcast-card__waveform::before {
    left: 0;
}

.bs-podcast-card__waveform::after {
    right: 0;
}

.bs-podcast-card__waveform span {
    display: block;
    width: 3px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
    border-radius: 2px;
    animation: bs-wave 1.4s ease-in-out infinite;
}

.bs-podcast-card__waveform span:nth-child(1)  { height: 20%; animation-delay: -0.0s; }
.bs-podcast-card__waveform span:nth-child(2)  { height: 35%; animation-delay: -0.1s; }
.bs-podcast-card__waveform span:nth-child(3)  { height: 55%; animation-delay: -0.2s; }
.bs-podcast-card__waveform span:nth-child(4)  { height: 75%; animation-delay: -0.3s; }
.bs-podcast-card__waveform span:nth-child(5)  { height: 50%; animation-delay: -0.4s; }
.bs-podcast-card__waveform span:nth-child(6)  { height: 90%; animation-delay: -0.5s; }
.bs-podcast-card__waveform span:nth-child(7)  { height: 65%; animation-delay: -0.6s; }
.bs-podcast-card__waveform span:nth-child(8)  { height: 95%; animation-delay: -0.7s; }
.bs-podcast-card__waveform span:nth-child(9)  { height: 55%; animation-delay: -0.6s; }
.bs-podcast-card__waveform span:nth-child(10) { height: 80%; animation-delay: -0.5s; }
.bs-podcast-card__waveform span:nth-child(11) { height: 40%; animation-delay: -0.4s; }
.bs-podcast-card__waveform span:nth-child(12) { height: 65%; animation-delay: -0.3s; }
.bs-podcast-card__waveform span:nth-child(13) { height: 90%; animation-delay: -0.2s; }
.bs-podcast-card__waveform span:nth-child(14) { height: 45%; animation-delay: -0.1s; }
.bs-podcast-card__waveform span:nth-child(15) { height: 25%; animation-delay: -0.0s; }

@keyframes bs-wave {
    0%, 100% { transform: scaleY(1); }
    50%      { transform: scaleY(0.4); }
}

.bs-podcast-card:hover .bs-podcast-card__waveform span {
    animation-duration: 0.8s;
}

.bs-podcast-card__tagline {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.bs-podcast-card__play {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    transform: translateY(8px);
    z-index: 3;
}

.bs-podcast-card:hover .bs-podcast-card__play {
    opacity: 1;
    transform: translateY(0);
}

.bs-podcast-card__play:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6);
}

.bs-podcast-card.is-playing .bs-podcast-card__play {
    background: #222;
    color: #fff;
    opacity: 1;
    transform: translateY(0);
}

.bs-podcast-card__meta {
    padding: 18px 20px 20px;
    background: var(--bs-bg-meta);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bs-podcast-card__title {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #ffffff !important;
}

.bs-podcast-card .bs-podcast-card__title,
.bs-podcast-card .bs-podcast-card__title a {
    color: #ffffff !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.bs-podcast-card .bs-podcast-card__title a:hover {
    opacity: 0.82;
}

.bs-podcast-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bs-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--bs-chip-bg);
    border: 1px solid var(--bs-chip-border);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #e0e0e0;
    line-height: 1.4;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.bs-chip:hover {
    background: #2a2a2a;
    border-color: #444;
}

.bs-chip strong {
    color: #fff;
    font-weight: 700;
}

.bs-chip--genre {
    color: #e5e5e5;
}

.bs-chip--episode {
    margin-left: auto;
    font-weight: 700;
}

.bs-chip--duration {
    color: #aaa;
    font-size: 0.78rem;
}

.bs-chip--duration svg {
    opacity: 0.7;
}

.bs-podcast-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--bs-text-muted);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
}

/* ============ BUND-PLAYER (CUSTOM, matcher kort-design) ============ */
.bs-podcast-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    background-image:
        radial-gradient(ellipse at top left, rgba(255,255,255,0.03), transparent 60%),
        linear-gradient(180deg, #0f0f0f 0%, #050505 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 28px;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(.2,.9,.3,1);
    box-shadow:
        0 -10px 40px rgba(0,0,0,0.7),
        0 -1px 0 rgba(255,255,255,0.04) inset;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #fff !important;
}

.bs-podcast-player.is-visible {
    transform: translateY(0);
}

.bs-podcast-player__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
    color: #fff !important;
}

/* Cover billede (venstre side, runde hjørner m. glød) */
.bs-podcast-player__cover {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    flex-shrink: 0;
    box-shadow:
        0 8px 24px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.08) inset;
    position: relative;
    overflow: hidden;
}

.bs-podcast-player__cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 50%);
    pointer-events: none;
}

/* Info (titel + episode, force hvid!) */
.bs-podcast-player__info {
    min-width: 0;
    flex: 0 0 280px;
    color: #fff !important;
}

.bs-podcast-player__title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 4px !important;
    letter-spacing: -0.01em;
}

.bs-podcast-player__episode {
    color: #bbbbbb !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em;
}

/* Native audio = SKJUL HELT (vores custom UI styrer den!) */
.bs-podcast-player audio {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* ===== CONTROLS (center: play, tid, progress, volume, menu) ===== */
.bs-podcast-player__controls {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    color: #fff;
}

/* Store hvide play/pause knap (som på kortet!) */
.bs-podcast-player__play {
    width: 44px;
    height: 44px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 0 0 2px;
    box-shadow:
        0 8px 20px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.1) inset,
        0 1px 0 rgba(255,255,255,0.9) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bs-podcast-player__play:hover {
    transform: scale(1.06);
    box-shadow:
        0 12px 28px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.14) inset,
        0 1px 0 rgba(255,255,255,0.9) inset;
}

.bs-podcast-player__play:active {
    transform: scale(0.97);
}

/* Tid */
.bs-podcast-player__time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    font-size: 0.85rem;
    color: #bbb;
    min-width: 130px;
    justify-content: flex-end;
}

.bs-podcast-player__time-current {
    color: #fff;
    font-weight: 600;
}

.bs-podcast-player__time-sep {
    color: #666;
}

.bs-podcast-player__time-total {
    color: #999;
}

/* Progress bar */
.bs-podcast-player__progress {
    position: relative;
    flex: 1;
    height: 22px;
    display: flex;
    align-items: center;
    cursor: pointer;
    min-width: 120px;
}

.bs-podcast-player__progress-bg {
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    transition: height 0.2s ease;
}

.bs-podcast-player__progress-fill {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 5px;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffffff 0%, #d0d0d0 100%);
    box-shadow: 0 0 12px rgba(255,255,255,0.25);
    transition: height 0.2s ease;
}

.bs-podcast-player__progress-thumb {
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.bs-podcast-player__progress:hover .bs-podcast-player__progress-bg,
.bs-podcast-player__progress:hover .bs-podcast-player__progress-fill {
    height: 7px;
}

.bs-podcast-player__progress:hover .bs-podcast-player__progress-thumb {
    opacity: 1;
}

/* Volume */
.bs-podcast-player__mute,
.bs-podcast-player__menu {
    background: none !important;
    border: none !important;
    outline: none !important;
    color: #cccccc !important;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.bs-podcast-player__mute:hover,
.bs-podcast-player__menu:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.06);
    transform: scale(1.05);
}

.bs-podcast-player__mute:active,
.bs-podcast-player__menu:active {
    transform: scale(0.97);
}

.bs-podcast-player__volume {
    position: relative;
    width: 80px;
    height: 22px;
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.bs-podcast-player__volume-bg {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
}

.bs-podcast-player__volume-fill {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    border-radius: 999px;
    background: rgba(255,255,255,0.55);
}

.bs-podcast-player__volume:hover .bs-podcast-player__volume-fill {
    background: rgba(255,255,255,0.8);
}

/* Luk knap */
.bs-podcast-player__close {
    background: none !important;
    border: none !important;
    outline: none !important;
    color: #888 !important;
    cursor: pointer;
    padding: 8px;
    font-size: 1.7rem !important;
    font-weight: 300 !important;
    line-height: 1;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.bs-podcast-player__close:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.06);
    transform: scale(1.05);
}

/* ===== RESPONSIVE (mobile/wrap) ===== */
@media (max-width: 900px) {
    .bs-podcast-player {
        padding: 12px 16px;
    }
    .bs-podcast-player__inner {
        flex-wrap: wrap;
        gap: 12px;
    }
    .bs-podcast-player__info {
        flex: 1;
        min-width: 0;
        flex-basis: 160px;
    }
    .bs-podcast-player__controls {
        order: 3;
        flex-basis: 100%;
        gap: 10px;
    }
    .bs-podcast-player__time {
        min-width: 0;
        order: 2;
        flex: 0 0 auto;
    }
    .bs-podcast-player__volume {
        display: none;
    }
    .bs-podcast-player__menu {
        display: none;
    }
}

@media (max-width: 520px) {
    .bs-podcast-player__cover {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }
    .bs-podcast-player__play {
        width: 40px;
        height: 40px;
    }
    .bs-podcast-player__info {
        flex-basis: 120px;
    }
    .bs-podcast-player__title {
        font-size: 0.9rem !important;
    }
    .bs-podcast-player__episode {
        font-size: 0.75rem !important;
    }
}

.bs_podcast_grid_widget .widget-title,
.bs_podcast_episode_widget .widget-title {
    margin-top: 0;
}

.bs_podcast_grid_widget .bs-podcast-wrap,
.bs_podcast_episode_widget .bs-podcast-wrap {
    padding: 0;
}

.bs-chip--new {
    animation: bs-new-pulse 1.5s ease-in-out infinite;
}

@keyframes bs-new-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 36, 36, 0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(212, 36, 36, 0); }
}

/* ============ TRACKS ============ */

.bs_track_grid_widget .widget-title,
.bs_track_single_widget .widget-title {
    margin-top: 0;
}

.bs-tracks-wrap {
    width: 100%;
    box-sizing: border-box;
}

.bs_track_grid_widget .bs-tracks-wrap,
.bs_track_single_widget .bs-tracks-wrap {
    padding: 0;
}

.bs-tracks-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bs-track-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    background: var(--bs-bg-card, #121212);
    border-radius: var(--bs-radius-sm, 14px);
    border: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.bs-track-row:hover {
    background: #181818;
    border-color: rgba(255,255,255,0.1);
    transform: translateX(2px);
}

.bs-track-row.is-featured {
    border: 1px solid rgba(255, 200, 50, 0.4);
    box-shadow: inset 0 0 0 1px rgba(255, 200, 50, 0.15);
}

.bs-track-row.is-premiere {
    border: 1px solid rgba(212, 36, 36, 0.4);
}

.bs-track-row__main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}

.bs-track-row__art {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.bs-track-row__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bs-track-row__no {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.2s ease;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.bs-track-row:hover .bs-track-row__no {
    opacity: 1;
}

/* Premium play-knap på track rows: Ingen old-style dækning, brug bs-hero-play styles i stedet */
.bs-track-row__play.bs-hero-play {
    position: absolute !important;
    bottom: 8px !important;
    right: 8px !important;
    inset: auto !important;
    width: 56px !important;
    height: 56px !important;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.bs-track-row:hover .bs-track-row__play.bs-hero-play {
    opacity: 1 !important;
    transform: translateY(0);
}

.bs-track-row__play.bs-hero-play .bs-hero-play__core {
    width: 56px !important;
    height: 56px !important;
}

.bs-track-row__play.bs-hero-play .bs-play,
.bs-track-row__play.bs-hero-play .bs-pause {
    width: 24px !important;
    height: 24px !important;
}

.bs-track-row__info {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bs-track-row__topline {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.bs-track-row__artist {
    color: #aaa;
    font-weight: 600;
    font-size: 0.9rem;
}

.bs-track-row__sep {
    color: #555;
    font-size: 0.9rem;
}

.bs-track-row__title {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.bs-track-row__title a {
    color: inherit;
    text-decoration: none;
}

.bs-track-row__title a:hover {
    color: #ccc;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.bs-track-row__version {
    color: #888;
    font-size: 0.82rem;
    font-weight: 500;
}

.bs-track-row__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bs-chip--premiere {
    background: #d42424 !important;
    color: #fff !important;
    border-color: #ff3b3b !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    animation: bs-new-pulse 2s ease-in-out infinite;
}

.bs-chip--featured {
    background: linear-gradient(135deg, #f5a623, #f7d774) !important;
    color: #1a1100 !important;
    border-color: #f5a623 !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em;
}

.bs-chip--meta {
    color: #bbb !important;
    background: #1f1f1f !important;
    border-color: #2a2a2a !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bs-track-row__links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.bs-track-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #aaa;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bs-track-link span {
    display: none;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 6px;
}

.bs-track-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

.bs-track-link--spotify:hover {
    color: #1DB954;
    background: rgba(29, 185, 84, 0.12);
}

.bs-track-link--beatport:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.bs-track-link--soundcloud:hover {
    color: #ff7700;
    background: rgba(255, 119, 0, 0.12);
}

.bs-track-link--youtube:hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

.bs-track-link--more:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 560px) {
    .bs-track-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .bs-track-row__links {
        justify-content: flex-end;
        padding-top: 6px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .bs-track-row__art {
        width: 80px;
        height: 80px;
    }
}

/* ---- TRACK CARD (grid mode / single widget) ---- */

.bs-tracks-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: var(--bs-gap, 24px);
}

@media (max-width: 1024px) {
    .bs-tracks-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .bs-tracks-grid {
        grid-template-columns: 1fr !important;
    }
}

.bs-track-card {
    background: var(--bs-bg-card, #121212);
    border-radius: var(--bs-radius, 24px);
    overflow: hidden;
    box-shadow: var(--bs-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.04);
}

.bs-track-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.1);
}

/* Ingen specielle farvede borders på is-premiere / is-featured — præcis som podcast! */

.bs-track-card.is-featured {
    /* Ingen border */
}

.bs-track-card.is-premiere {
    /* Ingen border */
}

.bs-track-card__cover {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.bs-track-card__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #111;
    position: relative;
}

.bs-track-card__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.78) 100%);
    z-index: 1;
}

.bs-track-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.88) 100%);
    z-index: 2;
}

.bs-track-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px 20px 20px;
    z-index: 3;
    color: #fff;
    gap: 10px;
    opacity: 1;
    pointer-events: none;
}

.bs-track-card__brand {
    font-size: clamp(0.55rem, 0.78vw, 0.8rem);
    letter-spacing: 0.34em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin: 0 0 6px;
}

.bs-track-card__title-large {
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.bs-track-card__tagline {
    font-size: clamp(0.52rem, 0.76vw, 0.78rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    margin-top: 6px;
    line-height: 1.4;
}

.bs-track-card__play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transform: translateY(6px);
}

.bs-track-card:hover .bs-track-card__play {
    transform: translateY(0);
}

.bs-track-card__play:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(0,0,0,0.6);
}

.bs-track-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    pointer-events: none;
    z-index: 2;
}

.bs-track-card__badges .bs-right {
    margin-left: auto;
}

.bs-track-card__meta {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    background: var(--bs-bg-meta, #1a1a1a);
}

.bs-track-card__artist {
    font-size: 0.82rem;
    font-weight: 600;
    color: #bbb;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.bs-track-card__title {
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.bs-track-card__title a {
    color: #fff;
    text-decoration: none;
}

.bs-track-card__title a:hover {
    color: #ccc;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.bs-track-card__version {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: -4px;
}

.bs-track-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 0 2px;
}

.bs-track-card__sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #999;
    font-size: 0.82rem;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 4px;
}

.bs-track-card__label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.bs-track-card__date {
    color: #777;
    font-variant-numeric: tabular-nums;
}

.bs-track-card__links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 6px;
}

.bs-track-card__links .bs-track-link {
    width: auto;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #222;
    border: 1px solid #2a2a2a;
    font-size: 0.8rem;
}

.bs-track-card__links .bs-track-link span {
    display: inline;
}

/* ============ PODCAST CARD REDESIGN V2 ============ */

/* ALT TEKST ER 100% HVID — UANSET TEMA DEFAULT */
.bs-podcast-card__title,
.bs-podcast-card__title a,
.bs-podcast-card .bs-podcast-card__title,
.bs-podcast-card .bs-podcast-card__title a {
    color: #ffffff !important;
}

.bs-chip,
.bs-chip strong,
.bs-chip--genre,
.bs-chip--episode,
.bs-chip--duration,
.bs-chip--new,
.bs-chip--premiere,
.bs-chip--featured,
.bs-chip--meta {
    color: #ffffff !important;
}

/* Nr. chip forbliver højre-orienteret */
.bs-chip--episode {
    margin-left: auto !important;
}

.bs-podcast-card__excerpt {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #e0e0e0 !important;
    padding: 10px 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 720px) {
    .bs-podcast-card__excerpt { display: none; }
}

/* ============ TRACKS — FORCE HVID TEKST + EXCERPTS ============ */

.bs-track-card__title,
.bs-track-card__title a,
.bs-track-row__title,
.bs-track-row__title a {
    color: #ffffff !important;
}

.bs-track-card__artist,
.bs-track-row__artist {
    color: #cccccc !important;
}

.bs-track-card__version,
.bs-track-row__version {
    color: #aaaaaa !important;
}

.bs-track-card__excerpt,
.bs-track-row__excerpt {
    margin: 0;
    padding: 6px 0 2px;
    font-size: 0.86rem;
    line-height: 1.55;
    color: #d5d5d5 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bs-track-card__excerpt { padding: 4px 0 10px; }
.bs-track-row__excerpt { padding: 4px 0 6px; -webkit-line-clamp: 1; line-clamp: 1; }

/* SKJUL GAMMEL LILLE PLAY-KNAP */
.bs-podcast-card__play {
    display: none !important;
}

/* ============ NY STOR PLAY-KNAP ============ */
.bs-play-button {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) scale(0.96);
    width: 88px;
    height: 88px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.2,.9,.3,1.4);
    z-index: 4;
    outline: none !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-tap-highlight-color: transparent;
    border-radius: 50%;
}

.bs-podcast-card:hover .bs-play-button,
.bs-podcast-card.is-playing .bs-play-button,
.bs-track-card:hover .bs-play-button,
.bs-track-card.is-playing .bs-play-button {
    opacity: 1 !important;
    transform: translateX(-50%) scale(1);
}

.bs-single .bs-single__hero-play {
    opacity: 1 !important;
}
.bs-single:hover .bs-single__hero-play {
    transform: none;
}

.bs-play-button__ring {
    position: absolute;
    inset: -6px;
    box-sizing: border-box;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.35s ease;
    z-index: 0;
    aspect-ratio: 1 / 1;
}

.bs-play-button:hover .bs-play-button__ring {
    opacity: 1;
    transform: scale(1);
    animation: bs-play-pulse 2s ease-out infinite;
}

.bs-play-button__core {
    position: relative;
    width: 72px;
    height: 72px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #fbfbfb 45%, #f2f2f2 80%, #ececec 100%);
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 14px 36px rgba(0,0,0,0.68),
        0 0 40px rgba(255,255,255,0.12),
        0 0 0 1px rgba(0,0,0,0.08),
        0 0 0 2px rgba(255,255,255,0.55) inset,
        0 2px 0 rgba(255,255,255,0.9) inset,
        inset 0 -10px 20px rgba(0,0,0,0.05);
    z-index: 1;
    transition: transform 0.22s cubic-bezier(.2,.9,.3,1.3), box-shadow 0.25s ease, background 0.25s ease;
    animation: bs-play-idle-pulse 3.2s ease-in-out infinite;
}

.bs-play-button:hover .bs-play-button__core {
    transform: scale(1.08);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.75),
        0 0 64px rgba(255,255,255,0.3),
        0 0 0 1px rgba(0,0,0,0.1),
        0 0 0 2px rgba(255,255,255,0.75) inset,
        0 2px 0 rgba(255,255,255,0.95) inset,
        inset 0 -10px 20px rgba(0,0,0,0.05);
}

.bs-play-button:active .bs-play-button__core {
    transform: scale(0.96);
    animation-duration: 0s;
}

.bs-play-icon,
.bs-pause-icon {
    transition: opacity 0.2s ease, transform 0.25s ease;
    position: absolute;
}

.bs-play-icon {
    transform: translateX(3px);
}

.bs-pause-icon {
    opacity: 0;
    transform: scale(0.6);
}

.bs-podcast-card.is-playing .bs-play-button__core,
.bs-track-card.is-playing .bs-play-button__core {
    background: linear-gradient(145deg, #1a1a1a 0%, #121212 45%, #0a0a0a 80%, #050505 100%) !important;
    color: #ffffff !important;
    box-shadow:
        0 14px 36px rgba(0,0,0,0.75),
        0 0 56px rgba(255,255,255,0.22),
        0 0 0 1px rgba(255,255,255,0.85),
        0 0 0 3px rgba(255,255,255,0.12) inset,
        0 2px 0 rgba(255,255,255,0.15) inset,
        inset 0 -10px 20px rgba(0,0,0,0.45) !important;
    animation: bs-play-glow 1.8s ease-in-out infinite !important;
}

.bs-podcast-card.is-playing .bs-play-icon,
.bs-track-card.is-playing .bs-play-icon {
    opacity: 0;
    transform: scale(0.6);
}

.bs-podcast-card.is-playing .bs-pause-icon,
.bs-track-card.is-playing .bs-pause-icon {
    opacity: 1;
    transform: scale(1);
}

.bs-podcast-card.is-playing {
    box-shadow: 0 0 0 2px rgba(255,255,255,0.12), 0 30px 70px rgba(0,0,0,0.7) !important;
    transform: translateY(-6px);
}

@keyframes bs-play-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.45);
        opacity: 1;
    }
    100% {
        box-shadow: 0 0 0 28px rgba(255,255,255,0);
        opacity: 0;
    }
}

@keyframes bs-play-glow {
    0%, 100% {
        box-shadow:
            0 14px 36px rgba(0,0,0,0.75),
            0 0 0 1px rgba(255,255,255,0.85),
            0 0 48px rgba(255,255,255,0.25),
            0 0 0 3px rgba(255,255,255,0.12) inset,
            inset 0 -10px 20px rgba(0,0,0,0.45);
    }
    50% {
        box-shadow:
            0 14px 36px rgba(0,0,0,0.75),
            0 0 0 1px rgba(255,255,255,1),
            0 0 80px rgba(255,255,255,0.45),
            0 0 0 3px rgba(255,255,255,0.22) inset,
            inset 0 -10px 20px rgba(0,0,0,0.45);
    }
}

@keyframes bs-play-idle-pulse {
    0%, 100% {
        box-shadow:
            0 14px 36px rgba(0,0,0,0.68),
            0 0 36px rgba(255,255,255,0.1),
            0 0 0 1px rgba(0,0,0,0.08),
            0 0 0 2px rgba(255,255,255,0.5) inset,
            0 2px 0 rgba(255,255,255,0.9) inset,
            inset 0 -10px 20px rgba(0,0,0,0.05);
    }
    50% {
        box-shadow:
            0 14px 36px rgba(0,0,0,0.68),
            0 0 56px rgba(255,255,255,0.22),
            0 0 0 1px rgba(0,0,0,0.08),
            0 0 0 2px rgba(255,255,255,0.65) inset,
            0 2px 0 rgba(255,255,255,0.9) inset,
            inset 0 -10px 20px rgba(0,0,0,0.05);
    }
}

/* ============ PREMIUM UNIVERSEL PLAY-KNAP (single + widget) ============ */
.bs-hero-play {
    position: absolute;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    border: none !important;
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-tap-highlight-color: transparent;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    z-index: 4;
    transition: transform 0.25s cubic-bezier(.2,.9,.3,1.3), opacity 0.2s ease;
}

.bs-hero-play--card {
    width: 88px;
    height: 88px;
}

.bs-hero-play--sm {
    width: 76px;
    height: 76px;
}

.bs-hero-play__ring {
    position: absolute;
    inset: -6px;
    box-sizing: border-box;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 72%);
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.35s ease;
    z-index: 0;
    aspect-ratio: 1 / 1;
}

.bs-hero-play:hover .bs-hero-play__ring {
    opacity: 1;
    transform: scale(1);
    animation: bs-play-pulse 2s ease-out infinite;
}

.bs-hero-play__core {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #fbfbfb 45%, #f2f2f2 80%, #ececec 100%);
    color: #000000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 14px 36px rgba(0,0,0,0.68),
        0 0 40px rgba(255,255,255,0.12),
        0 0 0 1px rgba(0,0,0,0.08),
        0 0 0 2px rgba(255,255,255,0.55) inset,
        0 2px 0 rgba(255,255,255,0.9) inset,
        inset 0 -10px 20px rgba(0,0,0,0.05);
    z-index: 1;
    transition: transform 0.22s cubic-bezier(.2,.9,.3,1.3), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    animation: bs-play-idle-pulse 3.2s ease-in-out infinite;
}

.bs-hero-play:hover .bs-hero-play__core {
    transform: scale(1.08);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.75),
        0 0 64px rgba(255,255,255,0.3),
        0 0 0 1px rgba(0,0,0,0.1),
        0 0 0 2px rgba(255,255,255,0.75) inset,
        0 2px 0 rgba(255,255,255,0.95) inset,
        inset 0 -10px 20px rgba(0,0,0,0.05);
}

.bs-hero-play:active .bs-hero-play__core {
    transform: scale(0.96);
    animation-duration: 0s;
}

.bs-hero-play .bs-play,
.bs-hero-play .bs-pause {
    transition: opacity 0.2s ease, transform 0.25s ease;
    position: absolute;
    fill: currentColor;
}

.bs-hero-play .bs-play  { transform: translateX(3px); opacity: 1; }
.bs-hero-play .bs-pause { transform: scale(0.6); opacity: 0; }

/* IS-PLAYING STATE = SORT + HVID GLOW */
.bs-hero-play.is-playing .bs-hero-play__core {
    background: linear-gradient(145deg, #1a1a1a 0%, #121212 45%, #0a0a0a 80%, #050505 100%);
    color: #ffffff;
    box-shadow:
        0 14px 36px rgba(0,0,0,0.75),
        0 0 56px rgba(255,255,255,0.22),
        0 0 0 1px rgba(255,255,255,0.85),
        0 0 0 3px rgba(255,255,255,0.12) inset,
        0 2px 0 rgba(255,255,255,0.15) inset,
        inset 0 -10px 20px rgba(0,0,0,0.45);
    animation: bs-play-glow 1.8s ease-in-out infinite;
}

.bs-hero-play.is-playing .bs-play  { transform: scale(0.6); opacity: 0; }
.bs-hero-play.is-playing .bs-pause { transform: scale(1);   opacity: 1; }

/* ============ PROGRESS BAR + EQUALIZER AREA ============ */
.bs-podcast-card__progress {
    position: relative;
    height: 18px;
    background: #161616;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.bs-podcast-card__progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: linear-gradient(90deg,
        #ff6a00 0%,
        #ee0979 40%,
        #bd00ff 70%,
        #00c6ff 100%);
    background-size: 200% 100%;
    animation: bs-progress-flow 6s linear infinite;
    box-shadow: 0 0 14px rgba(238, 9, 121, 0.5);
    transition: width 0.1s linear;
    z-index: 2;
}

.bs-podcast-card__progress-bar::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px rgba(255,255,255,0.9), 0 0 28px rgba(238, 9, 121, 0.8);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.bs-podcast-card.is-playing .bs-podcast-card__progress-bar::after {
    opacity: 1;
}

.bs-podcast-card__equalizer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0 18px;
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.bs-podcast-card__equalizer i {
    display: block;
    width: 3px;
    height: 22%;
    border-radius: 2px;
    background: #ffffff;
    transform-origin: center;
    animation: bs-eq-idle 2.2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 60ms);
    opacity: 0.6;
}

.bs-podcast-card.is-playing .bs-podcast-card__equalizer {
    opacity: 0.9;
}

.bs-podcast-card.is-playing .bs-podcast-card__equalizer i {
    animation: bs-eq-live 0.55s ease-in-out infinite;
    animation-delay: calc(var(--i) * 35ms);
    background: linear-gradient(to top, #ee0979, #00c6ff);
    opacity: 1;
}

@keyframes bs-progress-flow {
    0%   { background-position:   0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes bs-eq-idle {
    0%, 100% { transform: scaleY(0.25); }
    50%      { transform: scaleY(0.7); }
}

@keyframes bs-eq-live {
    0%, 100% { transform: scaleY(0.2);  height: 28%; }
    25%      { transform: scaleY(1.6);  height: 96%; }
    50%      { transform: scaleY(0.6);  height: 46%; }
    75%      { transform: scaleY(1.2);  height: 78%; }
}

@media (max-width: 600px) {
    .bs-play-button {
        width: 76px;
        height: 76px;
        opacity: 0.95;
    }
    .bs-play-button__core {
        width: 62px;
        height: 62px;
    }
}

.bs-podcast-card__meta .bs-podcast-card__excerpt {
    display: block;
    color: #cfd0d4;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 10px 0 14px;
    padding: 0;
}

/* ============ TRACKS: excerpt styling udenfor kort ============ */

.bs-track-card__description-label,
.bs-track-row__description-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #bdbdbd;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.bs-track-card__description {
    padding: 0 18px 18px 18px;
    position: relative;
}

.bs-track-card__description .bs-track-card__excerpt,
.bs-track-row__description .bs-track-row__excerpt {
    display: block !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    color: #dedede !important;
    max-width: 70ch;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
}

.bs-track-row__description {
    padding: 4px 18px 14px calc(64px + 20px);
}

@media (max-width: 820px) {
    .bs-track-row__description { padding: 4px 16px 14px 16px; }
}

/* CTA knap brugt paa beskrivelsesbokse */
.bs-podcast-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #000000 !important;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.88rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 6px 16px rgba(255,255,255,0.08);
    line-height: 1.2;
}
.bs-podcast-card__cta:hover {
    transform: translateY(-2px);
    background: #f5f5f5;
    box-shadow: 0 10px 22px rgba(255,255,255,0.16);
}
