.impact-section { 

}

.impact-section .section-container { 

}

.impact-section .section-container .impact-section__title { 

}

.impact-section .section-container .impact-section__video-container { 
    width: 800px;
    height: 450px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-color: rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    /* transform: scale(1.02); */
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.play-button circle {
    transition: fill 0.3s ease;
}

.video-placeholder:hover .play-button circle {
    fill: rgba(255, 255, 255, 1);
}

.impact-section__link {
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    background-color: rgba(50, 186, 246, 1);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    text-align: center;
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-top: 48px;
}

@media (max-width: 992px) {
    .impact-section .section-container .impact-section__video-container { 
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 767px) {
    .impact-section .section-container .impact-section__video-container { 
        width: 100%;
        height: auto;
    }
}