 /**
 * Podcast Page Styles - Premium Radio Station Full Width Design
 *
 * @package SMX_Pages
 */

/* Podcast Page Specific Styles - Scoped to prevent conflicts */
.premium-podcast-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    background: #090213;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container - Scoped to podcast page only */
.premium-podcast-page .container-xl {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section - Fixed padding */
.premium-podcast-page .podcast-hero {
    position: relative;
    min-height: 70vh; /* Reduced from 85vh to 70vh */
    background: linear-gradient(135deg, rgba(9, 2, 19, 0.95) 0%, rgba(138, 43, 226, 0.7) 50%, rgba(9, 2, 19, 0.98) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 0;
    padding: 40px 0; /* Added consistent padding */
    transform: translateZ(0);
    will-change: transform;
}

.premium-podcast-page .hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(9, 2, 19, 0.85) 0%, 
        rgba(138, 43, 226, 0.6) 50%, 
        rgba(9, 2, 19, 0.95) 100%);
    z-index: 1;
}

.premium-podcast-page .hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 30px; /* Reduced padding */
}

.premium-podcast-page .hero-text-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.premium-podcast-page .hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 25px; /* Reduced margin */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.premium-podcast-page .podcast-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 15px; /* Reduced margin */
    background: linear-gradient(135deg, #ffffff 0%, #b5e0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.premium-podcast-page .podcast-hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.premium-podcast-page .hero-tagline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 15px 0; /* Reduced margin */
}

.premium-podcast-page .sound-wave-icon {
    display: flex;
    align-items: flex-end;
    height: 30px;
    gap: 3px;
}

.premium-podcast-page .wave-bar {
    width: 4px;
    background: #8a2be2;
    border-radius: 2px;
    animation: waveAnimation 1.2s ease-in-out infinite;
}

.premium-podcast-page .wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.premium-podcast-page .wave-bar:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.premium-podcast-page .wave-bar:nth-child(3) { height: 24px; animation-delay: 0.2s; }
.premium-podcast-page .wave-bar:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.premium-podcast-page .wave-bar:nth-child(5) { height: 8px; animation-delay: 0.4s; }

.premium-podcast-page .podcast-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0; /* Reduced margin */
    flex-wrap: wrap;
}

.premium-podcast-page .stat-item {
    text-align: center;
}

.premium-podcast-page .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #8a2be2;
    margin-bottom: 5px;
}

.premium-podcast-page .stat-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

.premium-podcast-page .stat-date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.premium-podcast-page .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px; /* Reduced margin */
    flex-wrap: wrap;
}

.premium-podcast-page .btn-primary,
.premium-podcast-page .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.premium-podcast-page .btn-primary {
    background: linear-gradient(135deg, #8a2be2 0%, #6a1cb8 100%);
    color: white;
}

.premium-podcast-page .btn-primary:hover {
    background: linear-gradient(135deg, #6a1cb8 0%, #8a2be2 100%);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.4);
}

.premium-podcast-page .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(138, 43, 226, 0.5);
}

.premium-podcast-page .btn-secondary:hover {
    background: rgba(138, 43, 226, 0.15);
    transform: translateY(-3px);
    border-color: #8a2be2;
}

.premium-podcast-page .btn-icon {
    transition: transform 0.3s ease;
}

.premium-podcast-page .btn-primary:hover .btn-icon,
.premium-podcast-page .btn-secondary:hover .btn-icon {
    transform: translateX(5px);
}

.premium-podcast-page .hero-scroll-indicator {
    position: absolute;
    bottom: 20px; /* Reduced from 15px */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
}

.premium-podcast-page .scroll-text {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.premium-podcast-page .scroll-arrow {
    animation: float 2s ease-in-out infinite;
}

/* Sections - Fixed spacing */
.premium-podcast-page .podcast-search-section {
    padding: 60px 0 40px; /* Reduced padding top and bottom */
    position: relative;
    background: #090213;
}

.premium-podcast-page .podcast-episodes-section {
    padding: 60px 0 80px; /* Consistent padding */
    position: relative;
    background: #090213;
}

/* Search Section Header - Center Aligned */
.premium-podcast-page .section-header.center-align {
    text-align: center;
    margin-bottom: 40px; /* Reduced from 50px */
    display: block;
}

.premium-podcast-page .section-header.center-align .header-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.premium-podcast-page .section-header.center-align .section-title {
    text-align: center;
    margin: 0 auto 15px;
}

.premium-podcast-page .section-header.center-align .section-subtitle {
    text-align: center;
    margin: 0 auto;
}

/* Default section header for other sections */
.premium-podcast-page .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px; /* Reduced from 50px */
    text-align: left;
}

.premium-podcast-page .header-content {
    flex: 1;
}

.premium-podcast-page .header-actions {
    flex-shrink: 0;
}

.premium-podcast-page .section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.premium-podcast-page .section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 15px;
    color: white;
}

.premium-podcast-page .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0;
}

