#podcast-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
}

#podcast-hero .podcast-hero-overlay {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    /* Removes inline image gap */
}

#podcast-hero .podcast-hero-overlay img {
    width: 100%;
    height: auto;
    display: block;
    /* Removes bottom gap */
    margin: 0;
    padding: 0;
}

/* Podcast Section */
#podcast .ast-container {
    flex-direction: column;
    justify-content: center;
}

#podcast .ast-container .section-header {
    text-align: center;
}

#podcast .ast-container .section-header .section-title {
    font-size: 40px;
    margin-bottom: 20px;
}

#podcast .section-subtitle {
    color: #E8752B;
    font-size: 22px;
}

#podcast .card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 46px;
}

#podcast .podcast-title {
    font-size: 29px;
    color: #2D3F40;
}

.podcast-card {
    border: 2px solid #B1E3E4;
    background-color: #ffffff;
}

.card-container {
    padding: 28px;
}

.podcast-number {
    width: max-content;
    padding: 8px 15px;
    background: linear-gradient(to right, #B1E3E4, #F6F1D1);
    font-weight: 700;
}

.spotify-link-block {
    display: inline-block;
    max-width: max-content;
    border: 1.5px solid #CBCDD0;
    border-radius: 15px;
    padding: 8px 20px;
    background-color: #ffffff;
    text-decoration: none !important;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.spotify-link-block:hover {
    border-color: #1ED760;
    background-color: #fafafa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-decoration: none !important;
}

.podcast-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spotify-logo-container {
    display: flex;
    align-items: center;
}

.spotify-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.spotify-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    justify-content: center;
}

.spotify-listen-text {
    font-size: 11px;
    color: #6A6A6A;
    font-weight: 500;
    margin-bottom: 2px;
    display: block;
    font-family: inherit;
}

.spotify-name-img {
    height: 22px;
    width: auto;
    display: block;
}

.card-image {
    width: 30%;
}

.card-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.podcast-player iframe {
    height: 80px !important;
}

.podcast-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

#podcast {
    background-color: #FAF6F0;
}

.podcast-host-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.podcast-host-images {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
}

.host-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
}

.host-image img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    background: linear-gradient(135deg, #96E4D8 0%, #FFF4BD 100%);
}

.host-image p {
    width: 100%;
    background-color: #E8752B;
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    margin: 18px 0 0 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.podcast-host-content {
    flex-grow: 1;
}

.podcast-host-content .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2D3F40;
    margin-bottom: 20px;
    text-align: left;
}

.podcast-host-content .entry-content {
    font-size: 16px;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 15px;
}

.podcast-host-content .entry-content:last-child {
    margin-bottom: 0;
}

.podcast-listen-banner {
    background-color: #08706B;
    width: 100%;
    padding: 55px 20px;
    margin-top: 60px;
    margin-bottom: -60px;
}

.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.banner-title {
    color: #ffffff !important;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-btn {
    background-color: #FFF4BD;
    color: #08706B !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.banner-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    color: #08706B !important;
}

.banner-btn .btn-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .podcast-host-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .podcast-host-images {
        justify-content: center;
        flex-wrap: wrap;
    }

    .podcast-host-content .section-title {
        text-align: center;
    }

    .podcast-listen-banner {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .banner-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .banner-btn {
        padding: 10px 22px;
        font-size: 15px;
    }

    .card-image {
        width: 100%;
    }

    #podcast .card-container {
        flex-direction: column;
    }

    .card-content {
        width: 100%;
    }

    #podcast .ast-container .section-header .section-title {
        font-size: 24px;
    }

    #podcast .section-subtitle {
        font-size: 15px;
    }

    .podcast-page-btn {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .podcast-page-btn.prev-btn,
    .podcast-page-btn.next-btn {
        padding: 0 16px;
    }
}

.podcast-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.podcast-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 22px;
    background-color: #ffffff;
    border: 2px solid #B1E3E4;
    color: #2D3F40 !important;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.podcast-page-btn:hover:not(.disabled):not(.active) {
    background-color: #08706B;
    border-color: #08706B;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.podcast-page-btn.active {
    background-color: #E8752B;
    border-color: #E8752B;
    color: #ffffff !important;
    cursor: default;
}

.podcast-page-btn.disabled {
    background-color: #f7fafc;
    border-color: #e2e8f0;
    color: #a0aec0 !important;
    cursor: not-allowed;
}

.podcast-page-dots {
    font-size: 18px;
    color: #2D3F40;
    padding: 0 5px;
    user-select: none;
}

.podcast-page-btn.prev-btn,
.podcast-page-btn.next-btn {
    border-radius: 30px;
    padding: 0 20px;
}


/* Podcast Section */


/* Journey Section */

.journey-section {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center -50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    background-repeat: no-repeat;
}

.journey-section::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(180deg, #faf7f0 26.82%, rgba(255, 251, 243, 0) 100%);
}

.journey-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    width: 100%;
    height: 60%;
    background: linear-gradient(0deg, #0E1615 32.72%, rgba(14, 22, 21, 0.538294) 55%, rgba(14, 22, 21, 0) 100%);
}

.journey-section .ast-container {
    z-index: 2;
    padding: 40px 0 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .journey-section .ast-container {
        padding: 0;
        text-align: center;
    }
    .journey-section {
        height: auto;
        padding: 40px 20px 140px;
        justify-content: center;
        align-items: center;
        background-size: 300%;
        background-position: bottom;
    }
}
