/* CSS Document */

.trust-video-section {
    background-color: var(--insac-secondary, #005984); /* Usa el fondo secundario de la tem?tica o el azul por defecto */
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.trust-video-title {
    font-weight: 900;
    font-size: 38px;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.trust-video-text {
    font-size: 16.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Contenedor wrapper para el video responsivo con esquinas redondeadas id?ntico a las plantillas */
.video-frame-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.video-frame-wrapper:hover {
    transform: translateY(-3px);
}

/* Ajuste responsivo para equilibrar los m?rgenes internos en dispositivos m?viles */
@media (max-width: 767px) {
    .trust-video-section {
        padding: 60px 0;
        text-align: center;
    }
    .trust-video-title {
        font-size: 28px;
    }
}