/* Podcasts Page Styles */

.podcasts-page-container {
    padding-bottom: 80px;
    background-color: #fdfdfd;
}

/* Hero Section */
.podcasts-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.podcasts-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.podcasts-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcasts-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.podcasts-hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.podcasts-hero__title {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.podcasts-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Grid Section */
.podcasts-grid-section {
    padding: 80px 0;
}

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px 30px;
}

/* Podcast Card */
.podcast-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.podcast-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.podcast-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.podcast-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.podcast-card:hover .podcast-card__image img {
    transform: scale(1.1);
}

.podcast-card__play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #1DB954;
    /* Spotify Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
}

.podcast-card:hover .podcast-card__play-overlay {
    opacity: 1;
}

.podcast-card__content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.podcast-card__meta {
    font-size: 0.85rem;
    color: #8B4513;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.podcast-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2D1B14;
    line-height: 1.3;
}

.podcast-card__excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.podcast-card__footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    color: #1DB954;
    font-weight: 700;
    font-size: 0.9rem;
}

.podcast-card__footer i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.podcast-card:hover .podcast-card__footer i {
    transform: translateX(5px);
}

/* Pagination */
.podcasts-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.podcasts-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    color: #2D1B14;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.podcasts-pagination .page-numbers:hover {
    background-color: #1DB954;
    color: #fff;
    border-color: #1DB954;
}

.podcasts-pagination .page-numbers.current {
    background-color: #1DB954;
    color: #fff;
    border-color: #1DB954;
}

.podcasts-pagination .page-numbers svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Responsive */
@media (max-width: 767px) {
    .podcasts-hero {
        height: 300px;
    }

    .podcasts-hero__title {
        font-size: 2.5rem;
    }

    .podcasts-grid {
        grid-template-columns: 1fr;
    }
}