.neo-pill {
    display: flex;
align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--main-blue-secondary__50);
    box-sizing: border-box;
    min-width: 0;
}

.neo-pill--click {
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.neo-pill--click:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 35, 95, .10);
    border-color: var(--main-blue-secondary);
}

.neo-pill__icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background-color: var(--main-blue-secondary__50);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}

.neo-pill__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.neo-pill__title {
    font-weight: 800;
    color: var(--main-blue);
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.neo-pill__subtitle {
    font-weight: 800;
    color: var(--main-blue-dark__80);
    line-height: 1.1;
    max-width: 186px;
}


/* ====== ИКОНКИ (модификаторы) ====== */

.neo-pill__icon--loc {
    background-image: url('../../../../images/ico/location.svg');
}

.neo-pill__icon--phone {
    background-image: url('../../../../images/ico/phone.svg');
}

.neo-pill__icon--clock {
    background-image: url('../../../../images/ico/clock.svg');
}

.neo-pill__icon--email {
    background-image: url('../../../../images/ico/mail.svg');
}

/* мобильные правки */

@media (max-width: 768px) {
    .neo-pill {
        padding: 12px 14px;
        border-radius: 20px;
    }
    .neo-pill__icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }
}

@media (max-width: 1200px) {
    .neo-pill__title {
        font-size: 1.25rem;
    }
    .neo-pill__subtitle {
        font-size: 1rem;
    }
}