.icop-process,
.icop-process * {
    box-sizing: border-box;
}

.icop-process {
    width: 100%;
    background: #f7f4ee;
    color: #171717;
    overflow: hidden;
}

.icop-process__inner {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 34px 24px 38px;
}

.icop-process__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 38px;
}

.icop-process__steps::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 8.5%;
    right: 8.5%;
    height: 1px;
    background: #b89556;
    z-index: 0;
}

.icop-process__step {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
}

.icop-process__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 18px;
    border: 1px solid rgba(116, 83, 29, .28);
    border-radius: 50%;
    background: #c9aa68;
    box-shadow: 0 0 0 6px #f7f4ee;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1;
}

.icop-process__step-title {
    min-height: 48px;
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
}

.icop-process__step-text {
    max-width: 230px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .icop-process__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 24px;
    }

    .icop-process__steps::before {
        display: none;
    }

    .icop-process__step-title {
        min-height: 0;
    }
}

@media (max-width: 560px) {
    .icop-process__inner {
        padding: 30px 20px;
    }

    .icop-process__steps {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .icop-process__step-title {
        font-size: 17px;
    }

    .icop-process__step-text {
        font-size: 13px;
    }
}
