.vert-col-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    position: relative;
    height: 50vw;
    max-height: 45rem;
}


.vert-col-left-names {
    display: flex;
    flex-direction: column;
    gap: 1.12rem;
    padding: var(--container-space);
}

.vert-col-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6.375rem;
}

.vert-col-left .vert-col-name {
    cursor: pointer;
    font-family: var(--font-family-headline);
    letter-spacing: -0.06rem;
    opacity: 0.4;
    transition: opacity 0.3s;
    line-height: 100%;
}

.vert-col-name {
    font-size: 3rem;
}

.vert-col-name.vert-col-name-small {
    font-size: 2rem;
}

.vert-col-left .vert-col-name.active,
.vert-col-left .vert-col-name:hover {
    opacity: 1;
}


.vert-col-section-right {
    position: absolute;
    left: 50%;
    height: 100%;
    width: 50%;
}

.vert-col-swiper {
    height: 100%;
}

.vert-col-bottom-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    justify-content: space-between;
    padding: var(--container-space);
    border-top: 1px solid var(--border-color);
}

.vert-col-bottom-info-text {
    color: #666;
    max-width: 12.75rem;
    font-size: 1rem;
    line-height: 140%;
}

.vert-col-slide {
    /* height: auto !important; */
}

.vert-col-slide-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.vert-col-slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.vert-col-slide-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: var(--container-space);
    max-width: 26.6875rem;
    max-height: 26.6875rem;
}

.vert-col-cx .vert-col-slide-content {
    background-color: white;
}

.vert-col-ai .vert-col-slide-content {
    background-color: #171717;
}

.vert-col-slide-text {
    font-size: 1.125rem;
    line-height: 140%;
}

.vert-col-navigation {
    display: none;
}

@media (max-width: 1200px) {
    .vert-col-left .vert-col-name {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .vert-col-section {
        display: flex;
        flex-direction: column;
        height: 100%;
        max-height: 100%;
    }

    .vert-col-section-right {
        position: relative;
        left: 0;
        width: 100%;
        height: auto;
    }

    .vert-col-left {
        width: 100%;
        padding: 0;
        border-bottom: none;
    }

    .vert-col-left-names {
        width: 100%;
        padding: 0;
    }

    .vert-col-slide-content {
        gap: 2.5rem;
        max-width: 100%;
    }

    .vert-col-slide-container {
        aspect-ratio: auto;
        flex-direction: column-reverse;
    }

    .vert-col-slide-bg {
        position: relative;
        aspect-ratio: 16 / 8;
    }

    .vert-col-left .vert-col-name {
        padding: 0.69rem 1rem;
        font-size: 1.125rem;
        white-space: nowrap;
        border-right: 1px solid var(--border-color);
        opacity: 1;
        width: fit-content;
        color: #666;
    }

    .vert-col-left-names {
        border-bottom: 1px solid var(--border-color);
    }

    .vert-col-cx .vert-col-name.swiper-slide-thumb-active,
    .vert-col-cx .vert-col-name:hover {
        background: linear-gradient(114deg, rgba(11, 194, 154, 0.40) -30.97%, rgba(19, 237, 168, 0.40) 0.09%, rgba(42, 217, 226, 0.40) 98.47%);
        color: var(--text-color);
    }

    .vert-col-ai .vert-col-name.swiper-slide-thumb-active,
    .vert-col-ai .vert-col-name:hover {
        background: var(--button-arrow-background);
    }

    .vert-col-left .vert-col-name:not(:first-child) {
        border-left: none;
    }

    .vert-col-bottom-info {
        position: relative;
        width: 100%;
    }

    .vert-col-navigation-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 2.5rem var(--container-space);
    }

    .vert-col-navigation {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: fit-content;
    }

    .vert-col-bottom-info {
        flex-direction: column;
        align-items: center;
        padding: 3.5rem var(--container-space);
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .vert-col-slide-text {
        font-size: 1rem;
        min-height: calc(1.2em * 4);
    }
}

@media (max-width: 480px) {
    .vert-col-slide-text {
        line-height: 120%;
        height: calc(1.2em * 7);
        /* 7 rows */
    }
}