/**
 * Категории впечатлений: rank_list.tpl (.catalog-categories + .main-ranks на главной).
 * В общий style-bundle не входит; подключение через RankListAssets.
 */

 section.main-ranks {
    margin: 30px 0;
}

@media only screen and (max-width: 990px) {
    .main-ranks {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .main-ranks {
        margin-top: 25px;
    }
}

.main-ranks.no-main-ranks {
    display: none !important;
}

section.error-ranks {
    margin: 40px 0;
}

.catalog-categories {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.catalog-categories .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.catalog-categories .swiper-scrollbar {
    position: relative !important;
    margin-top: 5px !important;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.catalog-categories .swiper-scrollbar-drag {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.catalog-categories .swiper-slide {
    width: auto !important;
    height: auto;
    flex-shrink: 0;
}

.catalog-category-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
}

.catalog-category-image {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
    background-size: cover;
    background-position: center;
}

.catalog-category-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-category-name {
    position: absolute;
    text-align: left;
    bottom: 20px;
    color: #222729;
    font-family: Mulish, sans-serif;
    font-size: 16px;
    font-weight: 700;
    left: 15px;
    max-width: calc(100% - 30px);
}

.catalog-category-name span {
    background: #fff;
    border-radius: 5px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
    padding: 2px 6px;
}

@media (max-width: 431px) {
    .catalog-category-image {
        width: 135px;
        height: 135px;
    }

    .catalog-category-name {
        position: absolute;
        text-align: start;
        bottom: 20px;
        color: #222729;
        font-family: Mulish, sans-serif;
        font-size: 14px;
        font-weight: 700;
        left: 15px;
        max-width: calc(100% - 30px);
    }

    .catalog-category-name span {
        padding: 1px 6px;
    }
}