#impact-hero {
    --hero-image: url('../../uploads/impact/hero-bg.jpg');
}

#impact-hero.page-hero {
    min-height: 100vh;
    padding: clamp(150px, 16vw, 210px) 0 clamp(84px, 8vw, 120px);
    background-attachment: scroll;
    /* Fix top scroll stutter */
}

#impact-content {
    padding: 100px 0 !important;
}

#impact-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.15;
}


.impact-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 60px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.impact-panel>* {
    min-width: 0;
    flex: 1 1 0;
}

.impact-panel__video {
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

#impact-hero .page-hero__panel {
    padding-left: 0 !important;
    /* Left alignment flush */
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

#impact-hero .page-hero__panel::before,
#impact-hero .page-hero__panel::after {
    display: none;
}

@media (max-width: 768px) {
    #impact-content {
        padding: 72px 0 88px !important;
    }

    #impact-content h2 {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
        margin-bottom: 28px;
    }

    .impact-panel {
        padding: 24px 18px;
        gap: 20px;
        margin-bottom: 40px;
    }

    .impact-panel>* {
        flex-basis: 100%;
    }

    .impact-panel__video {
        padding: 20px;
    }

    .impact-panel__video .btn {
        width: 100%;
    }
}