.hero-section > .d-flex-center {
    align-items: unset;
}

.hero-event {
    min-height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
}

.hero-event::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-event > * {
    z-index: 2;
}

.event-status {
    font-weight: var(--font-regular);
}

.hero-event-meta {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 50px;
}

.hero-content-wrapper > * {
    max-width: calc(1240px / 2 - 50px);
    margin-left: auto;
    margin-right: auto;
}

.hero-content-wrapper > .hero-caption {
    width: 100%;
}

.hero-content p {
    font-size: var(--font-xxl);
}

.hero-content p:not(:last-child) {
    margin-bottom: 15px;
}

.hero-content p:last-child {
    margin-bottom: 0;
}

.hero-section-button {
    font-size: var(--font-md);
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .hero-event {
        min-height: 300px;
    }

    .hero-section > .d-flex-center {
        flex-direction: column;
    }

    .hero-content-wrapper {
        padding: 30px 20px;
    }
}