/* =========================================
   deep-sleep Detail Styles (perfect match with image2)
   ========================================= */

body {
    background-color: black;
    /* Changed to orange as per your request */
    color: #FFFFFF;
    margin: 0;

    /* === Added bottom background image settings === */
    background-image:
        url("../../images/web_bg_shadow_top.png"),
        url("../../images/blog_bottom_bg.jpg");
    background-position:
        center 0px,
        bottom center;
    /* Image placed at the bottom of the page and horizontally centered */
    background-repeat:
        no-repeat,
        no-repeat;
    /* Prevent image tiling/repetition */
    background-size:
        100% auto,
        100% auto;
    /* Width fills the full screen, height scales proportionally. Change to contain if full-screen coverage is not needed */
}

.blog-detail-page {
    padding-top: 120px;
    /* Avoid overlapping with Navbar */
    padding-bottom: 0px;
    min-height: 100vh;
}

/* --- Raizz Logo --- */
.raizz-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
}

/* --- Overall content view --- */
.blog-detail-container {
    width: 100%;
    max-width: 1200px;
    /* Optimal reading width */
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
}

/* --- Breadcrumbs --- */
.breadcrumb {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-size: 14px;
    margin-bottom: 40px;
    /* By default, aligned to the left edge of the outer container */
}

.breadcrumb a {
    color: #DADADA;
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #888888;
    margin: 0 8px;
}

.breadcrumb .current {
    color: #888888;
}

/* =========================================
   Part 10 modules: unified styling and independent heights
   ========================================= */

/* Public styles: responsible for width, left margin, and spacing */
.blog-part {
    width: 800px;
    margin-left: 200px;
    margin-bottom: 50px;
    /* Upper and lower spacing between each part is 50px */

    /* Temporary background and borders can be deleted after the content is officially filled in. */
    background-color: black;
    border: 1px dashed rgba(255, 255, 255, 0.2);

    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Avenir', -apple-system, sans-serif;
    color: #888;
}

/* The last element does not require bottom spacing */
.blog-part:last-child {
    margin-bottom: 0;
}

/* =========================================
   Part 1: Title + Intro Text
   ========================================= */
.part1 {
    background-color: transparent;
    border: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.part1-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0 0 16px 0;
    text-align: center;
    width: 100%;
}

