/* News Grid */
.news-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.news-item {
    display: flex;
    align-items: flex-start;
}

.news-item.left img {
    width: 35%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-right: 30px;
}

.news-item.right img {
    width: 35%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-left: 30px;
}

.news-content {
    flex: 1;
}

.news-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.news-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

.news-content a {
    display: inline-block;
    margin-top: auto;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    color: #999;
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 4px;
}

.news-content a:hover {
    color: #0078b3;
    background-color: #e0e0e0;
}

/* Load More Button */
.load-more-btn {
    display: block;
    margin: 40px auto;
    padding: 10px 20px;
    font-size: 1rem;
    width: fit-content;
    background-color: #f5f5f5;
    color: #999;
    border: 1px solid #ddd;
}

.load-more-btn:hover {
    background-color: #e0e0e0;
    color: #0078b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }

    .news-item.left img,
    .news-item.right img {
        width: 100%;
        margin: 0 0 20px;
    }
}