.eventFilters{
    display: flex;
    width: max-content;
    height: max-content;
    gap: 20px;
}

.eventList{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    height: max-content;
}

.event{
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    height: max-content;
}

.event .date{
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.event p, .event h6{
    margin: 0;
}

.event .info{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    user-select: text;
}

.event .info h6{
    width: max-content;
    cursor: pointer;
    border-bottom: var(--borderWidth) solid transparent;
    transition: all var(--transitionDuration) ease-out;
}

.event .info h6:hover{
    transition: all var(--transitionDuration) ease-out;
    border-bottom: var(--borderWidth) solid var(--primary);
}

/* Mobile */

@media (max-width: 768px) {

    #content{
        padding-bottom: 50px;
    }

    .eventFilters{
        width: 100%;
        flex-direction: column;
    }

    .eventFilters .searchInput{
        width: 100%;
    }
    
    .event{
        width: 100%;
    }

    .event .info p, h6{
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

}