.featured-events {
    justify-content: center;

    img {
        width: auto;
        max-height: 600px;
    }
}

.featured-events, .other-events {
    margin: 25px 0;
}

.other-event {
    margin: 10px 0;
}

.featured-event, .other-event {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.featured-event .event-description {
    background-color: rgb(33, 37, 41, 0.5);
}

.featured-event .event-img img {
    box-shadow: 0 0 10px 3px rgb(255, 255, 255, 0.15);
}

img {
    width: auto;
    max-width: 100%;
    max-height: 450px;
    box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.15);
}

.event-img {
    transition: 0.5s;
    margin-bottom: 20px;

    img {
        border-radius: 10px;
    }

    &:hover {
        transform: scale(1.03);
    }
}

.section-header {
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.event-description {
    width: fit-content;
    text-align: center;
    border-radius: 10px;
    background-color: rgb(33, 37, 41, 0.25);
    padding: 15px 20px;
}

.involved-cta {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
}