@charset "UTF-8";

.page-category-elera {
    background-color: #fff;
}

.h2__main {
    margin-bottom: 40px;
    padding-left: 20px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    border-left: 4px solid #999;
}
@media (min-width: 769px) {
    .h2__main {
        font-size: 3.2rem;
        border-width: 6px;
    }
}

.card {
    display: grid;
    gap: 40px;
}
.card__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card__item-title {
    font-weight: bold;
    line-height: 1.5;
}
.card__item-themb {
    display: block;
    text-align: center;
}
.card__item-themb img {
    max-width: 100%;
    object-fit: contain
}
@media (min-width: 769px) {
    .card__item {
        flex-direction: row;
    }
}

.card.card--3col .card__item {
    flex-direction: row;
}
.card.card--3col .card__item-themb img {
    max-width: 80px;
}
@media (min-width: 769px) {
    .card.card--3col {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .card.card--3col .card__item {
        flex-direction: column;
    }
    .card.card--3col .card__item-themb img {
        max-width: 120px;
    }
}