/* Article */
.text-icon {
    color: #00adb5;
}

.card-latest {
    display: grid;
    gap: 5px;
    margin: 10px 0;
    grid-template-columns: 30% auto;
}

.card-event {
    display: grid;
    gap: 5px;
    margin: 10px 0;
    grid-template-columns: 30% auto;
}
.event-box {
    width: 90px;
    height: 90px;
    background-image: url(../img/bg-event.png);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.event-box .schedule {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.event-box .schedule .date {
    background: -webkit-linear-gradient(left, #7eec91, #0aacf5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 700;
}

.border-primary-3 {
    width: 100%;
    height: 3px;
    background: var(--bs-gradient-sec);
}

/* Event */
.event-group-img {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.event-group-img .footer-img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: brightness(0.5);
    padding: 0 10px;
}

.border-right {
    border-right: 2px solid #7B8189;
}
@media (max-width: 991px) {
    .card-latest,
    .card-event {
        grid-template-columns: 15% auto;
    }
}

@media (max-width: 767px) {
    .card-latest,
    .card-event {
        grid-template-columns: 25% auto;
        gap: 10px;
    }
    .border-right {
        border: unset;
    }
}

.underline {
    border-bottom: 5px solid #efefef;
}
.underline-secondary {
    bottom: -6px;
    left: 0px;
    border-bottom: 5px solid var(--bs-secondary);
    width: 100%;
}

/* share last icon */
.st-last {
    display: inline-block !important;
}
