.img-index-article {
    max-width: 100%;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.img-article {
    max-width: 100%;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
    .img-index-article {
        height: 200px;
    }

    .img-article {
        height: 300px;
    }
}