/* =========================================
   sleep-hygiene — Article-specific overrides
   Shared base styles: ../shared/blog-article.css

   RULES:
   · Only put styles HERE that differ from the shared defaults.
   · Do NOT duplicate base styles from blog-article.css.
   · Do NOT add an inline <style> for FAQ — the shared CSS handles it.
   ========================================= */

/* =========================================
   Hero image
   ========================================= */
.part1-img {
    width: 100%;
    border-radius: 24px;
    margin-top: 32px;
    object-fit: cover;
    object-position: center 40%;
    max-height: 480px;
    display: block;
    cursor: pointer;
}

/* =========================================
   Habit label styling (bold lever labels in H2-5)
   ========================================= */
.sh-label {
    color: #2A2A2A;
    font-weight: 600;
    font-size: 17px;
    display: block;
    margin-bottom: 4px;
}

/* =========================================
   Conclusion section
   ========================================= */
.part9-conclusion {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* =========================================
   FAQ question text — override shared #191919
   (shared sets color to #191919 which disappears on dark bg)
   ========================================= */
.faq-q-text {
    color: #FFFFFF;
}

/* =========================================
   More articles section
   ========================================= */
.part11-title {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    width: 100%;
}

.part11-cards {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

/* =========================================
   Mobile overrides — article-specific
   ========================================= */
@media (max-width: 768px) {

    .part1-img {
        border-radius: 16px;
        margin-top: 20px;
        max-height: 240px;
        object-position: center 40%;
    }

    .sh-label {
        font-size: 16px;
    }

    .part11-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .part11-cards {
        flex-direction: column;
        gap: 12px;
    }

}
