.author-articles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.author-article {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.article-thumbnail img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.author-article h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.article-date {
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .author-articles {
        justify-content: center;
    }
    .author-article {
        max-width: 100%;
    }
}
