.card-neo-service {
    min-width: 0;
    min-height: 200px;
    padding: 22px 18px 16px;
    border-radius: 30px;
    border: 1px solid rgba(171, 199, 241, 0.55);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    gap: 12px;
}

.card-neo-service--common {
    justify-content: flex-start;
}

.card-neo-service__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.card-neo-service__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-neo-service__title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center !important;
    color: var(--main-blue-dark__80);
    max-width: 100%;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-neo-service__desc {
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.card-neo-service__desc--one-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-neo-service__desc--multi {
    line-height: 1.1rem;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media (max-width: 1200px) {
    .card-neo-service {
        min-height: 210px;
        border-radius: 26px;
    }
}

@media (max-width: 768px) {
    .card-neo-service {
        min-height: 150px;
        padding: 18px 16px 14px;
        border-radius: 22px;
    }

    .card-neo-service__icon-wrap {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }
}

.volunteers-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .volunteers-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .volunteers-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.pr-steps--volunteer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    max-width: 420px;
    margin: 0;
}

.pr-step-card--volunteer {
    position: relative;
    width: 100% !important;
    max-width: 380px;
    min-width: 320px;
    min-height: 150px;
    padding: 34px 36px 27px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    overflow: visible;
}

.pr-step-card--volunteer .pr-step-card__badge {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: #f3f3f6;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-step-card--volunteer .pr-step-card__badge::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.95);
}

.pr-step-card--volunteer .pr-step-card__badge-inner {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--main-blue);
    letter-spacing: 0.02em;
}

.pr-step-card__text-volunteer {
    line-height: 1.2;
}