.video-text-section {
    position: relative;
    width: 100%;
    max-height: 680px;
    height: 680px;
    color: #fff;
    overflow: hidden;
}

.video-text-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* 🔹 Overlay con gradiente */
.video-text-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        #07080D 0%,
        #07080D 64%,
        #07080D 80%
    );
    opacity: 0.6;
    z-index: 1;
}

.video-text-container {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    margin-top: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.video-text-title {
    font-family: "Work Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.video-text-columns {
    display: flex;
    gap: 48px;
}

.video-text-columns p:last-child {
    margin-bottom: 0;
}

.video-text-col {
    flex: 1;
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.video-text-title {
    color: var(--bs-white);
    font-family: "DM Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
    text-transform: uppercase;
}

.video-text-columns {
    color: var(--bs-white);
    font-family: "Work Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.video-text-bg-mobile {
    object-fit: cover;
    height: auto;
}

@media (max-width: 992px) {
    .video-text-section {
        height: fit-content;
        max-height: fit-content;
    }

    .video-text-title {
        color: var(--bs-black);
        font-size: 18px;
        line-height: 20px;
    }

    .video-text-columns {
        color: var(--bs-black);
        font-size: 14px;
        line-height: 20px;
        gap: 0;
    }
}