/* Search Section - Fixed Background */
.premium-podcast-page .search-container {
    max-width: 800px;
    margin: 0 auto;
}

.premium-podcast-page .search-form {
    display: flex;
    gap: 15px;
    background-color: #05000d;
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 20px;
    padding: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.premium-podcast-page .search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0f071f;
    border-radius: 15px;
    padding: 0 20px;
    border: 1px solid rgba(138, 43, 226, 0.5);
}

.premium-podcast-page .search-icon {
    color: #8a2be2;
    flex-shrink: 0;
}

.premium-podcast-page .search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 18px 0;
    outline: none;
    width: 100%;
}

.premium-podcast-page .search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.premium-podcast-page .search-input:focus {
    color: #ffffff;
}

.premium-podcast-page .search-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* Dark theme inputs within podcast module */
.premium-podcast-page input[type="text"],
.premium-podcast-page input[type="email"],
.premium-podcast-page input[type="url"],
.premium-podcast-page input[type="password"],
.premium-podcast-page input[type="search"],
.premium-podcast-page input[type="tel"],
.premium-podcast-page input[type="number"],
.premium-podcast-page textarea,
.premium-podcast-page select {
    color: #ffffff;
    background-color: rgba(9, 2, 19, 0.95);
    border-color: rgba(9, 2, 19, 0.95);
}

