/* =========================================
   waking-up-middle-of-night — 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 55%;
    max-height: 480px;
    display: block;
    cursor: pointer;
}

/* =========================================
   Inline body images
   ========================================= */
.blog-inline-img {
    width: 100%;
    border-radius: 16px;
    margin: 24px 0;
    object-fit: contain;
    display: block;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.03);
}

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

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

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

    .blog-inline-img {
        border-radius: 12px;
        margin: 16px 0;
    }

}
