.section-product-how-it-works.section-grey {
    background: #F7F8FA;
}

.section-product-how-it-works.section-white {
    background: #FFFFFF;
}

.hit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.hit-wrapper .hit-heading .title {
    font-size: 38px;
}

.hit-tiles {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 50px;
    text-align: center;
}

.hit-tiles.has-column-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hit-tiles > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hit-tiles .icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hit-tiles .icon img {
    width: auto;
    height: 100%;
}

.hit-tiles .icon.small img {
    width: 70px;
    height: auto;
}

.hit-tiles .icon.medium img {
    width: 100px;
    height: auto;
}

.hit-tiles .button {
    padding: 12px 32px;
    justify-content: center;
}

.hit-tiles .button span {
    font-size: 14px;
}

.hit-tiles p {
    margin: 0;
    padding: 0;
}

.hit-tiles .title {
    font-size: 22px;
    font-weight: 600;
}

.hit-tiles .title span {
    font-weight: 300;
    display: block;
    line-height: 1.4;
}

.hit-tiles .title strong {
    font-weight: 700;
    color: #AD3275;
}

.hit-tiles .description {
    font-size: 16px;
    font-weight: 300;
}

@media (max-width: 992px) {
    .hit-wrapper {
        gap: 30px;
    }

    .hit-tiles,
    .hit-tiles.has-column-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hit-tiles,
    .hit-tiles.has-column-5 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .hit-tiles .button {
        width: 100%;
        justify-content: center;
    }
}
