/* Latest News Section Styles */
.news-section-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.news-main-title {
    font-size: 28px;
    margin: 0;
    color: #333;
    position: relative;
}

.news-main-title::after {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #8cc63f;
}

.view-all-news {
    color: #8cc63f;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-thumbnail {
    position: relative;
    height: 220px;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-cat-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8cc63f;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: bold;
}

.news-content {
    padding: 20px;
}

.news-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.news-title {
    font-size: 19px;
    margin: 0 0 12px;
    line-height: 1.4;
}

.news-title a {
    color: #222;
    text-decoration: none;
}

.news-title a:hover { color: #8cc63f; }

.news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .news-grid { grid-template-columns: 1fr; }
}