.news-list {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.news-content p.link-more {
    margin-top:30px;
}

.news-image {
    width: 100px;
    aspect-ratio: 1;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-content time {
    font-size: 0.75rem;
    opacity: 0.6;
}

.news-content h2 {
    font-size: 1.1rem;
    margin: 4px 0 8px;
}

.news-excerpt {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-button {
    margin-top: auto;
}


/* Desktop */
@media (min-width: 701px) {
    
    .news-list {
        padding: 0;
    }
    
    .news-item {
        grid-template-columns: 250px 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .news-image {
        width: 250px;
    }

    .news-content time {
        font-size: 0.85rem;
    }

    .news-content h2 {
        font-size: 1.5rem;
    }

    .news-excerpt {
        font-size: 1rem;
    }
}