.doc-checks__advantage {
    background: #F3F7FB url('/assets/frontend/images/doc-checks/doc-checks-advantage-bg.svg') center / cover;
}

.doc-checks__advantage-list {
    display: grid;
    grid-template:  repeat(4, auto) / auto;
    grid-gap: 40px;
    padding: 32px 0;
}

@media (min-width: 576px) {
    .doc-checks__advantage-list {
        grid-template:  repeat(2, auto) / repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .doc-checks__advantage-list {
        grid-template:  repeat(1, auto) / repeat(4, 1fr);
    }
}

.doc-checks__advantage-item {
    position: relative;
    padding: 0 0 22px;
}

.doc-checks__advantage-item:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 24px;
    height: 2px;
    background: #E21438;
}

@media (max-width: 575px) {
    .doc-checks__advantage-item:last-child {
        padding-bottom: 0;
    }

    .doc-checks__advantage-item:last-child:before {
        display: none;
    }
}

.doc-checks__advantage-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 8px;
}

.doc-checks__advantage-text {
    font-size: 14px;
    line-height: 1.3;
    color: #676E74;
}
