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

/* ---------- Left photo ---------- */
.nearu-exists-photo {
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 100%;
    min-height: 220px;
}
.nearu-exists-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	height: 345px;
}
.nearu-exists-photo.is-empty {
    background: linear-gradient(135deg, #f7d9cf, #f3c6b5);
    min-height: 260px;
}

/* ---------- Middle narrative ---------- */
.nearu-exists-title {
    color: var(--nearu-ink);
    font-weight: var(--fw-bold);
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    line-height: 1.25;
    margin: 0 0 16px;
}
.nearu-exists-lead { margin: 0 0 16px; }
.nearu-exists-lead span {
    display: block;
    color: var(--nearu-ink);
    font-weight: var(--fw-bold);
    font-size: 17px;
    line-height: 1.5;
}
.nearu-exists-text {
    color: var(--nearu-muted);
    font-size: 14px;
    margin: 0 0 16px;
    line-height: 1.7;
    font-weight: 600;
}
.nearu-exists-close {
    color: var(--nearu-primary);
    font-weight: var(--fw-bold);
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
}

/* ---------- FAQ ---------- */
.nearu-faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
    flex-wrap: wrap;
}
.nearu-faq-title {
    color: var(--nearu-ink);
    font-weight: var(--fw-bold);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    margin: 0;
}
.nearu-faq-all {
    color: var(--nearu-primary);
    font-weight: var(--fw-bold);
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: gap .2s ease;
}
.nearu-faq-all:hover { gap: 10px; color: var(--nearu-primary); }

/* ---------- Accordion overrides ---------- */
.nearu-accordion .nearu-accordion-item {
    border: 1px solid var(--nearu-border);
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}
.nearu-accordion .nearu-accordion-btn {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--nearu-ink);
    padding: 16px 18px;
    background: #fff;
    box-shadow: none;
}
.nearu-accordion .nearu-accordion-btn:not(.collapsed) {
    color: var(--nearu-primary);
    background: #fff;
    box-shadow: none;
}
.nearu-accordion .nearu-accordion-btn:focus {
    box-shadow: none;
    border-color: transparent;
}
.nearu-accordion .nearu-accordion-btn::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
}
.nearu-accordion-body {
    color: var(--nearu-muted);
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 100%;
    margin: 10px 0 18px;
    font-weight: 600;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991.98px) {
    .nearu-exists-panel { padding: 34px 24px; }
    .nearu-exists-photo { min-height: 240px; margin-bottom: 6px; }
}

@media (max-width: 575.98px) {
    .nearu-exists-panel { padding: 28px 18px; }
    .nearu-exists-lead span { font-size: 16px; }
    .nearu-faq-head { flex-direction: row; }
}
.mb-50{
	margin-bottom: 52px;
}