.chain-line {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid #dbeaf7;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(8, 42, 90, 0.07);
    overflow: hidden;
}

.chain-line div {
    display: flex;
    flex-direction: column;
    padding: 24px 16px 26px;
    min-height: 168px;
    border-right: 1px solid #edf4fb;
}

.chain-line div:last-child {
    border-right: 0;
}

.chain-line i {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #eef7ff;
    color: #0b63c7;
    font-weight: 900;
    font-style: normal;
    margin-bottom: 15px;
}

.chain-line b {
    display: block;
    font-size: 17px;
    color: #0b376f;
    margin-bottom: 8px;
    font-weight: 700;
}

.chain-line p {
    font-size: 14px;
    color: #6d7e91;
    line-height: 1.68;
    margin: 0;
    flex: 1;
}

@media (max-width: 1180px) {
    .chain-line {
        grid-template-columns: repeat(3, 1fr);
    }

    .chain-line div:nth-child(3) {
        border-right: 0;
    }

    .chain-line div:nth-child(n + 4) {
        border-top: 1px solid #edf4fb;
    }
}

@media (max-width: 760px) {
    .chain-line {
        grid-template-columns: 1fr;
    }

    .chain-line div {
        border-right: 0 !important;
        border-top: 1px solid #edf4fb;
    }

    .chain-line div:first-child {
        border-top: 0;
    }
}
