.latest-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    font-family: Arial, sans-serif;
}

.article-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.article-item:hover {
    transform: translateY(-4px);
}

.article-item img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.article-item h3 {
    margin: 0.8rem 0 0.4rem;
    font-size: 1.1rem;
    color: #333;
}

.article-item h3 a {
    text-decoration: none;
    color: inherit;
}

.article-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.article-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}
