/* Podcast section (scoped from new.html) */
#podcast {
    --white: #ffffff;
    --black: #0B0B0B;
    --dark-gray: #333333;
    --medium-gray: #555555;
    --light-gray: #666666;
    --warm-gray: #f0ece6;
    --border-light: #e8e3dc;
    --gold: #C99432;
    --gold-light: #C99432;
    --gold-pale: #F7F3EB;
    --gold-bg: #F7F3EB;
    --shadow-subtle: 0 2px 12px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    --radius-card: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.25s ease;
    --youtube-red: #FF0000;
    background: #ffffff;
    padding: 70px 0 20px;
    width: 100%;
    overflow: hidden;
}

#podcast {
            background: #ffffff;
            padding: 100px 0 80px 0;
            width: 100%;
            overflow: hidden;
        }
#podcast .podcast-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
#podcast .section-label {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 18px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            position: relative;
        }
#podcast .section-label .line {
            width: 40px;
            height: 1px;
            background: var(--gold);
            opacity: 0.4;
            flex-shrink: 0;
        }
#podcast .section-label .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
            opacity: 0.5;
        }
#podcast .main-headline {
            text-align: center;
            margin-bottom: 16px;
        }
#podcast .main-headline h2 {
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }
#podcast .main-headline h2 .gold {
            color: var(--gold);
        }
#podcast .section-subtitle {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 50px auto;
            font-size: clamp(1rem, 1.2vw, 1.15rem);
            color: var(--medium-gray);
            line-height: 1.7;
            font-weight: 400;
        }
#podcast .section-subtitle .gold {
            color: var(--gold);
            font-weight: 500;
        }
#podcast .episodes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-bottom: 48px;
        }
#podcast .episode-card {
            background: var(--white);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-subtle);
            border: 1px solid var(--border-light);
            transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            height: 100%;
        }
#podcast .episode-card:hover {
            box-shadow: var(--shadow-medium);
            border-color: var(--gold);
            transform: translateY(-4px);
        }
#podcast .episode-thumb {
            width: 100%;
            display: block;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            background: #f0f0f0;
            transition: transform var(--transition);
        }
#podcast .episode-card:hover .episode-thumb {
            transform: scale(1.02);
        }
#podcast .episode-content {
            padding: 24px 28px 28px 28px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
#podcast .episode-number {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--gold);
            margin-bottom: 8px;
            display: block;
        }
#podcast .episode-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
            line-height: 1.25;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }
#podcast .episode-desc {
            font-size: 0.92rem;
            color: var(--light-gray);
            line-height: 1.7;
            margin-bottom: 24px;
            flex: 1 0 auto;
        }
#podcast .episode-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 20px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--white);
            background: var(--youtube-red);
            border: none;
            border-radius: var(--radius-xs);
            text-decoration: none;
            transition: background var(--transition), transform var(--transition);
            cursor: pointer;
            letter-spacing: 0.02em;
            margin-top: auto;
            width: 100%;
        }
#podcast .episode-cta i {
            font-size: 1rem;
        }
#podcast .episode-cta:hover {
            background: #cc0000;
            transform: scale(1.02);
        }
#podcast .episode-cta .arrow {
            display: inline-block;
            margin-left: 4px;
            transition: transform var(--transition);
        }
#podcast .episode-cta:hover .arrow {
            transform: translateX(4px);
        }
#podcast .section-footer {
            text-align: center;
            margin-top: 8px;
        }
#podcast .explore-all {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--black);
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xs);
            text-decoration: none;
            transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
            cursor: pointer;
            box-shadow: var(--shadow-subtle);
        }
#podcast .explore-all i {
            color: var(--youtube-red);
            font-size: 1.2rem;
        }
#podcast .explore-all:hover {
            border-color: var(--gold);
            background: var(--gold-bg);
            box-shadow: var(--shadow-medium);
        }
#podcast .explore-all .arrow {
            display: inline-block;
            transition: transform var(--transition);
        }
#podcast .explore-all:hover .arrow {
            transform: translateX(4px);
        }
#podcast .section-decor {
            position: relative;
            margin-bottom: 10px;
            height: 0;
            overflow: visible;
            pointer-events: none;
        }
#podcast .decor-grid {
            position: absolute;
            top: -10px;
            left: 0;
            width: 120px;
            height: 80px;
            opacity: 0.25;
            display: grid;
            grid-template-columns: repeat(6, 12px);
            grid-template-rows: repeat(4, 12px);
            gap: 4px;
            pointer-events: none;
        }
#podcast .decor-grid span {
            display: block;
            width: 12px;
            height: 12px;
            border-radius: 2px;
            background: var(--gold);
            opacity: 0.15;
        }
#podcast .decor-grid span:nth-child(odd) {
            opacity: 0.25;
        }
#podcast .decor-wave {
            position: absolute;
            top: -20px;
            right: 0;
            width: 200px;
            height: 80px;
            opacity: 0.12;
            pointer-events: none;
            color: var(--gold);
        }
#podcast .decor-wave svg {
            width: 100%;
            height: 100%;
        }
@media (max-width: 1200px) {
#podcast .episodes-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
}
@media (max-width: 1024px) {
#podcast .episode-content {
                padding: 20px 20px 24px 20px;
            }
#podcast .episode-title {
                font-size: 1.15rem;
            }
#podcast .decor-grid, #podcast .decor-wave {
                display: none;
            }
}
@media (max-width: 820px) {
#podcast .section-label .line {
                width: 24px;
            }
#podcast .section-decor {
                display: none;
            }
}
@media (max-width: 600px) {
#podcast {
                padding: 60px 0 40px 0;
            }

#podcast .episodes-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
#podcast .episode-content {
                padding: 18px 16px 20px 16px;
            }
#podcast .episode-title {
                font-size: 1.15rem;
            }
#podcast .episode-desc {
                font-size: 0.85rem;
            }
#podcast .section-label {
                font-size: 11px;
                gap: 10px;
            }
#podcast .section-label .line {
                width: 20px;
            }
#podcast .section-label .dot {
                width: 4px;
                height: 4px;
            }
#podcast .section-subtitle {
                font-size: 0.9rem;
                margin-bottom: 32px;
            }
#podcast .explore-all {
                width: 100%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
#podcast .decor-grid, #podcast .decor-wave {
                display: none !important;
            }
}
@media (max-width: 400px) {
#podcast .episode-cta {
                font-size: 0.8rem;
                padding: 10px 16px;
            }
}