/*
 * Page     : Kundali Match Making
 * File     : css/desktop/pages/pagematchmaking.css
 * Loaded by: page-match-making.php (mobile + desktop)
 *
 * Component CSS (forms, inputs, buttons, info-strip) is handled by
 * np_m_register_forms() / np_d_register_forms() — not repeated here.
 *
 * NOTE: .kundali-section, .np-form-card, .kundali-article-content are also
 * used by page-kundali.php (task 1.16) and will be included there too.
 */

/* ══════════════════════════════════════════
   SECTION WRAPPER
   ══════════════════════════════════════════ */
.kundali-section {
    padding: 40px 0 60px;
    background: var(--np-bg-light, #FFFBF5);
    min-height: 60vh;
}

/* ══════════════════════════════════════════
   FORM CARD
   ══════════════════════════════════════════ */
.np-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(243, 116, 32, 0.1);
}

/* ══════════════════════════════════════════
   PERSON AVATARS (Boy / Girl)
   ══════════════════════════════════════════ */
.mm-person-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    line-height: 1;
}

.boy-avatar {
    background: #e8f0fe;
    box-shadow: 0 4px 14px rgba(74, 144, 217, 0.30);
}

.girl-avatar {
    background: #fce4ec;
    box-shadow: 0 4px 14px rgba(231, 84, 128, 0.30);
}

/* ══════════════════════════════════════════
   ARTICLE CONTENT
   ══════════════════════════════════════════ */
.kundali-article-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--np-saffron, #F37420);
}

.kundali-article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--np-text-dark, #3E2723);
    margin-bottom: 16px;
}

.kundali-article-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--np-text-dark, #3E2723);
    margin: 24px 0 12px;
}

.kundali-article-content p {
    font-size: 15px;
    color: var(--np-text-mid, #6B5B4F);
    line-height: 1.75;
    margin-bottom: 14px;
}

.kundali-article-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.kundali-article-content ul li {
    font-size: 15px;
    color: var(--np-text-mid, #6B5B4F);
    line-height: 1.7;
    margin-bottom: 8px;
}

.kundali-article-content ul li strong {
    color: var(--np-text-dark, #3E2723);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
    .np-form-card {
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .kundali-section {
        padding: 24px 0 40px;
    }

    .np-form-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .mm-person-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .kundali-article-content {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .kundali-article-content h2 {
        font-size: 20px;
    }

    .kundali-article-content h3 {
        font-size: 16px;
    }

    .kundali-article-content p,
    .kundali-article-content ul li {
        font-size: 14px;
    }
}
