.news-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    padding-bottom: 40px !important;
}

.news-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 350px;
}

.news-image-container {
    height: 350px;
    margin-bottom: 15px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image {
    transform: scale(1.05);
}

.news-content {
    color: white;
}

.news-date {
    color: rgba(255,255,255,0.95);
    margin-bottom: 10px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    font-weight: 200;
    letter-spacing: 0.5px;
}

.news-item-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    color: white;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: #222;
    background: rgba(255,255,255,0.85);
    opacity: 0.88;
    padding: 8px 22px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    margin-top: 15px;
}

.news-link:hover {
    background: #fff;
    opacity: 1;
    color: #b71c1c;
}

@media (min-width: 769px) {
    .news-item {
    align-items: flex-start;
    max-width: 100%;
}
}

@media (min-width: 992px) {
    .news-grid {
        justify-content: space-between;
        gap: 10px;
    }

    .news-item {
        width: 31%;
    }
}