/* =====================================================
   NSMoms Toolkit CSS  - Version 2
   More aligned with NSMoms visual identity
   ===================================================== */


/* overall page breathing room */

.page {
    padding-bottom: 40px;
}


/* ==========================================
   HEADER
   ========================================== */

.toolkit-header {
    text-align: center;
    background: #7d9fc7;
    padding: 36px;
    border-radius: 18px;
    margin-top: 20px;
    margin-bottom: 24px;
    box-shadow: 0 5px 15px rgba(70, 90, 110, 0.15);
}

.toolkit-small-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.80rem;
    font-weight: 600;
    color: #e7f1fa;
    margin-bottom: 8px;
}

.toolkit-header h1 {
    margin: 0;
    color: white;
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    letter-spacing: 1px;
}

.toolkit-subtitle {
    color: #eef6fc;
    margin-top: 12px;
    font-size: 1.05rem;
    line-height: 1.4;
}


/* ==========================================
   WELCOME SECTION
   ========================================== */

.welcome-section {
    background: #e7f2fc;
    border-left: 6px solid #6f96c5;
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(70, 90, 110, 0.08);
}

.welcome-section h2 {
    margin-top: 0;
   color: #3f73a8;
    font-size: 1.6rem;
}

.welcome-section p {
    line-height: 1.65;
    color: #444;
}


/* ==========================================
   GUIDANCE SECTION
   ========================================== */

.guidance-section {
    background: white;
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 24px;
    box-shadow: 0 3px 10px rgba(70, 90, 110, 0.08);
}

.guidance-section h2 {
    margin-top: 0;
    color: #3f73a8;
}

.guidance-section p {
    line-height: 1.6;
}


/* disclaimer box */

.disclaimer-box {
    background: #f3f8fc;
    border-left: 5px solid #9bb4cb;
    padding: 16px;
    margin-top: 18px;
    border-radius: 10px;
    line-height: 1.6;
    color: #555;
}


/* ==========================================
   TOOLKIT CARDS
   ========================================== */

.toolkit-card {
    background: #f4f9fd;
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid #d4e0ec;
    box-shadow: 0 2px 8px rgba(70, 90, 110, 0.06);
}


/* alternate cards */

.toolkit-card:nth-child(even) {
    background: #e9f3fc;
}


/* important card */

.important-card {
    border-left: 6px solid #7d95b0;
}


/* card headings */

.toolkit-card h2 {
    margin-top: 0;
    color: #3f73a8;
    font-size: 1.4rem;
}


/* paragraphs */

.toolkit-card p {
    line-height: 1.65;
    color: #444;
}


/* coming soon text */

.coming-soon {
    color: #667;
    font-style: italic;
    margin-top: 14px;
}


/* ==========================================
   BUTTONS
   ========================================== */

.toolkit-card a {
    display: inline-block;
    margin-top: 16px;
    padding: 9px 18px;
    background: #5f8fc7;
    color: white;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.toolkit-card a:hover {
    background: #4d7eb6;
}


/* ==========================================
   FOOTER
   ========================================== */

.toolkit-footer {
    text-align: center;
    margin-top: 36px;
    margin-bottom: 20px;
}

.toolkit-footer a {
    text-decoration: none;
    color: #3f73a8;
    font-weight: 600;
}

.toolkit-footer a:hover {
    text-decoration: underline;
}

.toolkit-footer p {
    color: #666;
}


/* ==========================================
   MOBILE IMPROVEMENTS
   ========================================== */

@media (max-width: 600px) {

    .toolkit-header {
        padding: 26px;
    }

    .toolkit-card {
        padding: 20px;
    }

    .welcome-section,
    .guidance-section {
        padding: 20px;
    }

}