.section-upcoming-event{
    padding: 92px 0;
}
.section-upcoming-event .event-item .event-title,
.section-upcoming-event .main-title{
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 56px;
    color: var(--color-black);
}
.section-upcoming-event .main-title{
    margin-bottom: 32px;
}
.section-upcoming-event .subtitle{
    max-width: 640px;
}
.section-upcoming-event .event-item .event-title{
    margin-bottom: 26px;
}
.section-upcoming-event .event-item .event-title:last-child{
    margin-bottom: 0;
}
.section-upcoming-event .subtitle,
.section-upcoming-event .event-item .date{
    font-family: var(--font-campton);
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    color: var(--color-black);
}
.section-upcoming-event .event-item .time,
.section-upcoming-event .event-item .categories{
    font-family: var(--font-campton);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: var(--color-black);
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.section-upcoming-event .event-item .inner-bottom{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 20px;
}
.section-upcoming-event .event-item .desc{
    max-width: 876px;
}
.section-upcoming-event .event-item .desc,.section-upcoming-event .event-item .desc p{
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    color: var(--color-black);
}
.section-upcoming-event .event-item .time{
    margin-bottom: 10px;
}
.section-upcoming-event .event-item .time:last-child{
    margin-bottom: 0;
}
.section-upcoming-event .top-part{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}
.section-upcoming-event .bottom-part{
    padding-top: 24px;
}
.section-upcoming-event .subtitle-wrap{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 10px;
    margin-bottom: 64px;
}
.section-upcoming-event .event-item{
    padding: 40px 72px 40px 51px;
    border-radius: 5px;
    background-color: var(--color-background-white);
    margin-bottom: 64px;
    --border-color:#F05A28;
    border-left: 21px solid var(--border-color);
}
.section-upcoming-event .event-item:last-child{
    margin-bottom: 0;
}
.section-upcoming-event .event-item:nth-child(3n+1) {
    --border-color:#F05A28;
}
.section-upcoming-event .event-item:nth-child(3n+2) {
    --border-color:#4DABC2;
}
.section-upcoming-event .event-item:nth-child(3n) {
    --border-color:#F1C945;
}
.section-upcoming-event .mobile-btn{
    display: none;
}
@media only screen and (max-width:768px){
    .section-upcoming-event{
        padding: 32px 0px;
    }
    .section-upcoming-event .main-title{
        font-size: 29px;
        line-height: normal;
    }
    .section-upcoming-event .event-item .event-title{
        font-size: 37px;
        line-height: normal;
    }
    .section-upcoming-event .event-item .event-title{
        margin-bottom: 16px;
    }
    .section-upcoming-event .event-item .event-title:last-child{
        margin-bottom: 0;
    }
    .section-upcoming-event .event-item .inner-bottom{
        flex-direction: column;
        align-items: flex-start;
        row-gap: 32px;
    }
    .section-upcoming-event .main-title{
        margin-bottom: 24px;
    }
    .section-upcoming-event .desktop-btn{
        display: none;
    }
    .section-upcoming-event .mobile-btn{
        display: block;
        width: fit-content;
        margin: auto;
        margin-top: 40px;
    }
    .section-upcoming-event .subtitle, .section-upcoming-event .event-item .date{
        font-size: 26px;
        line-height: normal;
    }
    .section-upcoming-event .event-item .time, .section-upcoming-event .event-item .categories{
        font-size: 12px;
        line-height: normal;
    }
    .section-upcoming-event .event-item .time svg, .section-upcoming-event .event-item .categories svg{
        width: 13px;
        height: 13px;
    }
    .section-upcoming-event .event-item .time{
        margin-bottom: 8px;
    }
    .section-upcoming-event .subtitle-wrap{
        margin-bottom: 40px;
    }
    .section-upcoming-event .event-item{
        padding: 25px 25px 32px;
        border-left: 0px;
        border-bottom: 16px solid var(--border-color);
    }
    .section-upcoming-event .top-part{
        padding-bottom: 16px;
    }
    .section-upcoming-event .bottom-part{
        padding-top: 32px;
    }
    .section-upcoming-event .event-item .desc, .section-upcoming-event .event-item .desc p{
        font-size: 19px;
        line-height: 28px;
    }
}