#container {
    width: 90%; 
    max-width: 1400px; 
    margin: 0 auto !important;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 5px;
}

.news-article {
    background: linear-gradient(to bottom, rgba(10, 75, 73, 0.9), rgba(0,0,0,0.3));
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.article-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-article:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
}

.article-category {
    display: inline-block;
    background: rgba(37, 176, 102, 0.2);
    color: #acbcc6;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.article-title {
    font-size: 1.2rem;
    color: #d5ded3;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-description {
    color: #c4d3c9;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.article-date {
    color: #95a5a6;
    font-size: 0.9rem;
}

.read-more {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    background-color: transparent;
    color: #798d80; 
    border: 1px solid #526359;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.read-more:hover {
    background-color: rgba(37, 176, 102, 0.4);
    color: #d8e3df;
}

.read-more i {
    margin-left: 8px;
    font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .article-content {
        padding: 20px;
    }
}