.os-home-features {
    padding: 0 0 82px;
    background: #ffffff;
}

.os-home-features__panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--os-soft-2);
    border: 1px solid rgba(223, 208, 187, 0.32);
}

.os-home-feature {
    position: relative;
    min-height: 285px;
    padding: 38px 34px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.os-home-feature + .os-home-feature::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 0;
    width: 1px;
    background: rgba(199, 184, 165, 0.55);
}

.os-home-feature__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    fill: none;
    stroke: var(--os-blue);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.os-home-feature h3 {
    max-width: 230px;
    margin-bottom: 18px;
    font-family: var(--os-font-light);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.15;
}

.os-home-feature p {
    max-width: 220px;
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 960px) {
    .os-home-features__panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .os-home-feature:nth-child(3)::before {
        display: none;
    }

    .os-home-feature:nth-child(n+3) {
        border-top: 1px solid rgba(199, 184, 165, 0.55);
    }
}

@media (max-width: 560px) {
    .os-home-features {
        padding-bottom: 62px;
    }

    .os-home-features__panel {
        grid-template-columns: 1fr;
    }

    .os-home-feature {
        min-height: 245px;
    }

    .os-home-feature + .os-home-feature::before {
        display: none;
    }

    .os-home-feature:nth-child(n+2) {
        border-top: 1px solid rgba(199, 184, 165, 0.55);
    }
}
