.event-article{
    box-shadow: none !important;
    margin: 0 !important;
}

.events-list{
    padding: 0;
    margin: 0;
}

.event-item{
    display: flex;
}

.event-item .event-date{
    width: 140px;
    display: flex;
    flex-direction: column;
    max-height: 170px;
    position: relative;
}

.event-item .event-date div:nth-child(1){
    background-color: #DCAB5F;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: end;
    padding-right: 15px;
    flex: 1;
}

.event-item .event-date__name,
.event-item .event-date__month{
    font-size: 18px;
    line-height: 24px;
    color: #494949;
    margin-bottom: 0;
}

.event-item .event-date__month{
    font-weight: bolder;
    font-size: 16px;
}

.event-item .event-date__day{
    font-size: 80px;
    line-height: 30px;
    font-weight: bolder;
    color: #ffffff;
    margin-bottom: 0;
}

.event-item .event-image{
    width: calc(50% - 125px);
    height: 170px;
    position: relative;
}

.event-copyright{
    font-size: 10px !important;
    padding: 3px !important;
}

.event-item .event-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
}

.event-item .event-image img.default{
    object-fit: contain;
}

.event-item .event-info{
    width: 50%;
    display: inline-block;
    padding-left:  18px;
}

.event-item .event-info__time,
.event-item .event-info__location{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.event-item .event-info__time img,
.event-item .event-info__location img{
    width: 18px;
    height: auto;
}

.event-item .event-info__time p,
.event-item .event-info__location p{
    font-size: 18px;
    line-height: 24px;
    color: #DCAB5F;
    font-weight: 600;
    margin-bottom: 0;
}

.event-item .event-info__title p,
.event-item .event-info__title a{
    color: #494949;
    font-size: 26px;
    line-height: 35px;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.event-item .event-info__title p{
    cursor: pointer;
}

.event-item .event-info__title p,
.event-item .event-info__location p{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-item .event-info__title a:visited{
    color: #494949 !important;
}

.event-item .event-info_category{
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    border-radius: 35px;
    padding: 8px 25px;
    border: 1px solid #494949;
    display: inline-block;
}

.event-item .event-info_category a{
    color: #494949;
}

.event-item .event-info_category a:hover{
    color: #494949;
}

.event-month-title{
    font-size: 30px;
    text-transform: uppercase;
    color: #494949;
    padding-bottom: 60px;
    position: relative;
    margin-bottom: 0;
}

p.event-month-title.top-margin{
    margin-top: 80px;
    padding-bottom: 0;
}

.event-month-title span:nth-child(1){
    font-weight: 700;
    margin-right: 10px;
}

.event-item.before{
    position: relative;
}

.event-month-title.top-margin + article > div{
    padding-top: 60px !important;
}

@media screen and (max-width: 767px) {
    .event-item.before{
        padding-top: 100px !important;
    }

    .event-month-title + article .event-item.before{
        padding-top: 50px !important;
    }
}

/*.event-month-title::after,*/
.event-item.before .event-date::before{
    content: '';
    position: absolute;
    display: inline-block;
    width: 10px;
    /*height: 100px;*/
    /*top: -55px;*/
    /*left: 62px;*/
    background-color: #D6D6D6;
    border-radius: 5px;
}

.event-item.before .event-date::before{
    height: 90px;
    left: 60px;
    top: -61%;
}

@media screen and (max-width: 767px){
    .event-item.before .event-date::before{
        top: -75%;
    }
}

.event-month-title + article .event-item.before .event-date::before{
    height: 41px;
    bottom: 15px;
    left: 60px;
    top: -35%;
}

#load-more{
    text-transform: uppercase;
    display: inline-flex;
    background-color: #494949;
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    padding: 15px 40px;
    align-items: center;
    gap: 20px;
    margin-top: 100px;
}

.loader {
    width: 22px;
    height: 22px;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: none;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

#load-more.disabled{
    pointer-events: none;
}

#load-more.disabled .loader{
    display: inline-block;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 767px){

    .event-month-title{
        padding-bottom: 0;
    }
    .event-item{
        flex-wrap: wrap;
    }
    .event-item .event-info{
        width: 100%;
        padding: 20px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        margin-bottom: 10px;
    }

    .event-item .event-info__title p,
    .event-item .event-info__title a{
        font-size: 20px;
    }

    .event-item .event-info__time p, .event-item .event-info__location p{
        font-size: 17px;
    }

    .event-item .event-date__name, .event-item .event-date__month{
        font-size: 16px;
    }

    .event-item .event-date__day{
        font-size: 50px;
    }

    #load-more{
        font-size: 15px;
        gap: 20px;
        padding: 10px 25px;
    }

    .event-item .event-info_category{
        font-size: 12px;
        padding: 5px 20px;
    }
}

@media screen and (max-width: 360px){
    .event-item .event-date__name, .event-item .event-date__month{
        font-size: 14px;
    }
}

@media screen and (min-height: 400px) and (max-width: 767px){

    .event-item .event-date{
        width: 125px;
        max-height: 135px;
    }

    .event-item .event-image{
        width: calc(100% - 125px);
        max-height: 40vw;
    }
}

@media screen and (max-width: 399px){

    .event-item .event-date{
        width: 115px;
        max-height: 135px;
    }
    .event-item .event-image{
        width: calc(100% - 115px);
        max-height: 135px;
    }
}