/* Podcast Streaming Template - Styles */

/* Main Container */
.podcast-streaming-container {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Product Sans', 'Outfit', sans-serif;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Hero Section (Disney+ Style) */
.podcast-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 0 4% 60px;
    overflow: hidden;
}

/* Streaming Overlay Gradients */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(75deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 80%),
                linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}

/* Hero Content wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-bottom: 20px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Logo & Title */
.podcast-hero-logo {
    max-height: 130px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.podcast-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Product Sans', 'Outfit', sans-serif;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Metadata row */
.podcast-meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #d1d1d1;
}

.meta-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-text {
    font-weight: 500;
}

.meta-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Highlighted Episode Info */
.latest-episode-highlight {
    margin-bottom: 2rem;
}

.latest-episode-badge {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.latest-episode-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.latest-episode-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-play-now {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px; /* Capsule shape */
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.35);
}

.btn-play-now:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.btn-view-episodes {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px; /* Capsule shape */
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-view-episodes:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Disney+ Style Brand Watermark */
.disney-watermark {
    position: absolute;
    bottom: 60px;
    right: 4%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0.6;
    animation: fadeIn 1.5s ease;
}

.disney-watermark img {
    height: 35px;
    width: auto;
}

.disney-watermark span {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
}

/* Tabs Section */
.podcast-tabs-section {
    padding: 0 4%;
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

.podcast-tabs-nav {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    margin-bottom: 40px;
    position: sticky;
    top: 70px;
    background: #000000;
    padding-top: 15px;
    z-index: 100;
}

.tab-nav-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Product Sans', 'Outfit', sans-serif;
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.tab-nav-btn:hover {
    color: #ffffff;
}

.tab-nav-btn.active {
    color: #ffffff;
}

.tab-nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px 3px 0 0;
}

/* Tab Pane Toggle & Slide Transitions */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane.slide-from-right {
    animation: tabSlideInRight 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.tab-pane.slide-from-left {
    animation: tabSlideInLeft 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes tabSlideInRight {
    from {
        transform: translateX(40px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes tabSlideInLeft {
    from {
        transform: translateX(-40px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Season dropdown */
.season-selector-wrapper {
    margin-bottom: 30px;
}

.season-dropdown {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px 10px 16px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Product Sans', 'Outfit', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.season-dropdown:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Episodes Streaming Grid */
.episodes-streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

/* Widescreen Episode Cards */
.streaming-episode-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.streaming-episode-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.card-thumbnail-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
    background-color: #141414;
}

.card-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.streaming-episode-card:hover .card-thumbnail-wrapper img {
    transform: scale(1.05);
}

/* Hover play overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.streaming-episode-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.streaming-episode-card:hover .play-overlay i {
    transform: scale(1);
}

/* Duration tag */
.episode-duration-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Card details info */
.card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Product Sans', 'Outfit', sans-serif;
}

.episode-num-label {
    font-weight: 600;
    color: #ffffff;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.35;
    font-family: 'Product Sans', 'Outfit', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.1rem; /* ensures titles line up */
}

.card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    font-family: 'Product Sans', 'Outfit', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Suggestions Pane */
.suggestions-streaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.suggestion-podcast-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.suggestion-podcast-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.suggestion-card-cover {
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
}

.suggestion-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.suggestion-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.suggestion-play-overlay i {
    width: 46px;
    height: 46px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.suggestion-card-info {
    padding: 20px;
}

.suggestion-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Product Sans', 'Outfit', sans-serif;
}

.suggestion-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'Product Sans', 'Outfit', sans-serif;
}

/* Placeholder Content (Extras & Details) */
.extras-placeholder-content,
.details-placeholder-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.extras-placeholder-content i,
.details-placeholder-content i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.extras-placeholder-content h3,
.details-placeholder-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    font-family: 'Product Sans', 'Outfit', sans-serif;
}

.extras-placeholder-content p,
.details-placeholder-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    font-family: 'Product Sans', 'Outfit', sans-serif;
}

/* Real Details Pane */
.details-pane-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.details-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Product Sans', 'Outfit', sans-serif;
}

.details-section p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-family: 'Product Sans', 'Outfit', sans-serif;
}

.about-host-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.details-metadata-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.meta-value {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .podcast-hero {
        height: 60vh;
        min-height: 450px;
        padding-bottom: 40px;
    }
    
    .podcast-hero-title {
        font-size: 2.5rem;
    }
    
    .podcast-hero-logo {
        max-height: 100px;
    }
}

@media (max-width: 768px) {
    .podcast-hero {
        display: flex;
        flex-direction: column;
        background-size: 0 0 !important; /* Esconde el fondo en el contenedor padre para evitar parpadeos */
        margin-top: 70px !important; /* Evita que el cabezal fijo tape los rostros */
        min-height: auto !important;
        height: auto !important;
        background-color: #000000 !important;
        padding-top: 56.25vw !important; /* Relación de aspecto 16:9 exacta */
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .podcast-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 56.25vw;
        background-image: inherit; /* Hereda la imagen de portada inline */
        background-size: cover; /* Recorta la imagen a 16:9 sin ninguna distorsión */
        background-position: center top;
        background-repeat: no-repeat;
        z-index: 0;
    }
    
    .hero-overlay-gradient {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 56.25vw !important;
        background: linear-gradient(to top, 
            rgba(0, 0, 0, 1) 0%, 
            rgba(0, 0, 0, 0.85) 15%, 
            rgba(0, 0, 0, 0.5) 40%, 
            rgba(0, 0, 0, 0.15) 75%, 
            rgba(0, 0, 0, 0) 100%) !important;
        z-index: 1;
    }
    
    .hero-content {
        margin-top: 0 !important;
        padding-top: 20px !important;
        padding-left: 4% !important;
        padding-right: 4% !important;
        padding-bottom: 30px !important;
        background-color: #000000 !important;
        width: 100%;
        max-width: 100%;
        text-align: center;
        z-index: 2;
        animation: none !important; /* Desactiva la animación del contenedor para evitar parpadeos */
    }
    
    .hero-content > * {
        animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) !important;
        animation-fill-mode: both !important;
    }
    
    .podcast-logo-wrapper {
        margin-top: -95px !important;
        margin-bottom: 10px !important;
        position: relative;
        z-index: 10;
    }
    
    .podcast-hero-logo {
        max-height: 85px !important;
        max-width: 200px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .podcast-hero-title {
        font-size: 2.2rem !important;
        margin-top: -95px !important;
        margin-bottom: 15px !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
    }
    
    .podcast-meta-row {
        justify-content: center;
        margin-bottom: 20px !important;
        font-size: 0.85rem !important;
    }
    
    .latest-episode-highlight {
        margin-bottom: 20px !important;
    }
    
    .latest-episode-badge {
        font-size: 0.75rem !important;
        margin-bottom: 4px !important;
    }
    
    .latest-episode-title {
        font-size: 1.25rem !important;
        margin-bottom: 0 !important;
    }
    
    .latest-episode-desc {
        display: none !important; /* Oculta la descripción larga en móviles */
    }
    
    .disney-watermark {
        display: none !important; /* Evita empalmes */
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 15px !important;
    }
    
    .btn-play-now,
    .btn-view-episodes {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .podcast-tabs-nav {
        top: 70px !important;
        margin-bottom: 25px !important;
        background-color: #000000 !important;
        gap: 15px;
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    
    .podcast-tabs-nav::-webkit-scrollbar {
        display: none;
    }
    
    .tab-nav-btn {
        font-size: 0.85rem;
        letter-spacing: 1px;
        white-space: nowrap;
    }
    
    .tab-nav-btn.active::after {
        bottom: -10px;
    }
    
    .episodes-streaming-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .streaming-episode-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 10px 0 !important;
        gap: 16px !important;
    }
    
    .streaming-episode-card:hover {
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .card-thumbnail-wrapper {
        width: 120px !important;
        min-width: 120px !important;
        aspect-ratio: 16/9 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }
    
    .card-info {
        padding: 0 !important;
        flex-grow: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .card-meta {
        margin-bottom: 4px !important;
        font-size: 0.75rem !important;
    }
    
    .card-title {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
        line-height: 1.25 !important;
        height: auto !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }
    
    .card-desc {
        display: none !important; /* Oculta descripción en la lista en móvil */
    }
    
    .episode-duration-tag {
        bottom: 5px !important;
        right: 5px !important;
        font-size: 0.65rem !important;
        padding: 2px 5px !important;
    }
    
    .play-overlay i {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
    
    /* Sugerencias en Móvil (Cuadrícula de 2 columnas) */
    .suggestions-streaming-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    
    .suggestion-podcast-card {
        display: flex !important;
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        padding: 0 !important;
        overflow: hidden !important;
        gap: 0 !important;
    }
    
    .suggestion-podcast-card:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.02) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }
    
    .suggestion-card-cover {
        width: 100% !important;
        min-width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        border-radius: 0 !important;
    }
    
    .suggestion-card-info {
        padding: 12px !important;
        display: block !important;
        text-align: center !important;
        flex-grow: 0 !important;
    }
    
    .suggestion-card-title {
        font-size: 0.85rem !important;
        margin-bottom: 0 !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        text-align: center !important;
    }
    
    .suggestion-podcast-card .suggestion-card-desc {
        display: none !important;
    }
    
    .suggestion-play-overlay i {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }
    
    /* Detalles en Móvil */
    .details-pane-content {
        padding: 20px !important;
        gap: 20px !important;
        border-radius: 12px !important;
    }
    
    .details-section h3 {
        font-size: 1.15rem !important;
        margin-bottom: 8px !important;
    }
    
    .details-section p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    .details-metadata-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding-top: 20px !important;
    }
    
    .meta-item {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding-bottom: 8px !important;
    }
    
    .meta-item:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    
    .meta-label {
        font-size: 0.75rem !important;
        margin-bottom: 0 !important;
    }
    
    .meta-value {
        font-size: 0.85rem !important;
        text-align: right !important;
    }
}
