.catalog-page__content {
    min-width: 0;
}

.catalog-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 34px;
}

.catalog-category-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    padding: 20px 22px;
    color: #20262d;
    background: #fff;
    border: 1px solid rgba(31, 43, 54, .12);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(31, 43, 54, .06);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.catalog-category-card__image {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    margin-right: 16px;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f4f5;
}

.catalog-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-category-card__body {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: column;
}

.catalog-category-card:hover,
.catalog-category-card:focus {
    color: #20262d;
    border-color: rgba(31, 43, 54, .28);
    box-shadow: 0 12px 30px rgba(31, 43, 54, .11);
    transform: translateY(-2px);
    text-decoration: none;
}

.catalog-category-card__name {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.catalog-category-card__description {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    color: #68717a;
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.catalog-category-card__arrow {
    flex: 0 0 auto;
    margin-left: 16px;
    font-size: 24px;
    line-height: 1;
    opacity: .55;
}

.catalog-page__text {
    margin-top: 20px;
}

.catalog-category-lead {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin: 0 0 32px;
}

.catalog-category-lead__image {
    flex: 0 0 240px;
    width: 240px;
    max-height: 240px;
    object-fit: cover;
    border-radius: 10px;
}

.catalog-category-lead__description {
    margin: 0;
    color: #4e5862;
    font-size: 17px;
    line-height: 1.65;
}

@media (max-width: 991px) {
    .catalog-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .catalog-category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 26px;
    }

    .catalog-category-card {
        min-height: 72px;
        padding: 16px 18px;
    }

    .catalog-category-card__name {
        font-size: 16px;
    }

    .catalog-category-card__image {
        flex-basis: 64px;
        width: 64px;
        height: 64px;
        margin-right: 12px;
    }

    .catalog-category-lead {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 26px;
    }

    .catalog-category-lead__image {
        width: 100%;
        max-height: 320px;
    }
}
