@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

.product-more * {
    box-sizing: border-box;
}

.product-more {
    font-family: "Epilogue", sans-serif;
    overflow: hidden;
}

.product-more .product-more__inner {
    padding: 69px 0 96px;
}

.product-more .product-more__wrapper {
    width: 100%;
    max-width: 1032px;
    padding: 0 20px;
    margin: 0 auto;
}

.product-more .product-more__title {
    font-weight: 500;
    line-height: 1.2;
    font-size: 40px;
    color: #22333B;
    text-align: center;
    margin-bottom: 34px;
}

.product-more .product-more__list {
    width: 100%;
    max-width: 991px;
    margin: 0 auto;
}

.product-more .product-more__list .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    padding: 0;
}

.product-more .product-more__list .item {
    position: relative;
    z-index: 2;
    border: 1px solid #426671;
    border-radius: 2px;
    background-color: #fff;
    padding: 25px;
}

.product-more .product-more__list .item-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.product-more .product-more__list .item-icon {
    width: 32px;
    height: 32px;
    margin: -43px auto 11px;
}

.product-more .product-more__list .item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-more .product-more__list .item-text {
    font-weight: 600;
    line-height: 1.2;
    font-size: 22px;
    letter-spacing: -0.03em;
    text-align: center;
    color: #22333B;
}

@media screen and (max-width:991px) {
    .product-more .product-more__inner {
        padding: 57px 0 93px;
    }

    .product-more .product-more__wrapper {
        max-width: 768px;
    }

    .product-more .product-more__title {
        font-size: 35px;
        margin-bottom: 72px;
    }

    .product-more .product-more__list {
        max-width: 100%;
    }

    .product-more .product-more__list .list {
        grid-template-columns: 1fr;
        grid-gap: 48px;
    }
}