.part1-subtitle {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #888888;
    margin: 0 0 32px 0;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.clock-icon {
    width: 18px;
    height: 18px;
}

/* Part 1 image (below quote card) */
.part1-img-wrap {
    width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: center;
}

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

/* Quote card */
.part1-quote-card {
    background-color: rgba(245, 245, 245, 0.10);
    border: none;
    border-radius: 30px;
    width: 100%;
    box-sizing: border-box;
    padding: 30px 40px;
    margin-top: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.quote-icon-img {
    width: 32px;
    height: auto;
    display: block;
    margin-bottom: 16px;
}

.quote-text {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 350;
    font-size: 18px;
    color: #DADADA;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.quote-text:last-child {
    margin-bottom: 0;
    margin: 0;
}

/* =========================================
   Part 2: Blue CTA card
   ========================================= */
.part2 {
    background-color: #1e5ac8;
    border-radius: 30px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 42px 50px;
    gap: 30px;
    box-sizing: border-box;
}

.part2-text-wrap {
    flex: 1;
    min-width: 0;
}

/* Title */
.part2-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Description */
.part2-desc {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    margin: 20px 0 0 0;
    line-height: 24px;
    padding: 0;
}

/* Get Early Access button */
.part2-btn {
    position: static;
    flex-shrink: 0;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 40px;
    padding: 16px 30px;
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Button hover animation */
.part2-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* =========================================
   Part 3: Text paragraph section
   ========================================= */
.part3 {
    background-color: transparent;
    /* Remove test green background */
    border: none;
    /* Remove test dotted border */

    /* Override blog-part default center alignment; change to top-to-bottom left alignment */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Title style */
.part3-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    line-height: 1.3;
    width: 100%;
    text-align: left;
}

/* Unified style for description text */
.part3-text {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #DCDCDC;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    text-align: left;
}

.part3-link {
    color: #6AACFF;
    text-decoration: underline;
}

.part3-link:hover {
    opacity: 0.8;
}

.part3-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: 8px;
    cursor: pointer;
}

/* =========================================
   Part 4: Oscillatory Neural Network area
   ========================================= */
.part4 {
    background-color: transparent;
    /* Remove green background in production */
    border: none;

    /* Left-aligned, top to bottom */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Title style */
.part4-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    /* Medium */
    font-size: 32px;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    /* 16px margin below */
    line-height: 1.3;
    width: 100%;
    text-align: left;
}

/* Unified style for description text (applies to both paragraphs and lists) */
.part4-text {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    /* Medium */
    font-size: 18px;
    color: #DCDCDC;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
}

/* Stage subheading style (24px, Medium 500) */
.part4-subtitle {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
    width: 100%;
    text-align: left;
}

/* Stage Description style (18px, Roman 400) */
.part4-desc {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    /* Explicitly specify 400 font weight */
    font-size: 18px;
    color: #DCDCDC;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    text-align: left;
}

/* =========================================
   Part 5: Micro-Arousals area
   ========================================= */
.part5 {
    background-color: transparent;
    /* Remove green placeholder background */
    border: none;

    /* Left-aligned, top to bottom */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Title style (consistent with part 4: 32px Medium) */
.part5-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    /* Medium */
    font-size: 32px;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    /* 16px margin below */
    line-height: 1.3;
    width: 100%;
    text-align: left;
}

.part5-subtitle {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
    width: 100%;
    text-align: left;
}

/* Unified description text style (consistent with part 4: 18px Medium, color #DCDCDC) */
.part5-text {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    /* Medium */
    font-size: 18px;
    color: #DCDCDC;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    text-align: left;
}

.part4-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: 8px;
    cursor: pointer;
}

/* =========================================
   Part 6: Why Timing Matters area
   ========================================= */
.part6 {
    background-color: transparent;
    /* Remove green placeholder background */
    border: none;

    /* Left-aligned, top to bottom */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Title style */
.part6-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    /* Medium */
    font-size: 32px;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    /* 16px margin below */
    line-height: 1.3;
    width: 100%;
    text-align: left;
}

/* Unified style for description text */
.part6-text {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    /* Medium */
    font-size: 18px;
    color: #DCDCDC;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    text-align: left;
}

/* Bottom image style */
.part6-img {
    width: 800px;
    height: auto;
    /* Height auto-scales to maintain aspect ratio */
    object-fit: contain;
    display: block;
    margin: 0;
}

/* =========================================
   Part 7: Evolution of Sleep Technology
   ========================================= */
.part7 {
    background-color: transparent;
    /* Remove test green background */
    border: none;

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Main title style (32px, Medium) */
.part7-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    line-height: 1.3;
    width: 100%;
    text-align: left;
}

/* Top description style (18px, Medium 500) */
.part7-text {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #DCDCDC;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    text-align: left;
}

/* Stage subheading style (24px, Medium 500) */
.part7-subtitle {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
    width: 100%;
    text-align: left;
}

/* Stage Description style (18px, Roman 400) */
.part7-desc {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    /* Explicitly specify 400 font weight */
    font-size: 18px;
    color: #DCDCDC;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    text-align: left;
}

/* =========================================
   Part 8: Conclusion
   ========================================= */
.part8 {
    background-color: transparent;
    border: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.part8-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    line-height: 1.3;
    width: 100%;
    text-align: left;
}

.part8-text {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #DCDCDC;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    text-align: left;
}

/* =========================================
   Part 9: More Blogs You Might Like
   ========================================= */
.part9 {
    background-color: transparent;
    border: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.part9-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #FFFFFF;
    margin: 0 0 28px 0;
    line-height: 1.3;
    width: 100%;
    text-align: left;
}

.part9-cards {
    display: flex;
    gap: 32px;
    width: 100%;
}

.topic-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #191919;
    border-radius: 30px;
    border: 1px solid #ffffff29;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.topic-card:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.topic-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    cursor: pointer;
}

.topic-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topic-card-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

/* Spacing control class */
.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-28 {
    margin-bottom: 28px;
}

.mb-32 {
    margin-bottom: 32px;
}

