/* =========================================
   PODCAST CTA SECTION
   ========================================= */

.podcast-cta {
    width: 100%;
    padding: 0 20px;
}

.podcast-cta__card {
    display: flex;
    padding: 48px;
    align-items: center;
    gap: 48px;
    align-self: stretch;
    border-radius: 20px;
    background: #566C31;
}

/* ---- Image ---- */

.podcast-cta__image-wrapper {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.podcast-cta__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Content ---- */

.podcast-cta__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

/* ---- Heading ---- */

.podcast-cta__heading {
    color: #FFF;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 125% */
    margin: 0;
}

/* ---- Subheading ---- */

.podcast-cta__subheading {
    color: #D6EB12;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* ---- Body (paragraph + button wrapper) ---- */

.podcast-cta__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 12px;
}

/* ---- Paragraph ---- */

.podcast-cta__paragraph {
    color: #FFF;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    margin: 0;
}

/* ---- Button overrides for this section ---- */

.podcast-cta__button {
    align-self: flex-start;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {
    .podcast-cta__card {
        padding: 36px;
        gap: 32px;
    }

    .podcast-cta__image-wrapper {
        width: 220px;
        height: 190px;
    }

    .podcast-cta__heading {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 640px) {
    .podcast-cta__card {
        flex-direction: column;
        padding: 24px;
        gap: 24px;
        align-items: stretch;
    }

    .podcast-cta__image-wrapper {
        width: 100%;
        height: 200px;
        border-radius: 10px;
    }

    .podcast-cta__heading {
        font-size: 22px;
        line-height: 30px;
    }

    .podcast-cta__subheading {
        font-size: 14px;
    }

    .podcast-cta__paragraph {
        font-size: 14px;
        line-height: 22px;
    }
}
