.calendar_page_hr_sep{
    height: 1px;
    background: black;
    border: none;
    width: 100%;
    margin-top: 3px;
    margin-bottom: 25px;
}


#list_holder {
    margin: 240px 41px 0;
    max-width: 1200px;
}
#category_title {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
#category_title >span {
    font-size: 45px;
    margin-bottom: 50px;
}

#calendar_switch {
    height: fit-content;
    height: 22px;
    cursor: pointer;
    border: 1px solid black;
    padding: 7px 12px;
    font-size: 16px;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: all 0.2s;
}
#calendar_switch.active {
    color: white;
    background: black;
}
#calendar_switch:hover {
    color: white;
    background: black;
}
#category_intro {
    margin-bottom: 25px;
}

#list_items_holder {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    width: 101%;
    transform: translate(-0.5%);
}

#list_items_holder > a {
    margin: 20px 0px;
}

.category_list_item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    margin-bottom: 70px;
}

.list_item_img {
    width: 216px;
    height: 216px;
    max-width: 300px;
    object-fit: cover;
}

.list_item_text_container {
    max-width: 60%;
    margin-left: 20px;
    display: flex;
    flex-flow: column;
    height: 222px;
}
.list_item_category_place {
    margin-top: 10px;
}
.list_item_date , .list_item_category_place{
    font-size: 15px;
}
.list_item_title {
    margin: 0;
    font-size: 20px;
    line-height: 22px;
}

.list_item_teaser {
    max-width: 700px;
    font-size: 15px;
    line-height: 22px;
    margin-top: auto;
    /* margin-top: 35px;*/
    margin-bottom: 15px;
    max-height: 180px;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.list_item_teaser::-webkit-scrollbar {
    display: none;
}

.list_item_more {
    font-size: 18px;
    text-decoration: underline;
}





/* !media quieres */
@media screen and (max-width: 1200px) {
    #list_items_holder>a {
        width: 32%;
        margin: 0.0 0.5% 40px;
    }
}

@media screen and (max-width: 800px) {
    #list_items_holder>a {
        width: 49%;
        margin: 0.0 0.5% 40px;
    }
}
@media screen and (max-width: 700px) {
    .category_list_item {
        flex-flow: column;
    }
    .list_item_img {
        width: 100%;
        max-width: 300px;
    }
    .category_list_item .list_item_text_container {
        max-width: 100%;
        margin-left: 0;
        width: 90%;
        margin-top: 30px;
        height: auto;
    }
    
    
}

@media screen and (max-width: 500px) {
    #list_items_holder>a {
        width: 99%;
        margin: 0.0 0.5% 40px;
    }
}