.latest-news-title {
    color: var(--orange);
    margin-bottom: 15px;
}

.latest-news-desc {
    font-weight: 300;
}

.news-card-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .news-card-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 620px) and (max-width: 1023px) {
    .news-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 619px) {
    .news-card-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.news-card {
    text-decoration: none;
    color: black;
    width: 100%;
    border-radius: 30px;
}

.news-cards-container {
    margin-bottom: 50px;
}

.news-card-img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .news-card-img, .news-card-desc {
        margin-bottom: 0 !important;
    }
}
.news-card-title {
    margin-inline-end: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: black;
}

.news-card-desc {
    font-weight: 400;
    color: #777777;
}

.puplisher {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 500;
    color: black;
}

.puplisher-img {
    width: 25px;
    height: 26px;
    border-radius: 50%;
}