.hr-process {
    padding: 100px 0;
    background: #f8f6f5;
}

.hr-process .rp-section-header {
    margin-bottom: 50px;
}

.hr-process__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 760px;
    margin-bottom: 44px;
}

.hr-process__label {
    color: #27272c;
    font-family: var(--font-aeonik);
    font-size: 14px;
    letter-spacing: 0.56px;
    line-height: 1;
    text-transform: uppercase;
}

.hr-process__title {
    margin: 0;
    color: #27272c;
    font-family: var(--font-aeonik);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    text-wrap: pretty;
}

.hr-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.hr-process__card {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 28px;
    border: 1px solid #ece7e8;
    border-radius: 18px;
    background: #fff;
}

.hr-process__number {
    margin-bottom: auto;
    color: #f25d21;
    font-family: var(--font-aeonik);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
    font-variant-numeric: tabular-nums;
}

.hr-process__card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 48px;
}

.hr-process__card-title {
    margin: 0;
    color: #27272c;
    font-family: var(--font-aeonik);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    text-wrap: pretty;
}

.hr-process__description {
    margin: 0;
    color: rgba(13, 9, 10, 0.72);
    font-family: var(--font-inter);
    font-size: 15px;
    line-height: 1.7;
    text-wrap: pretty;
}

@media (max-width: 1100px) {
    .hr-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hr-process {
        padding: 60px 0;
    }

    .hr-process__title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hr-process__grid {
        grid-template-columns: 1fr;
    }

    .hr-process__card {
        min-height: auto;
    }
}
