.product-features {
    padding: var(--default-section-margin) 0;
}

.action-layer + .product-features {
    padding-top: 0;
}


.product-features .section-title {
    margin-bottom: 80px;
}

.product-features__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.product-features.-thee-columns .product-features__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

.product-features-card {
    padding: 40px;
    border-radius: 16px;
    background: var(--shark-shark-550, #1A1B21);
}

.product-features-card .icon {
    width: 80px;
    height: 80px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 80px;
}

.product-features.-thee-columns .product-features-card .icon {
    margin-bottom: 40px;
}


.product-features-card .icon img {
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 32px;
}

.product-features-card .title {
    margin-bottom: 16px;
}

.product-features-card .text {
    color: var(--shark-shark-250, #A3A5A6);
}

@media screen and (max-width: 1100px) {

    .product-features .section-title {
        margin-bottom: 40px;
    }

    .product-features__wrapper, .product-features.-thee-columns .product-features__wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-features-card {
        padding: 24px;
    }

    .product-features-card .icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin-bottom: 40px;
    }


    .product-features-card .icon img {
        max-width: 24px;
    }

}