.podcast-teaser {
    background: var(--aok-pastel-blue);
    padding: 2rem;
}

.button-wrap {
    margin-top: 2rem;
}

.podcast-container {
    margin-bottom: 4rem;
}

.podcast-slot {
    background: var(--aok-sand);
    padding: 0 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.form-mental + .podcast-slot {
    margin-top: -2rem;
}

@media (min-width: 769px) {
    .podcast-slot {
        padding: 0 10vw 4rem 10vw;
    }

    .podcast-teaser {
        display: grid;
        grid-template-columns: 1.25fr 1fr;
        grid-gap: 2rem;
        align-items: flex-end;
    }

    .podcast-teaser .button {
        align-self: flex-end;
    }

    .button-wrap {
        display: flex;
        justify-content: flex-end;
        margin-top: 0;
    }
}

/* Modal Grundlayout */
.podcast-modal {
    position: fixed;
    inset: 0; /* top, right, bottom, left = 0 */
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6); /* dunkler Overlay */
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto;
}

/* Sichtbar, wenn is-visible gesetzt wird */
.podcast-modal.is-visible {
    display: flex;
}

/* Inhalt im Modal */
.podcast-modal .infobox {
    background: var(--aok-bright, #fff);
    padding: 2rem;
    max-width: 560px;
    min-height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: relative;
}

/* Close-Button */
.podcast-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--aok-green, #004730);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .podcast-modal .infobox {
        padding: 1.5rem;
        max-width: 95%;
        min-height: 300px;
    }
}
