.video-section {
    padding-block: 80px;
    width: 100%;
    height: fit-content;
    background-color: #FBFDFF;
}

.video-section .container {
    width: 100%;
    max-width: 1272px;
    margin: 0 auto;
    padding-inline: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.video-section .container .video-section__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.video-section .container .video-section__content .video-section__title {
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 40px;
    line-height: 130%;
    color: rgba(12, 25, 55, 1);
}

.video-section .container .video-section__content .video-section__description {
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 18px;
    line-height: 150%;
    color: rgba(12, 25, 55, 1);
    max-width: 800px;
}

.video-section .container .video-section__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1056px;
    height: auto;
    aspect-ratio: 1056 / 594;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-section .container .video-section__video-wrapper .video-section__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-section .container .video-section__video-wrapper .video-section__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    cursor: pointer;
}

.video-section .container .video-section__video-wrapper .video-section__video-overlay.hidden {
    display: none;
}

.video-section .container .video-section__video-wrapper .video-section__video-overlay .video-section__play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.video-section .container .video-section__video-wrapper .video-section__video-overlay .video-section__play-btn:hover {
    transform: scale(1.1);
}

.video-section .container .video-section__video-wrapper--youtube {
    position: relative;
}

.video-section .container .video-section__video-wrapper--youtube .video-section__video--youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-section .container .video-section__read-more-wrapper {
    width: 100%;
    max-width: 1056px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-section .container .video-section__read-more-wrapper .video-section__toggle-btn {
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(50, 186, 246, 1);
    padding: 12px 24px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-section .container .video-section__read-more-wrapper .video-section__toggle-btn:hover {
    background-color: rgba(30, 166, 226, 1);
}

.video-section .container .video-section__read-more-wrapper .video-section__expandable-text {
    width: 100%;
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 16px;
    line-height: 150%;
    color: rgba(12, 25, 55, 1);
    text-align: right;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.video-section .container .video-section__read-more-wrapper .video-section__expandable-text.expanded {
    max-height: 2000px;
    opacity: 1;
    margin-bottom: 24px;
}

@media (max-width: 1280px) {
    .video-section .container {
        max-width: 688px;
    }

    .video-section .container .video-section__content .video-section__title {
        font-size: 32px;
        line-height: 40px;
    }

    .video-section .container .video-section__content .video-section__description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding-block: 40px;
    }

    .video-section .container {
        padding-inline: 20px;
        gap: 32px;
    }

    .video-section .container .video-section__content .video-section__title {
        font-size: 28px;
        line-height: 36px;
    }

    .video-section .container .video-section__content .video-section__description {
        font-size: 14px;
    }

    .video-section .container .video-section__video-wrapper {
        max-width: 688px;
        aspect-ratio: 688 / 387;
    }

    .video-section .container .video-section__read-more-wrapper {
        max-width: 688px;
    }

    .video-section .container .video-section__read-more-wrapper .video-section__toggle-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .video-section .container .video-section__read-more-wrapper .video-section__expandable-text {
        font-size: 14px;
    }
}
