/**
 * Podcasts CSS
 * Styles for podcast index and show pages
 */

/* ================================================
   INDEX PAGE - Hero Section
   ================================================ */
.podcast-hero-image-wrapper {
    position: relative;
    width: 100%;
}

.podcast-platform-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.podcast-platform-container .podcast-platform-btn.apple {
    width: 150px;
    max-width: 40%;
}

.podcast-platform-container .podcast-platform-btn.spotify {
    width: 90px;
    max-width: 25%;
}

h1.podcasts-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 275;
    line-height: 112%;
    color: #333333;
}

h1.podcasts-title .podcast-title-colored {
    font-weight: 500;
    color: #FF48A4;
}

.podcasts-content-container p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #333333;
}

/* ================================================
   INDEX PAGE - Episode Cards
   ================================================ */
.podcast-episode-card {
    background: #571545;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.podcast-episode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(87, 21, 69, 0.4);
}

.podcast-episode-card .card-image-area {
    background: #571545;
    position: relative;
    display: block;
    padding: 12px;
}

.podcast-episode-card .card-image-area img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.podcast-episode-card .card-image-area .no-image-placeholder {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    background: rgba(87, 21, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #571545;
    font-size: 3rem;
}

.podcast-episode-card .card-body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.podcast-episode-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.podcast-episode-card .card-title a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.podcast-episode-card .card-title a:hover {
    color: #fff;
    opacity: 0.85;
}

.podcast-episode-card .card-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    margin: 0 0 1rem;
}

.podcast-episode-card .card-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.podcast-episode-card .guest-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    padding: 10px;
    border: 1px solid #FF48A4;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.podcast-episode-card .listen-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #FF48A4;
    padding: 8px 18px;
    border: 1px solid #FF48A4;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.podcast-episode-card .listen-btn:hover {
    background: #FF48A4;
    color: #fff;
}

.podcast-episode-card .listen-btn i {
    font-size: 18px;
}

.episodes-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

/* ================================================
   INDEX PAGE - Guest CTA Section
   ================================================ */
.podcast-guest-cta {
    background: #FFF3FA;
    padding-top: 0;
    padding-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.podcast-guest-cta-shape {
    background: #232323;
    border-radius: 0 0 10000px 10000px;
    padding: 80px 40px;
    max-width: 920px;
    height: 400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.podcast-guest-cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 36px;
    color: #FFFFFF;
    margin: 0 0 24px;
}

.podcast-guest-cta-title span {
    font-family: 'Brittany Signature', cursive;
    font-weight: 400;
    font-size: 48px;
    color: #FF48A4;
}

.podcast-guest-cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #FFFFFF;
    max-width: 650px;
    margin: 0 auto 24px;
}

.podcast-guest-cta-contact {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
}

.podcast-guest-cta-contact a {
    color: #FF48A4;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.podcast-guest-cta-contact a:hover {
    opacity: 0.8;
}

/* ================================================
   SHOW PAGE - Hero Banner
   ================================================ */
.podcast-hero {
    width: 100%;
    height: 600px;
    position: relative;
}

.podcast-hero-banner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.podcast-hero-platforms {
    position: absolute;
    right: 48px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.podcast-hero-platforms a {
    display: inline-block;
    line-height: 0;
    transition: transform 0.3s ease;
}

.podcast-hero-platforms a:hover {
    transform: scale(1.05);
}

.podcast-hero-platforms img {
    height: 48px;
    width: auto;
}

/* ================================================
   SHOW PAGE - Player Section (Legacy)
   ================================================ */
.podcast-player-section {
    display: flex;
    background: #232831;
}

.podcast-thumbnail {
    width: 240px;
    min-width: 240px;
    height: 240px;
    background: #FEFAF4;
    position: relative;
    overflow: hidden;
}

.podcast-thumbnail-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.podcast-thumbnail-header {
    text-align: center;
    padding: 12px 16px 8px;
}

.podcast-thumbnail-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 8px;
    line-height: 100%;
    text-transform: uppercase;
    color: #333333;
    margin: 0;
}

.podcast-thumbnail-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FF48A4;
    margin: 8px 0 0 0;
}

.podcast-thumbnail-images {
    flex: 1;
    position: relative;
}

.podcast-thumbnail-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 92px;
    background: linear-gradient(180deg, rgba(255, 72, 164, 0) 0%, rgba(255, 72, 164, 0.72) 52.4%, #FF48A4 89.42%);
    z-index: 2;
}

.podcast-thumbnail-people {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.podcast-thumbnail-person {
    text-align: center;
}

.podcast-thumbnail-person-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 8px;
    line-height: 11px;
    color: #FFFFFF;
    margin: 0;
}

