.article-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    width: 54vw;
}

.article-box {
    width: 15vw;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
}

.article-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.article-img {
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.article-link {
    text-decoration: none;
}

.article-title {
    font-size: 1em;
    margin: 10px 0;
    color: #333;
}

.article-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
    .article-container {
        width: 90vw;
        flex-direction: column;
        align-items: center;
    }

    .article-box {
        width: 80vw;
        margin-bottom: 20px;
    }

    .article-img {
        height: 150px;
    }

    .article-title,
    .article-description {
        font-size: 0.9em;
    }
}