/* --------------------------------------------------------------------------
   Podcast kaarten (post--podcast) — v1.2
   -------------------------------------------------------------------------- */

/* Badge linksboven op de thumbnail */
.post--podcast .podcast-badge {
    top: 1rem;
    left: 1rem;
    z-index: 3;
    gap: .5rem;
    padding: .45rem .8rem;
    font-size: .9rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    background: rgba(0, 0, 0, .65);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    pointer-events: none;
}

.post--podcast .podcast-badge-icon {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
}

/* Play-knop: groot, gecentreerd, puur decoratief
   (klik gaat via de overlay-link naar het bericht) */
.post--podcast .podcast-play {
    z-index: 2;
    width: 84px;
    height: 84px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--bs-primary, #f60);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post--podcast .podcast-play svg {
    width: 32px;
    height: 32px;
    margin-left: 4px; /* driehoek optisch centreren */
}

/* Hover op de hele kaart (niet op de knop zelf, die is decoratief) */
.post--podcast:hover .podcast-play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Thumbnail licht dimmen bij hover zodat de play-knop meer opvalt */
.post--podcast .podcast-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s ease;
    pointer-events: none;
}

.post--podcast:hover .podcast-media::after {
    background: rgba(0, 0, 0, 0.15);
}