/* Listado /videoteca y ficha /videotecaid-* â€” marca Paulina */

.pr-videoteca {
    background:
        radial-gradient(ellipse 70% 45% at 8% 0%, rgba(183, 154, 181, 0.22), transparent 55%),
        radial-gradient(ellipse 55% 40% at 92% 8%, rgba(198, 167, 107, 0.16), transparent 50%),
        #F8F7F5 !important;
    color: #1D1D1D !important;
    padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem 3.5rem;
}

.pr-videoteca__intro {
    max-width: 40rem;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.pr-videoteca__eyebrow {
    margin: 0 0 0.55rem;
    font-family: var(--pr-fuente-cuerpo, Inter, system-ui, sans-serif);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #B79AB5 !important;
}

.pr-videoteca__titulo {
    margin: 0 0 0.75rem;
    font-family: var(--pr-fuente-titulo, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.1;
    color: #3D0026 !important;
}

.pr-videoteca__lead {
    margin: 0 auto;
    max-width: 32rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(29, 29, 29, 0.78) !important;
}

.pr-videoteca__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1180px;
    margin: 0 auto;
}

.pr-videoteca__card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF !important;
    border: 1px solid rgba(61, 0, 38, 0.08);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 10px 28px rgba(61, 0, 38, 0.06);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.pr-videoteca__card:hover,
.pr-videoteca__card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(61, 0, 38, 0.12);
    outline: none;
}

.pr-videoteca__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #3D0026;
    overflow: hidden;
}

.pr-videoteca__media img,
.pr-videoteca__media-vacio {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-videoteca__media-vacio {
    background:
        linear-gradient(145deg, #520033 0%, #3D0026 55%, #2a001a 100%);
}

.pr-videoteca__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(180deg, rgba(61, 0, 38, 0.05) 0%, rgba(61, 0, 38, 0.45) 100%);
    opacity: 0.92;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.pr-videoteca__play svg {
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.pr-videoteca__card:hover .pr-videoteca__play {
    background: linear-gradient(180deg, rgba(61, 0, 38, 0.1) 0%, rgba(61, 0, 38, 0.55) 100%);
    color: #C6A76B;
}

.pr-videoteca__body {
    padding: 1.1rem 1.15rem 1.35rem;
    flex: 1 1 auto;
}

.pr-videoteca__nombre {
    margin: 0 0 0.4rem;
    font-family: var(--pr-fuente-titulo, 'Cormorant Garamond', Georgia, serif);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.25;
    color: #3D0026 !important;
}

.pr-videoteca__desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(29, 29, 29, 0.72) !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pr-videoteca__vacio {
    text-align: center;
    margin: 2rem auto;
    color: rgba(29, 29, 29, 0.7) !important;
}

.pr-videoteca__paginacion {
    max-width: 1180px;
    margin: 2.5rem auto 0;
    text-align: center;
}

/* Ficha individual videotecaid */
.pr-videotecaid {
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(183, 154, 181, 0.28), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 30%, rgba(198, 167, 107, 0.14), transparent 45%),
        linear-gradient(165deg, #4a0a32 0%, #3D0026 48%, #2a001a 100%) !important;
    color: #FFFFFF !important;
    padding: clamp(2.25rem, 5vw, 4rem) 1.25rem 4rem;
    min-height: 60vh;
}

.pr-videotecaid__inner {
    max-width: 920px;
    margin: 0 auto;
}

.pr-videotecaid__volver {
    display: inline-block;
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78) !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.pr-videotecaid__volver:hover,
.pr-videotecaid__volver:focus-visible {
    color: #C6A76B !important;
    border-bottom-color: #C6A76B;
}

.pr-videotecaid__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #C6A76B !important;
}

.pr-videotecaid__titulo {
    margin: 0 0 0.85rem;
    font-family: var(--pr-fuente-titulo, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(2.1rem, 4.5vw, 3.1rem);
    font-weight: 600;
    line-height: 1.15;
    color: #FFFFFF !important;
}

.pr-videotecaid__lead {
    margin: 0 0 1.75rem;
    max-width: 38rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82) !important;
}

.pr-videotecaid__marco {
    position: relative;
    padding: 0.55rem;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(198, 167, 107, 0.85) 0%, rgba(183, 154, 181, 0.55) 48%, rgba(198, 167, 107, 0.35) 100%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.pr-videotecaid__player {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #1a0010;
    aspect-ratio: 16 / 9;
}

.pr-videotecaid__player iframe,
.pr-videotecaid__player embed,
.pr-videotecaid__player object,
.pr-videotecaid__player video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    border: 0 !important;
    display: block !important;
}

.pr-videotecaid--vacio .pr-videotecaid__inner {
    text-align: center;
    padding: 3rem 0;
}

/* Compat legado (por si quedan embeds viejos) */
.videotecaid {
    background: transparent;
}

@media (max-width: 640px) {
    .pr-videoteca__grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }

    .pr-videotecaid__marco {
        padding: 0.35rem;
        border-radius: 14px;
    }

    .pr-videotecaid__player {
        border-radius: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pr-videoteca__card,
    .pr-videoteca__play,
    .pr-videotecaid__volver {
        transition: none !important;
    }

    .pr-videoteca__card:hover,
    .pr-videoteca__card:focus-visible {
        transform: none;
    }
}
