.forum-events-section { 
    padding-block: 80px;
    padding-inline: 40px;
    border-bottom: 1px solid rgba(196, 204, 209, 1);
    background: linear-gradient(180deg, var(--Color-System-Layout-Surface, #FBFDFF) 0%, var(--Primitive-BRI-Blue---Secondary-BRI-Blue-50, #EBF8FE) 100%), var(--Color-System-Layout-Surface, #FBFDFF);
}

.forum-events-section .container { 
    width: 100%;
    padding: 0;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.forum-events-section .container .right-content { 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    width: 33%;
    max-width: 365px;
}

.forum-events-section .container .right-content .forum-events-section__title { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 40px;
    line-height: 52px;
    color: rgba(12, 25, 55, 1);
}

.forum-events-section .container .right-content .forum-events-section__button { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 100px;
    background-color: rgba(50, 186, 246, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.forum-events-section .container .left-content { 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    width: 66%;
    max-width: 730px;
}

.forum-events-section .container .left-content .forum-events-section__events { 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;

}

.forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event { 
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
}

.forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event:not(:last-child) {
    border-bottom: 1px solid rgba(196, 204, 209, 1);
    padding-bottom: 32px;
}

.forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event img { 
    width: calc(50% - 16px);
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event .forum-events-section__event-content { 
    display: flex; 
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event .forum-events-section__event-content .event-date { 
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event .forum-events-section__event-content .event-date .date-icon { 
    width: 24px;
    height: 24px;
    object-fit: cover;
    object-position: center;
}

.forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event .forum-events-section__event-content .event-date .event-date-text { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 16px;
    line-height: 24px;
    color: rgba(12, 25, 55, 1);
}

.forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event .forum-events-section__event-content .forum-events-section__event-title { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 24px;
    line-height: 33.6px;
    color: rgba(12, 25, 55, 1);
}

.forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event .forum-events-section__event-content .forum-events-section__event-description { 
    font-family: CircularXX TT, sans-serif;
    font-weight: 450;
    font-size: 16px;
    line-height: 24px;
    color: rgba(12, 25, 55, 1);
}

@media (max-width: 1280px) { 
    .forum-events-section {
        padding: 80px 24px;
    }

    .forum-events-section .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 56px;
    }

    .forum-events-section .container .right-content {
        width: 100%;
        max-width: unset;
        padding: 0 24px;
        align-items: center;
    }

    .forum-events-section .container .left-content {
        width: 100%;
        max-width: unset;
        padding: 0 24px;
        align-items: center;
    }

    .forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 32px;
    }

    .forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event img {
        width: 100%;
        height: 100%;
        aspect-ratio: 640/378;
        object-fit: cover;
        object-position: center;
        border-radius: 16px;
    }

    .forum-events-section .container .right-content .forum-events-section__title {
        text-align: center;
    }

    .forum-events-section .container .right-content .forum-events-section__button {
        font-size: 12px;
        line-height: 18px;
        text-align: center;
    }        
}

@media (max-width: 768px) {
    .forum-events-section {
        padding: 40px 24px;
    }

    .forum-events-section .container .right-content .forum-events-section__title {
        font-size: 32px;
        line-height: 41.6px;
    }

    .forum-events-section .container .right-content .forum-events-section__button {
        font-size: 12px;
        line-height: 18px;
    }

    .forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event .forum-events-section__event-content .event-date .event-date-text {
        font-size: 14px;
        line-height: 21px;
    }
} 
/* Hidden events and Load More button */
.forum-events-section .container .left-content .forum-events-section__events .forum-events-section__event.hidden-event {
    display: none;
}

.forum-events-section .container .left-content .forum-events-section__events.show-all .forum-events-section__event.hidden-event {
    display: flex;
}

.forum-events-section__load-more {
    font-family: CircularXX TT, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 100px;
    background-color: rgba(50, 186, 246, 1);
    border: 1px solid rgba(50, 186, 246, 1);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}


@media (max-width: 1280px) {
    .forum-events-section .container .left-content .forum-events-section__events.show-all .forum-events-section__event.hidden-event {
        display: flex;
        flex-direction: column-reverse;
    }
}
