/* =========================================
   Sleep Better. Live Fully. — Article Styles
   Article-specific overrides only.
   Base styles live in ../shared/blog-article.css.
   ========================================= */

/* =========================================
   Part 1: Hero Image
   ========================================= */
.part1-img-wrap {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.part1-img {
    width: 68%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    cursor: pointer;
}

/* =========================================
   Inline section images
   ========================================= */
.blog-section-img {
    width: 68%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    cursor: pointer;
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
}

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

    .part1-img-wrap {
        margin-top: 16px;
    }

    .part1-img {
        width: 100%;
        border-radius: 12px;
    }

    .blog-section-img {
        width: 100%;
        border-radius: 12px;
        margin-top: 20px;
    }

    /* Mobile bottom card styles */
    .mobile-bottom-card-inner {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        background-color: #191919;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-bottom-card-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-bottom-card-title {
        font-family: "Inter", sans-serif;
        font-weight: 500;
        font-size: 16px;
        color: #FFFFFF;
        margin: 0;
    }

    .mobile-bottom-card-desc {
        font-family: "Inter", sans-serif;
        font-weight: 400;
        font-size: 14px;
        color: #DCDCDC;
        margin: 0;
    }

    .mobile-bottom-card-btn {
        flex-shrink: 0;
        background-color: #0a6cff;
        color: #FFFFFF;
        font-family: "Inter", sans-serif;
        font-weight: 400;
        font-size: 16px;
        padding: 10px 16px;
        border-radius: 24px;
        text-decoration: none;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}
