/* Put custom css rules here */

.card-list .card {
    display: inline-block;
    width: 260px;
    margin-right: 5px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    margin-top: 10px;
    padding-bottom: 10px;
}

.card-list .card:nth-child(3) {
    margin-right: 0;
}

.card img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.gallery-list {
    display: flex;
    flex-direction: row;
    gap: 1%;
    margin-bottom: 20px;
}

.gallery-list__item {
    width: 18.9%;
}

@media screen and (max-width: 768px) {
    .gallery-list {
        flex-direction: column;
    }

    .gallery-list__item {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 999px) {
    .card-list .card {
        width: 100%;
    }
}