.video .full-container {
    --bs-gutter-x: 0;
}

.video .video-background {
    background-color: #c6c6f0;
}

.video .block-separator {
    position: absolute;
    top: -96px;
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    background: url("./split-desc-mobile.png") no-repeat center bottom;
    background-size: auto 100px;
}

.video .text-desc {
    font-size: 1.2rem;
    line-height: 1.8;
}

.video .text-desc .list-group {
    margin-bottom: 4rem;
}

.video .text-desc .list-group-item {
    --bs-list-group-bg: #e2e2fa;
    --bs-list-group-border-color: #c6c6f0;
    position: relative;
    --padding-left: 3rem;
    line-height: 1.3;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

/* Hacer el iframe responsive */
.youtubeiframe-container {
    --bs-list-group-bg: #e2e2fa;
    --bs-list-group-border-color: #c6c6f0;
    background-color: var(--bs-list-group-bg);
    border: 1px solid var(--bs-list-group-border-color);
    color: black;
    padding: 0.8rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Hacer el iframe responsive */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}



.video .text-desc .list-group-item .icon {
    display: block;
    position: absolute;
    left: 1.2rem;
    top: calc(50% - 0.8rem);
}

.video .wavelines {
    width: 100%;
    height: auto;
    overflow: visible;
}

.video polyline {
    --_height: 15;
    --_count: 3;
    --_y: (var(--_height) * var(--i) / var(--_count)) * 1px;
    --_offset: (var(--_height) / var(--_count)) * 0.5px;
    fill: none;
    stroke: #483e8ca0;
    stroke-linecap: round;
    stroke-width: 1.2;
    transform-box: fill-box;
    transform-origin: center;
    translate: 0 calc(var(--_y) - var(--_offset));
}

@media (min-width: 640px) {
    .video polyline {
        --_height: 8;
        --_count: 3;
        --_y: (var(--_height) * var(--i) / var(--_count)) * 1px;
        --_offset: (var(--_height) / var(--_count)) * 0.5px;
        stroke-width: 0.5;
        translate: 0 calc(var(--_y) - var(--_offset));
    }
}

@media (min-width: 1024px) {
    .video .block-separator {
        top: -116px;
        height: 120px;
        min-height: 120px;
        max-height: 120px;
        background: url("./split-desc.png") no-repeat center bottom;
        background-size: auto 120px;
    }
}

@media (min-width: 1200px) {
    .video .text-desc .list-group-item .icon {
        top: 0.9rem;
    }
}