/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #ffd700; /* Yellow */
    --secondary-color: #121212; /* Dark */
    --text-color: #333;
    --light-color: #fff;
    --gray-color: #f5f5f5;
    --dark-gray: #777;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    color: var(--secondary-color);
}

/* Header Styles - Glass Design */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    background-size: 200% 200%;
    animation: gradientAnimation 15s ease infinite;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
    z-index: 1;
}

.logo {
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
}

.logo img {
    height: 80px;
    width: auto;
    position: relative;
    z-index: 1;
}

.nav-links {
    display: flex;
    gap: 30px;
    position: relative; 
    
}

.nav-links::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 0.5) 50%, rgba(255, 215, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links:hover::after {
    opacity: 1;
}

.nav-links li a {
    font-weight: 500;
    transition: all 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 180px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li {
    padding: 8px 20px;
}

.dropdown-content li a:hover {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    padding: 8px 20px;
    background-color: rgba(255, 215, 0, 0.8);
    color: var(--secondary-color);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-btn:hover {
    background-color: rgba(255, 215, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Featured Podcasters Section */
.featured-podcasters {
    padding: 60px 0;
    background-color: white;
    position: relative;
    overflow: hidden; /* Keep overflow hidden for the section */
    /* Removed width: 100vw and margin-left */
    box-sizing: border-box;
}

.featured-podcasters .container .section-title {
    /* Title is now inside .container, ensure styles target it correctly */
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center; /* Ensure title remains centered */
}

.featured-podcasters-slider {
    position: relative;
    width: 100vw; /* Make slider full viewport width */
    margin-left: calc(50% - 50vw); /* Center the full-width slider */
    overflow: hidden;
    padding: 0;
    box-sizing: border-box; /* Include padding/border in width */
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    padding: 0; /* Removed horizontal padding for full width */
}

.podcaster-card {
    flex: 0 0 360px; /* Exact width of 360px */
    margin: 0 15px;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.podcaster-card:hover {
    transform: translateY(-10px);
}

.podcaster-image {
    width: 360px; /* Exact width of 360px */
    height: 468px; /* Exact height of 468px */
    overflow: hidden;
}

.podcaster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.podcaster-card:hover .podcaster-image img {
    transform: scale(1.05);
}

.podcaster-info {
    padding: 20px;
    text-align: center;
    background-color: var(--light-color);
}

.podcaster-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.podcaster-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #e6c200;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary-color);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 10px;
    border: 5px solid var(--primary-color);
    transform: rotate(3deg);
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Podcast Section */
.podcast {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.podcast-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.podcast-card:hover {
    transform: translateY(-10px);
}

.podcast-thumbnail {
    position: relative;
    overflow: hidden;
}

.podcast-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.play-button i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.podcast-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.podcast-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.podcast-card p {
    padding: 0 20px 20px;
    color: var(--dark-gray);
}

.view-more {
    text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Blogs Section */
.blogs {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blog-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

/* Media Section */
.media {
    padding: 80px 0;
}

.media-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 30px;
}

.media-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.media-logos img:hover {
    opacity: 1;
}

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

.award-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--gray-color);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.award-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.award-details p {
    color: var(--dark-gray);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: block;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 8px 18px rgba(255, 215, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item i::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(rgba(255, 215, 0, 0.35), rgba(255, 215, 0, 0));
    filter: blur(6px);
    opacity: 0.6;
    animation: glowPulse 2.2s ease-in-out infinite;
    z-index: -1;
}

.contact-item:hover i {
    animation: iconFloat 1.8s ease-in-out infinite;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.45);
}

@keyframes iconFloat {
    0% { transform: translateY(0) scale(1.05); }
    50% { transform: translateY(-6px) scale(1.07); }
    100% { transform: translateY(0) scale(1.05); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.45; filter: blur(6px); }
    50% { opacity: 0.8; filter: blur(10px); }
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 10px;
    font-weight: 500;
}

/* Footer Styles */
.footer-content {
    text-align: center;
    padding: 20px 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    margin: 0 10px;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1024px) {
    .slider-track {
        padding: 0 calc(50% - 540px); /* Maintain the 3 visible cards */
    }
    
    .podcaster-card {
        flex: 0 0 360px; /* Maintain exact width */
    }
    
    .podcaster-image {
        width: 360px;
        height: 468px; /* Maintain exact height */
    }
    
    .slider-container {
        padding: 0;
        overflow: hidden;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content, .about-content {
        flex-direction: column;
    }
    
    .slider-track {
        padding: 0 calc(50% - 360px); /* Show 2 cards with 1 partial */
    }
    
    .podcaster-card {
        flex: 0 0 360px; /* Maintain exact width */
    }
    
    .podcaster-image {
        width: 360px;
        height: 468px; /* Maintain exact height */
    }
    
    .featured-podcasters {
        padding: 40px 0;
    }
    
    .slider-controls {
        margin-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .slider-track {
        padding: 0 calc(50% - 180px); /* Show 1 card with partial cards on sides */
    }
    
    .podcaster-card {
        flex: 0 0 360px; /* Maintain exact width */
        margin: 0 10px;
    }
    
    .podcaster-image {
        width: 360px;
        height: 468px; /* Maintain exact height */
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .featured-podcasters .section-title {
        margin-bottom: 25px;
    }
}

.video-showcase {
    padding: 80px 0;
    background: radial-gradient(1000px 600px at 15% -10%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)) , linear-gradient(180deg, #0e0f12, #121212);
    color: var(--light-color);
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.main-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transition: opacity 0.3s ease;
}

.main-video.is-switching {
    opacity: 0;
}

.main-video video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
    pointer-events: none;
    opacity: 0.85;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.video-thumbnails {
    margin-top: 20px;
    display: flex;
    gap: 16px;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.video-thumbnails::-webkit-scrollbar {
    height: 8px;
}

.video-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.thumb {
    scroll-snap-align: start;
    border: none;
    background: transparent;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateZ(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumb img {
    width: 160px;
    height: 90px;
    object-fit: cover;
    display: block;
    filter: saturate(1) contrast(1.05);
}

.thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.thumb.active {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media screen and (max-width: 768px) {
    .video-wrapper {
        max-width: 100%;
    }
    .thumb img {
        width: 140px;
        height: 80px;
    }
}

@media screen and (max-width: 480px) {
    .thumb img {
        width: 120px;
        height: 72px;
    }
}

.video-highlight {
    padding: 80px 0;
    background: #050509;
    color: #eaeaea;
}

.video-highlight .section-head {
    text-align: center;
    margin-bottom: 24px;
}

.video-highlight .section-head .section-title {
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 6px;
}

.video-highlight .section-head .section-subtitle {
    color: #bdbdbd;
    font-size: 1rem;
}

.video-highlight .video-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.video-card {
    border-radius: 16px;
    overflow: hidden;
    background: #0b0b0f;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    transition: opacity 0.3s ease;
}

.video-card.is-switching {
    opacity: 0;
}

.video-media {
    position: relative;
    background: #000;
}

.video-media video {
    width: 100%;
    display: block;
}

.play-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 38px rgba(255, 215, 0, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.play-overlay i {
    font-size: 1.2rem;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.06);
}

.video-meta {
    padding: 16px 18px;
}

#highlightTitle, #videoTitle {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 6px;
}

#highlightDesc, #videoDesc {
    color: #bcbcbc;
    font-size: 0.95rem;
}

.episodes-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.episode-card {
    display: block;
    text-align: left;
    background: #0b0b0f;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
}

.episode-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 44px rgba(255, 215, 0, 0.18);
}

.episode-card.active {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.episode-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.episode-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
}

.episode-info h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.episode-info .duration {
    color: #cfcfcf;
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .video-highlight .video-wrapper {
        max-width: 100%;
    }
    .episodes-row {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .episode-card {
        flex: 0 0 75%;
        scroll-snap-align: start;
    }
    .episode-thumb img {
        height: 140px;
    }
}

.video-testimonials {
    padding: 60px 0;
    background-color: var(--light-color);
}

.testimonial-main {
    max-width: 980px;
    margin: 0 auto 18px;
}

.testimonial-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: opacity 0.25s ease;
}

.testimonial-card.is-switching {
    opacity: 0;
}

.testimonial-media video {
    width: 100%;
    display: block;
    background: #000;
}

.testimonial-media {
    position: relative;
}

.micro-thumbs {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: flex;
    gap: 8px;
}

.micro-thumbs .thumb-card {
    width: 110px;
    padding: 6px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid #ffffff;
    box-shadow: none;
    display: inline-block;
}

/* Names-only micro thumbnails; no image */

.micro-thumbs .thumb-canvas {
    width: 100px;
    height: 56px;
    display: block;
    border-radius: 6px;
    background: #000;
}

.micro-thumbs .thumb-name {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: block;
    text-align: center;
    margin-top: 4px;
}

.micro-thumbs .thumb-card:hover {
    transform: scale(1.02);
}

.micro-thumbs .thumb-card.active {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media screen and (max-width: 480px) {
    .micro-thumbs .thumb-card {
        width: 100px;
        padding: 5px;
    }
}

.testimonial-meta {
    padding: 14px 16px;
}

#testimonialTitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

#testimonialDesc {
    font-size: 0.98rem;
    color: var(--dark-gray);
}

.testimonial-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.thumb-card {
    display: block;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.thumb-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.thumb-card.active {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.thumb-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.thumb-info {
    padding: 10px 12px;
}

.thumb-info h4 {
    font-size: 0.98rem;
    color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
    .testimonial-thumbs {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .thumb-card {
        flex: 0 0 75%;
        scroll-snap-align: start;
    }
    .thumb-image img {
        height: 140px;
    }
}
