/* podcast hero section styles */

/* Podcast Hero 
.podcast-hero {
    background: linear-gradient(135deg, #003366 0%, #004B87 100%);
    padding: 40px 0;
    color: white;
}
*/

.podcast-hero {
    background-color: #003366;
    background-image:
        linear-gradient(#e3e9f01f,
            #00336691),
        url("../../../media/images/Podcast room.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 48px 0;
    color: white;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.podcast-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.podcast-hero h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 800;
}

.podcast-hero p {
    font-size: 16px;
    margin-bottom: 24px;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}

.platform-list {
    display: inline-block;
    text-align: left;
}

.platform-list-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    margin-left: 4px;
}

.platform-list-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.18s;
}

.platform-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.platform-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon svg {
    width: 20px;
    height: 20px;
}

.pi-youtube     { background: #FF0000; }
.pi-spotify     { background: #1DB954; }
.pi-apple       { background: #9B30D9; }
.pi-pocketcasts { background: #F43E37; }

/* Tablet and up (≥641px - 768px) */
@media (min-width: 641px) {}


/* Small desktop and up (≥769px - 1025px) */
@media (min-width: 769px) {
    .platform-list-items {
        display: flex;
        flex-direction: row;
        gap: 4px;
    }
}

/* Large desktop (≥1025px - ∞) /*/
@media (min-width: 1025px) {}
