.show-article {
    padding: 5% 10%;
}

.show-article h1 {
    font-weight: 600;
}

.articles {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    overflow-x: auto;
    justify-items: center;
}

.articles .card {
    height: 400px;
    width: 300px;
    min-width: 300px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.articles .card img {
    height: 100px;
    width: auto;
    object-fit: cover;
}

.articles .card .card-body {
    padding: 10px;
    height: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.articles .card .card-title {
    font-weight: 600;
}

.articles .card .card-text {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    max-height: 200px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
}