/* ----- Sección de videos ----- */
.videos-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.videos-section .section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

/* Grid responsivo */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Tarjeta */
.video-card {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Wrapper para conservar proporción 16:9 */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

/* Títulos */
.video-title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #444;
}
