.shl-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.shl-news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 2px solid #252834;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    transition: all .35s ease;
}

.shl-news-card:hover {
    /* transform: translateY(-5px); */
}

.shl-news-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.shl-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.shl-news-card:hover img {
    transform: scale(1.05);
}

.shl-news-content {
    padding: 34px 30px 28px;
}

.shl-news-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.shl-news-date {
    font-size: 16px;
    color: #026666;
}

.shl-news-time {
    font-size: 12px;
    color: #6DC5D4;
}

.shl-news-content h3 {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.35;
    color: #026666;
    font-weight: 700;
}

.shl-news-excerpt {
    font-size: 16px;
    line-height: 1.55;
    color: #252834;
}

.shl-news-load-more {
    text-align: center;
    margin-top: 64px;
}

.shl-news-load-more a {
    font-size: 22px;
    color: #63D6E8;
    text-decoration: underline;
}

@media(max-width: 991px) {

    .shl-news-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width: 767px) {

    .shl-news-grid {

        grid-template-columns: 1fr;

    }

}