h-icon-grid{
    display: block;
    line-height: 1.1;
}


h-icon-grid .h-icon-grid__header{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 60px;
}

h-icon-grid .h-icon-grid__header-title{
    color: #010101;
    font-size: 56px;
    font-weight: 500;
    font-family: var(--font-akzidenz-grotesk-super);
    text-transform: uppercase;
}

h-icon-grid .h-icon-grid__header-content{
    color: #010101;
    font-size: 30px;
    font-weight: 500;
    font-family: var(--font-gotham-medium);
}

h-icon-grid .h-icon-grid__grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

h-icon-grid .h-icon-grid__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

h-icon-grid .h-icon-grid__item-icon{
    width: var(--icon-size, 100px);
    height: var(--icon-size, 100px);
    margin-bottom: 40px;
}
h-icon-grid .h-icon-grid__item-title{
    color: #010101;
    font-size: var(--item-title-font-size, 26px);
    font-weight: 700;
    font-family: var(--font-gotham-medium);
    margin-bottom: 10px;
}

h-icon-grid .h-icon-grid__item-content{
    color: #010101;
    font-size: var(--item-content-font-size, 18px);
    font-weight: 500;
    font-family: var(--font-gotham-medium);
}
@media(max-width:959px){
    h-icon-grid .h-icon-grid__item-icon{
        width: var(--icon-size-mobile, 60px);
        height: var(--icon-size-mobile, 60px);
        margin-bottom: 20px;
    }

    h-icon-grid .h-icon-grid__header-title{
        font-size: 6.6667vw;
    }

    h-icon-grid .h-icon-grid__header-content{
        font-size: 3.7333vw;
    }
    h-icon-grid .h-icon-grid__grid{
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
    h-icon-grid .h-icon-grid__header{
        margin-bottom: 12px;
        gap: 10px;
    }
    h-icon-grid .h-icon-grid__item-title{
        font-size: var(--item-title-font-size-mobile, 25px);
    }
    h-icon-grid .h-icon-grid__item-content{
        font-size: var(--item-content-font-size-mobile, 18px);
    }
}
