/* ══════════════════════════════════════════════════════
   VIDEOS PAGE — videos.css
══════════════════════════════════════════════════════ */

.videos-page {
    padding: 5rem 0 8rem;
}

.videos-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.video-full-card {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.video-full-card:hover {
    border-color: #555;
    transform: translateY(-4px);
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #2a2a2a;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder-wrapper {
    background: #2a2a2a;
}

.video-placeholder-dark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #333 0%, #222 100%);
}

.play-icon-dark {
    font-size: 2.5rem;
    color: var(--gray-700);
    opacity: 0.5;
}

.video-full-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.video-full-title {
    font-family: var(--font-title);
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
    line-height: 1.4;
}

.video-proximamente .video-full-title {
    color: var(--gray-500);
}

.video-proximamente-text {
    color: var(--gray-700);
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .videos-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 560px) {
    .videos-full-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