.premium-podcast-page .search-clear {
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.premium-podcast-page .search-clear:hover {
    color: #8a2be2;
}

.premium-podcast-page .search-submit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    background: linear-gradient(135deg, #8a2be2 0%, #6a1cb8 100%);
    color: white !important; /* Ensure white text */
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.premium-podcast-page .search-submit:hover {
    background: linear-gradient(135deg, #6a1cb8 0%, #8a2be2 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

/* Filter Buttons */
.premium-podcast-page .filter-buttons {
    display: flex;
    gap: 10px;
}

.premium-podcast-page .filter-btn {
    padding: 10px 20px;
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-podcast-page .filter-btn:hover {
    background: rgba(138, 43, 226, 0.1);
    color: white;
    border-color: rgba(138, 43, 226, 0.4);
}

.premium-podcast-page .filter-btn.active {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
    border-color: #8a2be2;
}

/* Episodes Grid */
.premium-podcast-page .episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.premium-podcast-page .episode-card {
    background: rgba(138, 43, 226, 0.05);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.premium-podcast-page .episode-card:hover {
    transform: translateY(-8px);
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 25px 50px rgba(138, 43, 226, 0.2);
}

.premium-podcast-page .episode-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(138, 43, 226, 0.1);
}

.premium-podcast-page .episode-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-podcast-page .episode-card:hover .episode-image {
    transform: scale(1.05);
}

.premium-podcast-page .episode-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3), rgba(9, 2, 19, 0.8));
}

.premium-podcast-page .placeholder-icon {
    font-size: 60px;
    opacity: 0.7;
}

.premium-podcast-page .episode-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(9, 2, 19, 0.9);
    color: #8a2be2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.premium-podcast-page .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #8a2be2;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.premium-podcast-page .episode-card:hover .play-btn {
    opacity: 1;
}

.premium-podcast-page .play-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.premium-podcast-page .audio-player {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(9, 2, 19, 0.95);
    padding: 20px;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    z-index: 3;
}

.premium-podcast-page .player-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-podcast-page .progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(138, 43, 226, 0.2);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.premium-podcast-page .progress {
    width: 0%;
    height: 100%;
    background: #8a2be2;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.premium-podcast-page .player-time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-variant-numeric: tabular-nums;
}

.premium-podcast-page .episode-content {
    padding: 25px;
}

.premium-podcast-page .episode-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.premium-podcast-page .episode-date {
    font-weight: 600;
}

.premium-podcast-page .episode-time-ago {
    opacity: 0.8;
}

.premium-podcast-page .episode-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.premium-podcast-page .episode-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-podcast-page .episode-title a:hover {
    color: #8a2be2;
}

.premium-podcast-page .episode-presenter {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8a2be2;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.premium-podcast-page .episode-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.premium-podcast-page .episode-actions {
    display: flex;
    gap: 15px;
}

.premium-podcast-page .episode-link,
.premium-podcast-page .listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-podcast-page .episode-link {
    background: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.premium-podcast-page .episode-link:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
}

.premium-podcast-page .listen-btn {
    background: linear-gradient(135deg, #8a2be2, #6a1cb8);
    color: white;
    border: none;
    cursor: pointer;
}

.premium-podcast-page .listen-btn:hover {
    background: linear-gradient(135deg, #6a1cb8, #8a2be2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

/* Pagination */
.premium-podcast-page .pagination {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.premium-podcast-page .pagination-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.premium-podcast-page .pagination-links a,
.premium-podcast-page .pagination-links span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: rgba(138, 43, 226, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.premium-podcast-page .pagination-links a:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
    color: #8a2be2;
    transform: translateY(-2px);
}

.premium-podcast-page .pagination-links .current {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
    color: #8a2be2;
    cursor: default;
}

.premium-podcast-page .pagination-links .dots {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
}

/* No Results */
.premium-podcast-page .no-results {
    text-align: center;
    padding: 60px 20px;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
}

.premium-podcast-page .no-results-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.premium-podcast-page .no-results h3 {
    font-size: 2rem;
    margin: 0 0 15px;
    color: white;
}

.premium-podcast-page .no-results p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveAnimation {
    0%, 100% {
        height: 8px;
    }
    50% {
        height: 24px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .premium-podcast-page .container-xl {
        padding: 0 30px;
    }
    
    .premium-podcast-page .podcast-hero-title {
        font-size: 3.5rem;
    }
    
    .premium-podcast-page .section-title {
        font-size: 2.5rem;
    }
    
    .premium-podcast-page .episodes-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .premium-podcast-page .podcast-hero {
        min-height: 65vh; /* Adjusted for tablet */
        padding: 30px 0;
    }
    
    .premium-podcast-page .hero-content-wrapper {
        padding: 30px 0 25px;
    }
    
    .premium-podcast-page .section-header:not(.center-align) {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .premium-podcast-page .header-actions {
        width: 100%;
    }
    
    .premium-podcast-page .filter-buttons {
        justify-content: center;
    }
    
    .premium-podcast-page .search-form {
        flex-direction: column;
    }
    
    .premium-podcast-page .search-input-wrapper {
        width: 100%;
    }
    
    .premium-podcast-page .search-submit {
        width: 100%;
        justify-content: center;
    }
    
    .premium-podcast-page .podcast-hero-stats {
        gap: 30px;
        margin: 25px 0;
    }
    
    .premium-podcast-page .podcast-search-section,
    .premium-podcast-page .podcast-episodes-section {
        padding: 50px 0 60px;
    }
}

@media (max-width: 768px) {
    .premium-podcast-page .podcast-hero {
        min-height: 60vh; /* Adjusted for mobile */
        padding: 25px 0;
    }
    
    .premium-podcast-page .hero-content-wrapper {
        padding: 25px 0 20px;
    }
    
    .premium-podcast-page .podcast-hero-title {
        font-size: 3rem;
    }
    
    .premium-podcast-page .podcast-hero-tagline {
        font-size: 1.3rem;
    }
    
    .premium-podcast-page .hero-tagline-wrapper {
        flex-direction: column;
        gap: 10px;
        margin: 12px 0;
    }
    
    .premium-podcast-page .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
    }
    
    .premium-podcast-page .btn-primary, 
    .premium-podcast-page .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .premium-podcast-page .section-title {
        font-size: 2.2rem;
    }
    
    .premium-podcast-page .episodes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premium-podcast-page .podcast-search-section,
    .premium-podcast-page .podcast-episodes-section {
        padding: 40px 0 50px;
    }
    
    .premium-podcast-page .episode-content {
        padding: 20px;
    }
    
    .premium-podcast-page .episode-title {
        font-size: 1.3rem;
    }
    
    .premium-podcast-page .podcast-hero-stats {
        gap: 20px;
        margin: 20px 0;
    }
    
    .premium-podcast-page .stat-number {
        font-size: 2rem;
    }
    
    .premium-podcast-page .section-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .premium-podcast-page .container-xl {
        padding: 0 20px;
    }
    
    .premium-podcast-page .podcast-hero {
        min-height: 55vh; /* Further reduced for mobile */
        padding: 20px 0;
    }
    
    .premium-podcast-page .hero-content-wrapper {
        padding: 20px 0;
    }
    
    .premium-podcast-page .podcast-hero-title {
        font-size: 2.5rem;
    }
    
    .premium-podcast-page .section-title {
        font-size: 2rem;
    }
    
    .premium-podcast-page .hero-badge, 
    .premium-podcast-page .section-badge {
        font-size: 11px;
        padding: 10px 15px;
    }
    
    .premium-podcast-page .episode-actions {
        flex-direction: column;
    }
    
    .premium-podcast-page .episode-link, 
    .premium-podcast-page .listen-btn {
        width: 100%;
        justify-content: center;
    }
    
    .premium-podcast-page .search-form {
        padding: 8px;
    }
    
    .premium-podcast-page .search-input-wrapper {
        padding: 0 15px;
    }
    
    .premium-podcast-page .search-input {
        padding: 15px 0;
    }
    
    .premium-podcast-page .podcast-hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .premium-podcast-page .stat-item {
        width: 100%;
    }
    
    .premium-podcast-page .podcast-search-section,
    .premium-podcast-page .podcast-episodes-section {
        padding: 30px 0 40px;
    }
}

/* Fix for existing styles - Scoped */
.premium-podcast-page .smx-podcast-shell {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.premium-podcast-page .smx-podcast-hero {
    display: none; /* Hide old hero, using new design */
}