.check-out-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 16px 48px;
    background: var(--white);
}

.check-out-video__title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: var(--dark-navy);
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.64px;
}

.check-out-video__button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.check-out-video__iframe-wrapper {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    max-width: 1920px;
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--dark-navy-32);
}


.check-out-video__iframe {
    width: 100%;
    height: calc(100% + 2px);
}

.check-out-video__iframe:hover {
    cursor: pointer;
}

.check-out-video__button {
    color: var(--white);
    background-color: var(--dark-navy);
}

@media (min-width: 700px) {
    .check-out-video {
        gap: 48px;
        padding: 0 48px 72px;
    }

    .check-out-video__title {
        font-size: 32px;
    }
}

@media (min-width: 1200px) {
    .check-out-video {
        padding: 0 72px 104px;
    }

    .check-out-video__title {
        font-size: 32px;
    }
}

@media (min-width: 1800px) {
    .check-out-video__title {
        font-size: 48px;
    }
}