/* conference List Section */
.event-card-row {
    margin-bottom: -24px;
}
.event-card-row .event-card-column{
    margin-bottom: 24px;
}
.event-card{
    box-shadow: inset 0px 0px 0px 1px #EEEEEE;
    border-radius: 10px;
    overflow: hidden;
}
.event-img-container{
    overflow: hidden;
    border-radius: 12px;
}

.event-img-container img{
    width: 100%;
    transition: all 0.3s ease;
}
.event-card:hover .event-img-container img{
    scale: 1.2;
}

.event-card-detail{
    padding: 16px;
}
.event-date{
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 6px;
}
.event-location{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin: 4px 0 12px;
}
.event-location::before{
    content: url(../images/icon_pin.svg);
    display: block;
    width: 16px;
    height: 16px;
}
/* Responsive */
@media(max-width:767px){
    .text-sm {
        font-size: 14px;
        line-height: 20px;
    }
    .event-location {
        gap: 4px;
        margin: 2px 0 8px;
    }
    .underline-link {
        font-size: 12px;
        line-height: 18px;
    }
}
@media(max-width:575px){
    .media-center-breadcrumb {
        background-position: top right -300px;
    }
    .event-card-detail {
        padding: 12px;
    }
    .event-date {
        margin-bottom: 4px;
    }
    .event-location {
        gap: 0;
        font-size: 12px;
        line-height: 18px;
        margin: 4px 0;
    }
    .event-location::before {
        scale: 0.9;
    }
}