/* =========================================
   Blog Bottom (bottom CTA and copyright information)
   ========================================= */
.blog-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 100px;
    margin-bottom: 120px;
    background-color: transparent;
}

/* Title */
.bottom-title {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 60px;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

/* Subtitle (24px below title) */
.bottom-subtitle {
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    /* Roman */
    font-size: 24px;
    color: #DADADA;
    margin: 24px 0 0 0;
    text-align: center;
}

/* Button (50px below subtitle) */
.bottom-cta-btn {
    margin-top: 50px;
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 800;
    /* Heavy */
    font-size: 18px;
    padding: 16px 36px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bottom-cta-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Divider (100px below button) */
.bottom-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    /* translucent white dividing line */
    margin-top: 100px;
}

/* Copyright info (100px below divider) */
.bottom-copyright {
    margin-top: 100px;
    margin-bottom: 0;
    /* Ensure no excess margin below; align text baseline to container bottom */
    padding-bottom: 0;
    /* Ensure no padding */
    line-height: 1;
    /* Set to 1 to eliminate default line height gaps and achieve perfect bottom alignment */

    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #888888;
    text-align: center;
    background-color: #000000;
}

/* Modified button container (maintains 50px spacing below subtitle) */
.access_button-wrapper {
    margin-top: 50px;
}

/* Modified button style */
.access_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* The spacing between text and icons can be fine-tuned as needed */

    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Avenir', -apple-system, sans-serif;
    font-weight: 800;
    /* Heavy */
    font-size: 18px;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    /* Since it's now an anchor tag, remove the default underline */
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.access_button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Button internal icon size control */
.access_button img {
    width: 24px;
    /* If the icon is too large or small, modify the value here */
    height: 24px;
    object-fit: contain;
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
    display: none;
}

/* Mobile nav drawer — hidden by default */
.nav-drawer {
    display: none;
}

/* Mobile bottom CTA card — hidden on desktop */
.mobile-bottom-card {
    display: none;
}

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

    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* H5 top glow + correct bottom wave */
    body {
        background-image:
            url('../../images/web_bg_shadow_top_h5.png'),
            url('../../images/blog_bottom_bg.jpg');
        background-size: 100% auto, 100% auto;
        background-repeat: no-repeat, no-repeat;
        background-position:
            center 0px,
            center bottom 100px;
    }

    .blog-detail-page {
        padding-top: 60px;
        padding-bottom: 0;
        min-height: unset;
    }

    /* Navbar */
    .nav-content {
        padding: 0 16px;
    }

    .nav-left {
        flex: 1;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        background-color: transparent;
        color: #FFFFFF;
        border: 1px solid rgba(255, 255, 255, 0.6);
        font-size: 14px;
        font-weight: 500;
        padding: 8px 12px;
        border-radius: 20px;
        height: auto;
        white-space: nowrap;
    }

    .nav-hamburger {
        display: block;
        background: none;
        border: none;
        color: #FFFFFF;
        font-size: 22px;
        cursor: pointer;
        padding: 0 0 0 12px;
        line-height: 1;
        width: 34px;
        text-align: center;
    }

    /* Mobile nav drawer — full height overlay */
    .nav-drawer {
        display: flex;
        flex-direction: column;
        background-color: rgba(5, 10, 20, 1);
        background-image: url('../../images/web-dropdown-shadow-h5.png');
        background-size: 100% auto;
        background-position: center top;
        background-repeat: no-repeat;
        background-blend-mode: screen;
        position: fixed;
        top: 54px;
        left: 0;
        right: 0;
        height: calc(100vh - 54px);
        overflow-y: auto;
        z-index: 999;
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-drawer.open {
        transform: translateY(0);
    }

    .nav-drawer .nav-link-btn {
        width: 100%;
        text-align: center;
        padding: 14px 16px;
        font-size: 18px;
        font-family: 'Avenir', -apple-system, sans-serif;
        font-weight: 400;
        color: #FFFFFF;
        background: none;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        letter-spacing: -0.3px;
    }

    /* CTA button inside drawer */
    .nav-drawer-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: #FFFFFF;
        color: #000000;
        font-family: 'Avenir', -apple-system, sans-serif;
        font-weight: 700;
        font-size: 18px;
        padding: 18px 32px;
        border-radius: 999px;
        text-decoration: none;
        margin: 32px 20px;
    }

    /* Blog parts */
    .blog-detail-container {
        padding: 0 16px;
    }

    .blog-part {
        width: 100%;
        margin-left: 0;
        margin-bottom: 24px;
    }

    .breadcrumb {
        font-size: 13px;
        margin-bottom: 24px;
    }

    /* Part 1 */
    .part1-title {
        font-size: 30px;
        line-height: 1.25;
        text-align: left;
    }

    .part1-subtitle {
        text-align: center;
        font-size: 15px;
    }

    /* Part 1 image */
    .part1-img-wrap {
        margin-top: 60px;
    }

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

    /* Part 1 quote card */
    .part1-quote-card {
        background-color: rgba(245, 245, 245, 0.10);
        background-image: none;
        border: none;
        border-radius: 30px;
        padding: 20px;
        margin-top: 12px;
    }

    .quote-icon-img {
        width: 24px;
        margin-bottom: 12px;
    }

    .quote-text {
        font-size: 16px;
        line-height: 1.7;
    }

    /* Part 2: Blue CTA — stack vertically on mobile */
    .part2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 24px 16px;
        border-radius: 24px;
        text-align: center;
        gap: 20px;
    }

    .part2-text-wrap {
        width: 100%;
    }

    .part2-title {
        font-size: 22px;
        padding: 0;
        text-align: center;
    }

    .part2-desc {
        font-size: 16px;
        padding: 0;
        margin-top: 12px;
        text-align: center;
    }

    .part2-btn {
        position: static;
        transform: none;
        width: auto;
        padding: 14px 32px;
        height: auto;
        font-size: 18px;
    }

    .part2-btn:hover {
        transform: scale(1.05);
    }

    /* Section titles */
    .part3-title,
    .part4-title,
    .part5-title,
    .part6-title,
    .part7-title,
    .part8-title,
    .part9-title {
        font-size: 26px;
    }

    /* Body text */
    .part3-text, .part4-text, .part5-text,
    .part6-text, .part7-text, .part8-text {
        font-size: 16px;
        line-height: 1.7;
    }

    /* Images */
    .part6-img {
        width: 100%;
    }

    /* More Blogs: horizontal list */
    .part9-cards {
        flex-direction: column;
        gap: 12px;
    }

    .topic-card {
        flex-direction: row;
        border-radius: 20px;
        align-items: center;
    }

    .topic-card-img {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        border-radius: 16px 0 0 16px;
        object-fit: cover;
    }

    .topic-card-body {
        padding: 12px;
        flex: 1;
        gap: 6px;
    }

    .topic-card-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .topic-card::after {
        content: '›';
        font-size: 24px;
        color: #888888;
        padding-right: 12px;
        flex-shrink: 0;
    }

    /* Blog bottom — show only divider + copyright on mobile */
    .blog-bottom {
        display: flex;
        margin-top: 100px;
        margin-bottom: 200px;
    }

    .bottom-title,
    .bottom-subtitle,
    .access_button-wrapper {
        display: none;
    }

    .bottom-divider {
        margin-top: 0;
    }

    .bottom-copyright {
        margin-top: 24px;
        margin-bottom: 20px;
    }

    /* Mobile bottom CTA card — fixed at bottom of screen */
    .mobile-bottom-card {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 16px 20px;
        z-index: 100;
    }

    .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: 'Avenir', -apple-system, sans-serif;
        font-weight: 500;
        font-size: 16px;
        color: #FFFFFF;
        margin: 0;
    }

    .mobile-bottom-card-desc {
        font-family: 'Avenir', -apple-system, 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: 'Avenir', -apple-system, 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;
    }
}

/* =========================================
   Article 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;
}

@media (max-width: 768px) {
    .blog-section-img {
        width: 100%;
        border-radius: 12px;
        margin-top: 20px;
    }
}

/* =========================================
   H5 Image Lightbox
   ========================================= */
.img-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.img-lightbox.active {
    display: flex;
}

.img-lightbox img {
    max-width: 95%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}
