

.podcast-hero-wrapper {
    margin-bottom: 40px;
}

.podcast-hero-section {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
    padding: 60px 20px 100px 20px;
}

.podcast-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.podcast-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.podcast-hero-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: "Playfair Display", serif; /* Đảm bảo theme có font serif đẹp */
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 8px 6px 10px rgb(0 0 0);
    color: #fff;
}

.podcast-hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

.podcast-hero-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.podcast-hero-btn i {
    font-size: 1.2rem;
}

.podcast-hero-btn:hover {
    background: #e00e55; /* Màu cam phối hợp */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 92, 0, 0.4);
}

.podcast-hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.podcast-listen-on {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.listen-label {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #fff;
}

.listen-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.listen-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.listen-link i {
    font-size: 1.1rem;
}

.listen-link:hover {
    opacity: 0.7;
    color: #e00e55;
}


/* Latest Episodes Section Styling */
.latest-episodes-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    margin-top: 0;
}

.podcast-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.pc-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 0;
}

.pc-image-wrap img {
    height: 200px;
}

.pc-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Đảm bảo ảnh luôn đầy khung và không bị méo */
    transition: transform 0.5s ease;
}

.podcast-card:hover .pc-img {
    transform: scale(1.05);
}

.pc-content {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.pc-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top: 0px;
    /* Giới hạn hiển thị 3 dòng Title */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1.2rem;
}

.pc-title a:hover {
    color: #e00e55;
}

.pc-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    /* Giới hạn hiển thị 2 dòng Excerpt */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-footer {
    margin-top: auto;
}

.pc-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e00e55;
    color: #e00e55;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.pc-play-btn:hover {
    background: #e00e55;
    color: #fff;
}

.pc-play-btn i {
    font-size: 0.75rem;
}

/* Pagination Styling */
.podcast-pagination .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: all 0.3s;
    background: #f5f5f5;
}

.podcast-pagination .page-numbers.current {
    background: #e00e55;
    color: #fff;
}

.podcast-pagination .page-numbers:hover:not(.current) {
    background: #e00e55;
    color: #fff;
}

.podcast-pagination .next, .podcast-pagination .prev {
    width: auto;
    padding: 0 15px;
    border-radius: 50px;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .podcast-hero-section {
        min-height: 450px;
        padding: 40px 15px 120px 15px;
    }
    .podcast-hero-title {
        font-size: 1rem;
    }
    .podcast-hero-desc {
        font-size: 1rem;
    }
    .podcast-listen-on {
        gap: 15px;
        flex-direction: column;
    }
    .listen-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Featured Shows Section */
.featured-shows-section {
    position: relative;
    margin-bottom: 0;
}

.featured-shows-title {
    font-family: "Playfair Display", serif;
    font-size: 2.22rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.shows-sep {
    margin: 0;
    color: #ccc;
    font-weight: 300;
}

.view-all-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
}

.view-all-link:hover {
    color: #e00e55;
}

.shows-nav {
    display: flex;
    gap: 10px;
}

.shows-prev, .shows-next {
    width: 45px;
    height: 45px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    color: #000;
    z-index: 10;
    border: solid 1px #000;
}

.shows-prev:hover, .shows-next:hover {
    background: #e00e55;
    color: #fff;
    border-color: #e00e55;
}

/* Show Card */
.show-card {
    background: #fff;
    border-radius: 0;
    /* overflow: hidden; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 0px;
    height: 100%;
    border: solid 1px #dbdbdb;
    position: relative;
    width: 100%;
    display: block;
}

.show-card-top {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.show-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.show-card-info {
    position: relative;
    z-index: 2;
    color: #fff;
}

.show-name {
    font-size: 2rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    color: #fff;
    /* Giới hạn tiêu đề 2 dòng */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.show-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.show-meta .show-sep {
    width: 30px;
    height: 2px;
    background: #fff;
    margin: 0;
}

.show-ep-count {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.show-card-bottom {
    padding: 0px 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.show-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    /* Cố định chiều cao cho mô tả để các card đều nhau */
    height: 75px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
    margin-top: 20px;
}

.show-ep-item {
    transition: transform 0.2s;
    margin-bottom: 20px !important;
}

.show-play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #333; /* Làm đậm viền lên */
    background: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.show-play-btn:hover {
    background: #e00e55;
    color: #fff;
    border-color: #e00e55;
    transform: scale(1.1);
}

.ep-label {
    display: block;
    color: #e00e55;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.ep-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    /* Giới hạn 1 dòng cho tiêu đề tập phim */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ep-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.ep-title a:hover {
    color: #e00e55;
}

.show-footer {
    margin-top: auto; /* Đẩy footer xuống dưới cùng của card */
}

.view-all-eps {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.view-all-eps:hover {
    color: #e00e55;
}

.featured-shows-slider {
    padding: 20px 0 0 0;
    overflow: hidden;
}

.pc-badge {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    right: 10px;
    top: 10px;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.pc-cat-name {
    color: #e00e55;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 8px;
    margin-bottom: 8px;
}