.latest-news-section {
    padding: 80px 0;
    background: #f8f9fb;
}

/* HEADER */
.news-subtitle {
    color: #e11d2e;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-title {
    font-size: 34px;
    font-weight: 700;
    margin-top: 5px;
}

/* CARD */
.news-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: transform .3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.news-image {
    position: relative;
}

.news-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e11d2e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

/* CONTENT */
.news-content {
    /* padding: 20px;
    max-height: 250px;
    height: 240px; */
    padding: 20px;
    max-height: 154px;
}

.news-date {
    font-size: 13px;
    color: #777;
}

.news-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 15px;
    line-height: 1.4;
}

/* LINK */
.news-link {
    color: #e11d2e;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}


/* MOBILE */
@media (max-width: 768px) {
    .news-title {
        font-size: 26px;
    }

    .news-image img {
        height: 200px;
    }
}

.sec-heading.h7-section-heading.latest-news {
    justify-content: space-between;
    display: flex;
    height: 50px;
}

.text-btn::before {
    background-color: transparent !important;
}

.news-link {
    padding: 10% 6%;
}

img {
    object-position: center;
    object-fit: cover;
}