.events-hero-section {
    position: relative;
    overflow: hidden;
}

.events-slide {
    position: relative;
    min-height: 570px;
    padding-top: 280px;
}

.events-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(8, 12, 28, .92) 0%,
            rgba(12, 20, 40, .82) 25%,
            rgba(12, 20, 40, .35) 55%,
            rgba(0, 0, 0, .20) 100%);
}

.events-slide .container {
    position: relative;
    z-index: 2;
}

.events-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 50px;
    color: var(--bs-white);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.events-title {
    color: var(--bs-white);
    font-size: 48px;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 30px;
}

.events-title span {
    color: var(--bs-primary);
}

@media (max-width:1199px) {

    .events-slide {
        min-height: 650px;
    }

    .events-title {
        font-size: 58px;
    }

    .events-badge {
        font-size: 24px;
    }

}

@media (max-width:991px) {

    .events-slide {
        min-height: 600px;
    }

    .events-title {
        font-size: 46px;
    }

    .events-badge {
        font-size: 20px;
        padding: 10px 24px;
    }

}

@media (max-width:767px) {

    .events-slide {
        min-height: 540px;
    }

    .events-title {
        font-size: 34px;
        line-height: 1.2;
    }

    .events-badge {
        font-size: 16px;
        padding: 8px 18px;
    }

}