/* catalog/selection_detail.css */

/* Страница ручной подборки товаров */

.selection-head {
    margin-bottom: 1.5rem;
}

.selection-head h1 {
    text-align: center;
    text-wrap: balance;
}

.selection-text {
    max-width: 980px;
    color: #58585a;
    font-size: 1rem;
    line-height: 1.65;
}

.selection-text--intro {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.selection-text--bottom {
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.selection-list-body {
    justify-content: center;
}

@media (min-width: 992px) {
    .selection-products-col {
        padding-right: 0;
    }
}

/* Чуть компактнее, чем обычный каталог, и центрируем сетку */
.selection-products-grid {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

/* Если товаров мало, карточки не растягиваются на всю ширину */
.selection-list-card {
    max-width: 330px;
}

@media (max-width: 767.98px) {
    .selection-list-card {
        max-width: none;
    }

    .selection-text {
        font-size: 0.95rem;
    }
}