/* ============================================================
   NearU - Why NearU Section
   Tokens from theme-tokens.css; panel shell + tints from components.css
   ============================================================ */

/* ---------- Heading ---------- */
.nearu-why-head { margin-bottom: 34px; }
.nearu-why-title {
    color: var(--nearu-ink);
    font-weight: var(--fw-bold);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.25;
    margin: 0;
}

.nearu-why-item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 32px 24px;
    height: 100%;

    transition: all .35s ease;
    cursor: pointer;
}

.nearu-why-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--brand-orange);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* ---------- Item ---------- */
.nearu-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.nearu-why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.nearu-why-item-title {
    font-size: 16px;
    font-weight: var(--fw-bold);
    color: var(--nearu-ink);
    margin: 0 0 8px;
    line-height: 1.3;
}
.nearu-why-item-text {
    font-size: 14px;
    color: var(--nearu-muted);
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991.98px) {
    .nearu-why-panel { padding: 36px 26px 32px; }
}

@media (max-width: 575.98px) {
    .nearu-why-panel { padding: 30px 18px 26px; }
    .nearu-why-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    .nearu-why-item-title { font-size: 15px; }
}
