.articles-section {
    background-color: #333;
    color: #f8f9fa;
    padding: 80px 0 60px 0;
    text-align: center;
    display: none;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.article-card {
    background-color: transparent;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.article-card h4 {
    font-size: 0.9em;
    font-weight: bold;
    margin: 15px 0 5px;
    color: #bebebe;
    text-align: left;
}

.article-card p {
    font-size: 25px;
    margin: 10px 0;
    color: #f8f9fa;
    text-align: left;
}