﻿/* ==========================================================================
   OHIO SPORTS HUB — PODCASTS PAGE
   ========================================================================== */

.podcast-page {
    background: #FFFFFF;
    color: #1E2229;
}

.podcast-hero {
    background: #1E2229;
    color: #FFFFFF;
    border-bottom: 5px solid #D4A373;
    padding: 20px 20px 10px 20px;
}

.podcast-eyebrow {
    color: #D4A373;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
}

.podcast-hero h1 {
    color: #FFFFFF;
    margin: 0 0 12px;
    font-size: 2.4rem;
}

.podcast-hero p {
    color: #CBD5E1;
    max-width: 780px;
    margin: 0;
    line-height: 1.7;
}

.podcast-list-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 36px 18px 60px;
}

.podcast-card {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #FFFFFF;
    padding: 26px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.podcast-episode-number {
    color: #D4A373;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.podcast-card h2 {
    margin: 0 0 8px;
    font-size: 1.45rem;
    color: #1E2229;
}

.podcast-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

    .podcast-meta span:not(:last-child)::after {
        content: "•";
        margin-left: 12px;
        color: #CBD5E1;
    }

.podcast-guests {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 12px;
}

.podcast-description {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 18px;
}

.podcast-audio {
    width: 100%;
    margin: 8px 0 18px;
}

.podcast-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .podcast-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #1E2229;
        color: #FFFFFF;
        text-decoration: none;
        border-radius: 999px;
        padding: 8px 14px;
        font-size: 0.85rem;
        font-weight: 700;
    }

        .podcast-links a:hover {
            background: #11151B;
            color: #FFFFFF;
        }

.podcast-empty {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #FAFAFA;
    padding: 34px;
    text-align: center;
}

    .podcast-empty h2 {
        margin: 0 0 8px;
        color: #1E2229;
    }

    .podcast-empty p {
        margin: 0;
        color: #64748B;
    }
