.news-section {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;   
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.news-image {
    width: 100%;
    height: 200px;
    background: 
        linear-gradient(135deg, #0b3c5dff, #1d6fa500),
        url('../img/bubbles.svg');/*linear-gradient(135deg, #0066ff 0%, #00ccff 100%);*/
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: clip;
    position: relative;
    color: white;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(0, 204, 255, 0.5);
    font-size: 1.5rem;
}

.news-image.news-at {
    background: 
        linear-gradient(135deg, rgb(93, 11, 11), #e00d0d00),
        url('../img/bubbles.svg');    
}

.news-content {
    padding: 2rem;
}

.news-date {
    color: #0066ff;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.news-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: #0066ff;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {

    .news-grid {
        grid-template-columns: 1fr;
    }

}