.lzb-new-design-facts {
    padding: 90px 0;
}

.lzb-new-design-facts .sec-head {
    margin-bottom: 50px;
    max-width: 740px;
}

.lzb-new-design-facts .sec-tag {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--fairway);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lzb-new-design-facts .sec-tag:before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--brass);
}

.lzb-new-design-facts h2.big {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--ink);
}

.lzb-new-design-facts h2.big .acc {
    color: var(--fairway);
}

.lzb-new-design-facts .facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lzb-new-design-facts .fact {
    background: #fff;
    border: 1px solid var(--line-dark);
    border-radius: var(--r);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: .3s;
}

.lzb-new-design-facts .fact:hover {
    transform: translateY(-5px);
}

.lzb-new-design-facts .fact .k {
    font-family: 'Bricolage Grotesque';
    font-weight: 800;
    font-size: 24px;
    color: var(--fairway);
    margin-bottom: 6px;
}

.lzb-new-design-facts .fact h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.lzb-new-design-facts .fact p {
    font-size: 13px;
    color: #56685c;
}

@media(max-width:900px) {
    .lzb-new-design-facts {
        padding: 64px 0;
    }

    .lzb-new-design-facts .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lzb-new-design-facts .sec-p {
    margin-top: 16px;
    font-size: 16px;
    color: #46584d;
}