.podcast-thumbnail-person-role {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 5px;
    line-height: 6px;
    color: #FFFFFF;
    margin: 2px 0 0 0;
}

.podcast-player {
    flex: 1;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.podcast-player-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.podcast-play-btn {
    width: 40px;
    height: 40px;
    background: #7474EC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.podcast-play-btn i {
    color: #FFFFFF;
    font-size: 14px;
    margin-left: 2px;
}

.podcast-player-info {
    flex: 1;
}

.podcast-player-show {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #C3C3C3;
    margin: 0;
}

.podcast-player-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #FFFFFF;
    margin: 4px 0 0 0;
}

.podcast-player-time {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #BABABA;
    flex-shrink: 0;
}

.podcast-player-waveform {
    height: 34px;
    margin-bottom: 12px;
    border: 1px solid #EAEAEF;
    border-radius: 4px;
}

.podcast-player-actions {
    display: flex;
    gap: 20px;
}

.podcast-player-action {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 10px;
    color: #BABABA;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.podcast-player-action:hover {
    color: #FFFFFF;
}

/* ================================================
   SHOW PAGE - Content Section
   ================================================ */
.podcast-content-section {
    padding: 60px 0;
}

.podcast-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #333333;
}

.podcast-description p {
    margin-bottom: 24px;
}

/* ================================================
   SHOW PAGE - Guest Sidebar
   ================================================ */
.podcast-guest-sidebar {
    position: sticky;
    top: 100px;
}

.podcast-guest-image {
    width: 100%;
    max-width: 348px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
}

.podcast-guest-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 27px;
    line-height: 36px;
    color: #1A1A1A;
    margin: 0;
}

.podcast-guest-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #6E6E6E;
    margin: 8px 0 0 0;
}

.podcast-guest-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.podcast-guest-socials a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 18px;
    transition: color 0.3s ease;
}

.podcast-guest-socials a:hover {
    color: #FF48A4;
}

/* ================================================
   SHOW PAGE - Back Link
   ================================================ */
.podcast-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.podcast-back-link:hover {
    color: #FF48A4;
}

/* ================================================
   SHOW PAGE - Spotify Embed
   ================================================ */
.spotify-embed-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.spotify-embed-container iframe {
    display: block;
}

/* ================================================
   SHOW PAGE - Apple Podcasts Embed
   ================================================ */
.apple-podcast-embed-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.apple-podcast-embed-container iframe {
    display: block;
}

/* ================================================
   RESPONSIVE - Index Page
   ================================================ */
@media (max-width: 991px) {
    h1.podcasts-title {
        font-size: 36px;
    }

    .podcasts-content-container p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    h1.podcasts-title {
        font-size: 28px;
    }

    .podcasts-content-container p {
        font-size: 14px;
    }

    .podcast-platform-container {
        position: static;
        margin-top: 15px;
    }

    .podcast-platform-container .podcast-platform-btn.apple {
        width: 120px;
    }

    .podcast-platform-container .podcast-platform-btn.spotify {
        width: 75px;
    }

    .podcast-episode-card .card-title {
        font-size: 20px;
    }

    .podcast-guest-cta-shape {
        height: auto;
        padding: 60px 24px;
    }

    .podcast-guest-cta-title {
        font-size: 28px;
    }

    .podcast-guest-cta-title span {
        font-size: 36px;
    }

    .podcast-guest-cta-text {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    h1.podcasts-title {
        font-size: 24px;
    }

    .podcast-episode-card .card-image-area img,
    .podcast-episode-card .card-image-area .no-image-placeholder {
        height: 220px;
    }

    .podcast-episode-card .card-title {
        font-size: 18px;
    }

    .podcast-episode-card .card-footer-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .podcast-episode-card .guest-badge {
        max-width: 100%;
        justify-content: center;
    }

    .podcast-episode-card .listen-btn {
        justify-content: center;
    }
}

/* ================================================
   RESPONSIVE - Show Page
   ================================================ */
@media (max-width: 991px) {
    .podcast-hero {
        height: 400px;
    }

    .podcast-hero-platforms {
        right: 24px;
    }

    .podcast-hero-platforms img {
        height: 40px;
    }

    .podcast-player-section {
        flex-direction: column;
    }

    .podcast-thumbnail {
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .podcast-guest-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .podcast-hero {
        height: 300px;
    }

    .podcast-hero-platforms {
        right: 16px;
        gap: 8px;
    }

    .podcast-hero-platforms img {
        height: 36px;
    }

    .podcast-description {
        font-size: 16px;
    }

    .podcast-player-title {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .podcast-hero {
        height: 250px;
    }

    .podcast-hero-platforms img {
        height: 32px;
    }
}
