#site-products {
    .wrap {
        display: grid;
        gap: 40px;
    }
}

.section-title h2 {
    font-size: 2.2rem;
    color: #000;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    width: fit-content;

    &.light {
        color: #fff;
    }

    &:after {
        content: '';
        width: 30%;
        height: 3px;
        background: linear-gradient(90deg, transparent, #c10119, transparent);
        margin-top: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}