.block-catalog {
    margin-bottom: 80px;
    .catalog-card {
        display: flex;
        background: #F5F7F9;
        border-radius: 24px;
        overflow: hidden;
        height: 100%;
    }

    .catalog-title {
        font-weight: 400;
        font-size: 48px;
        text-transform: uppercase;
        color: #212121;
        margin-bottom: 32px;
    }

    .catalog-card:hover .catalog-card__products-list {
        height: 100%;
    }

    .catalog-card:hover .catalog-card__category-title a {
        text-decoration: underline;
        color: #3997C6;
    }

    .catalog-card__category {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        img {
            max-width: 100%;
            height: 398px;
            object-fit: contain;
        }
    }

    .catalog-card__category-title {
        padding: 24px 32px;
        background: rgba(218, 242, 255, 0.2);
        box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(8px);
        a {
            font-weight: 400;
            font-size: 36px;
            line-height: 47px;
            text-transform: uppercase;
            color: #212121;
            text-decoration: none;
            transition: 0.3s all;
        }
    }

    .catalog-card__products {
        flex: 1;
        background-size: cover;
        background-position: center;
    }

    .catalog-card__products-list {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f5f7f9cc;
        padding: 0 24px;
        overflow: hidden;
        height: 0;
        transition: 0.8s all;
        backdrop-filter: blur(3px);

        ul {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 0;
            padding: 0;
            list-style: none;
            counter-reset: catalog-product;
        }

        li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            counter-increment: catalog-product;

            &::before {
                content: counter(catalog-product, decimal-leading-zero);
                flex-shrink: 0;
                min-width: 1.4ch;
                font-weight: 300;
                font-size: 48px;
                line-height: 1;
                color: #175E82;
            }
        }

        a {
            text-decoration: none;
            font-weight: 500;
            font-size: 1.2rem;
            line-height: 1.25;
            color: #175E82;

            &:hover {
                text-decoration: underline;
            }
        }
    }

    @media (max-width: 768px) {
        .catalog-title {
            font-size: calc(1.325rem + .9vw);
            margin-bottom: 17px;
        }

        .catalog-card__category img {
            display: none;
        }

        .catalog-card__products-list {
            height: auto;
            justify-content: flex-start;
            padding: 0;
        }

        .catalog-card__category-title {
            padding: 0;
        }

        .catalog-card__category-title a {
            font-size: 22px;
            line-height: normal;
        }

        .catalog-card {
            padding: 20px;
            flex-direction: column;
        }

        .catalog-card__products {
            background: none !important;
        }

        .catalog-card__category {
            align-items: flex-start;
            width: 100%;
            margin-bottom: 12px;
        }

        .catalog-card__products-list li {
            align-items: center;
        }

        .catalog-card__products-list li::before {
            font-size: 40px;
            min-width: 2.25ch;
        }

        .catalog-card__products-list a {
            font-size: 16px;
            line-height: 1.3;
        }
    }
}