/* F&K — Product Families */

/* =========================================
   PRODUCT FAMILIES
========================================= */

.fk-product-families {
    padding:86px 0 96px;
    background:#f2f2f2;
    color:#111;
}

.fk-product-families .fk-container {
    max-width:1180px;
    margin:auto;
    padding:0 22px;
}

.fk-section-header {
    max-width:720px;
}

.fk-section-header h2 {
    position:relative;
    margin:0 0 20px;
    padding-bottom:18px;
    color:#111;
    font-size:clamp(32px,4vw,46px);
    line-height:1.08;
    letter-spacing:-.035em;
    font-weight:800;
}

.fk-section-header h2::after {
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:44px;
    height:3px;
    background:var(--fk-red);
}

.fk-section-header p {
    max-width:650px;
    margin:0;
    color:#626262;
    font-size:16px;
    line-height:1.7;
}

.fk-family-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:32px;
    margin-top:50px;
}

@media(max-width:1100px) {

    .fk-family-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

@media(max-width:700px) {

    .fk-product-families {
        padding:60px 0 70px;
    }

    .fk-family-grid {
        grid-template-columns:1fr;
        gap:26px;
        margin-top:38px;
    }

}
