﻿.podcasts-page {
    padding-bottom: var(--spacing-3xl);
}

.podcasts-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.75rem, 4vw, 3rem);
    background:
        radial-gradient(circle at top left, rgba(254, 60, 211, 0.18), transparent 35%),
        radial-gradient(circle at top right, rgba(254, 60, 114, 0.14), transparent 30%),
        var(--gradient-dark);
}

.podcasts-hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.podcasts-hero__label,
.podcasts-library__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.podcasts-hero__title,
.podcasts-library__title {
    margin: 0.9rem 0 0.75rem;
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.podcasts-hero__subtitle {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.7vw, 1.12rem);
    line-height: 1.7;
}

.podcasts-hero__body {
    max-width: 720px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.82);
}

.podcasts-hero__body > *:first-child {
    margin-top: 0;
}

.podcasts-hero__body a {
    color: #fff;
}

.podcasts-library {
    margin-top: calc(var(--spacing-3xl) * -1);
}

.podcasts-library__header {
    margin-bottom: var(--spacing-2xl);
}

.podcasts-library__eyebrow {
    color: var(--color-primary);
    background: rgba(254, 60, 211, 0.08);
    border-color: rgba(254, 60, 211, 0.18);
}

.podcasts-library__title {
    color: var(--color-text-primary);
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.podcasts-library__grid {
    display: grid;
    gap: var(--spacing-xl);
}

.podcast-embed {
    overflow: hidden;
    border-radius: 12px;
}

.podcast-embed iframe {
    display: block;
    border: 0;
}

@media (max-width: 767px) {
    .podcasts-library {
        margin-top: calc(var(--spacing-2xl) * -1);
    }
}

