/* =========================================
   vagus-nerve-reset-for-sleep - Article-specific overrides
   Shared base styles: ../shared/blog-article.css
   Only differences from shared styles belong here.
   Overrides retain the latest article's long title, conclusion,
   FAQ and related-card layout, with a crop for the reading photo.
   ========================================= */

@media (min-width: 769px) {
    body:has(.blog-detail-page) .blog-detail-page .part1-title {
        width: 1050px !important;
        max-width: 1050px !important;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

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

.part9-conclusion,
.part11 {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.faq-q-text {
    color: #FFFFFF;
}

.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;
}

@media (max-width: 768px) {
    body:has(.blog-detail-page) .blog-detail-page .part1-title {
        width: 100% !important;
        max-width: 100% !important;
    }

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

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

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

