
/* =========================================================
   PREMIUM LUMINARY BLOG — COLOR EDITION
========================================================= */

.blog-page {
    --blog-accent: #6ea8ff;
    --blog-accent-2: #9b7cff;
    --blog-accent-soft: rgba(110,168,255,0.14);
    --blog-purple-soft: rgba(155,124,255,0.12);

    position: relative;
    padding-bottom: 120px;
}


/* =========================================================
   CONTENT CONTAINERS
========================================================= */

.blog-container,
.blog-hero-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* =========================================================
   HERO
========================================================= */

.blog-hero {
    position: relative;
    padding-top: 70px;
    padding-bottom: 90px;
    margin-top: 60px;
}


.blog-hero-card {
    position: relative;
    isolation: isolate;

    overflow: hidden;

    padding: 105px 50px 100px;

    border: 1px solid rgba(255,255,255,0.11);

    border-radius: 34px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(110,168,255,0.17),
            transparent 38%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(155,124,255,0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.012)
        );

    box-shadow:
        0 40px 100px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.06);
}


/* Premium luminous top line */

.blog-hero-card::after {
    content: "";

    position: absolute;

    top: 0;

    left: 10%;
    right: 10%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(110,168,255,0.75),
            rgba(155,124,255,0.65),
            transparent
        );

    box-shadow:
        0 0 18px rgba(110,168,255,0.35);
}


/* Hero glow */

.blog-hero-card::before {
    content: "";

    position: absolute;

    z-index: -1;

    width: 600px;
    height: 600px;

    left: 50%;
    top: -400px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(110,168,255,0.18),
            rgba(155,124,255,0.06) 42%,
            transparent 70%
        );

    filter: blur(25px);

    pointer-events: none;
}


/* =========================================================
   HERO EYEBROW
========================================================= */

.blog-eyebrow {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 24px;

    padding: 8px 14px;

    border: 1px solid rgba(110,168,255,0.20);

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(110,168,255,0.10),
            rgba(155,124,255,0.06)
        );

    color: rgba(205,224,255,0.92);

    font-size: 0.70rem;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 0 25px rgba(110,168,255,0.05);
}


.blog-eyebrow i {
    color: var(--blog-accent);

    font-size: 0.62rem;

    filter:
        drop-shadow(
            0 0 6px rgba(110,168,255,0.55)
        );
}


/* =========================================================
   HERO TITLE
========================================================= */

.blog-hero h1 {
    position: relative;

    max-width: 900px;

    margin: 0 auto 25px;

    font-size: clamp(2.7rem, 6vw, 5.4rem);

    line-height: 1.02;

    letter-spacing: -0.055em;

    font-weight: 700;

    background:
        linear-gradient(
            110deg,
            #ffffff 10%,
            #dce9ff 45%,
            #9bbdff 70%,
            #c2aaff 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.blog-hero-description {
    position: relative;

    max-width: 700px;

    margin: 0 auto;

    color: rgba(235,241,255,0.67);

    font-size: 1rem;

    line-height: 1.85;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.blog-breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}

.blog-breadcrumb a {
    color: rgba(170,200,255,0.75);

    text-decoration: none;

    transition:
        color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--blog-accent);
}

.blog-breadcrumb span {
    margin: 0 10px;

    color: rgba(255,255,255,0.25);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.blog-section-heading {
    position: relative;

    margin-bottom: 38px;
}


.blog-section-heading small {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: rgba(140,184,255,0.75);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.blog-section-heading small::before {
    content: "";

    width: 24px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--blog-accent),
            transparent
        );
}


.blog-section-heading h2 {
    margin: 0;

    font-size: clamp(2rem, 4vw, 3.15rem);

    line-height: 1.08;

    letter-spacing: -0.045em;

    background:
        linear-gradient(
            100deg,
            #ffffff,
            #c9d9f5
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.blog-section-heading p {
    max-width: 650px;

    margin-top: 16px;

    color: rgba(230,237,250,0.55);

    line-height: 1.75;

    font-size: 0.94rem;
}


/* =========================================================
   FEATURED ARTICLE
========================================================= */

.featured-article {
    position: relative;
    isolation: isolate;

    display: grid;

    grid-template-columns: 1.08fr 1fr;

    width: min(62%, 1100px);
    margin: 0 auto 110px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(110,168,255,0.055),
            transparent 40%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.012)
        );

    box-shadow:
        0 35px 90px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.045);

    transition:
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}


.featured-article:hover {
    border-color: rgba(110,168,255,0.20);

    box-shadow:
        0 45px 110px rgba(0,0,0,0.25),
        0 0 50px rgba(110,168,255,0.035),
        inset 0 1px 0 rgba(255,255,255,0.06);
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.featured-image {
    position: relative;
    isolation: isolate;

    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(110,168,255,0.18),
            transparent 32%
        ),
        radial-gradient(
            circle at 70% 25%,
            rgba(155,124,255,0.13),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(30,60,110,0.30),
            rgba(255,255,255,0.012)
        );
}


/* Grid texture */

.featured-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(120,170,255,0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(120,170,255,0.045) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.8),
            transparent
        );

    opacity: 0.65;
}


/* Orbital frame */

.featured-image::after {
    content: "";

    position: absolute;

    width: 235px;
    height: 235px;

    border-radius: 50%;

    border: 1px solid rgba(110,168,255,0.18);

    box-shadow:
        0 0 0 30px rgba(110,168,255,0.025),
        0 0 0 65px rgba(155,124,255,0.018),
        0 0 70px rgba(110,168,255,0.12);

    transform: rotate(25deg);
}


/* Featured icon */

.featured-image i {
    position: relative;

    z-index: 3;

    color: rgba(150,194,255,0.72);

    font-size: 4.5rem;

    opacity: 0.55;

    filter:
        drop-shadow(
            0 0 22px rgba(110,168,255,0.35)
        );

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1),
        filter 0.5s ease;
}


.featured-article:hover .featured-image i {
    transform: scale(1.08);

    filter:
        drop-shadow(
            0 0 30px rgba(110,168,255,0.50)
        );
}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.featured-content {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px;
}


/* Divider */

.featured-content::before {
    content: "";

    position: absolute;

    left: 0;

    top: 15%;
    bottom: 15%;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(110,168,255,0.25),
            rgba(155,124,255,0.18),
            transparent
        );
}


/* =========================================================
   CATEGORY
========================================================= */

.article-category {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 18px;

    padding: 7px 11px;

    border: 1px solid rgba(110,168,255,0.16);

    border-radius: 999px;

    background:
        rgba(110,168,255,0.055);

    color: rgba(156,196,255,0.80);

    font-size: 0.65rem;

    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


/* =========================================================
   FEATURED TITLE
========================================================= */

.featured-content h3 {
    margin: 0 0 20px;

    max-width: 620px;

    font-size: clamp(1.9rem, 3vw, 2.8rem);

    line-height: 1.13;

    letter-spacing: -0.045em;

    background:
        linear-gradient(
            100deg,
            #ffffff,
            #c7d9f8
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.featured-content p {
    max-width: 570px;

    margin: 0 0 26px;

    color: rgba(230,237,250,0.58);

    font-size: 0.93rem;

    line-height: 1.85;
}


/* =========================================================
   ARTICLE META
========================================================= */

.article-meta {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 30px;

    color: rgba(190,210,240,0.42);

    font-size: 0.73rem;
}

.article-meta span + span::before {
    content: "•";

    margin-right: 13px;

    color: rgba(110,168,255,0.55);
}


/* =========================================================
   PREMIUM BUTTON
========================================================= */

.article-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    width: fit-content;

    padding: 13px 19px;

    border: 1px solid rgba(110,168,255,0.22);

    border-radius: 12px;

    color: #e9f2ff;

    background:
        linear-gradient(
            135deg,
            rgba(110,168,255,0.13),
            rgba(155,124,255,0.08)
        );

    text-decoration: none;

    font-size: 0.78rem;

    font-weight: 600;

    box-shadow:
        0 8px 25px rgba(50,100,200,0.08),
        inset 0 1px 0 rgba(255,255,255,0.07);

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}


.article-link:hover {
    transform: translateY(-3px);

    border-color: rgba(110,168,255,0.42);

    background:
        linear-gradient(
            135deg,
            rgba(110,168,255,0.20),
            rgba(155,124,255,0.13)
        );

    box-shadow:
        0 12px 30px rgba(50,100,200,0.15),
        0 0 25px rgba(110,168,255,0.08),
        inset 0 1px 0 rgba(255,255,255,0.10);
}


.article-link i {
    color: var(--blog-accent);

    font-size: 0.7rem;

    transition:
        transform 0.35s ease;
}


.article-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   CATEGORY FILTERS
========================================================= */

.blog-categories {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 45px;
}


.blog-category {
    appearance: none;

    display: inline-flex;
    align-items: center;

    padding: 10px 16px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 999px;

    background:
        rgba(255,255,255,0.025);

    color: rgba(230,237,250,0.65);

    font-family: inherit;

    font-size: 0.72rem;

    font-weight: 600;

    cursor: pointer;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.025);

    transition:
        transform 0.35s cubic-bezier(.2,.8,.2,1),
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.blog-category:hover {
    transform: translateY(-2px);

    border-color: rgba(110,168,255,0.22);

    color: #dceaff;

    background:
        rgba(110,168,255,0.06);

    box-shadow:
        0 7px 20px rgba(50,100,200,0.06);
}


.blog-category.active {
    transform: translateY(-2px);

    border-color: rgba(110,168,255,0.30);

    color: #e8f2ff;

    background:
        linear-gradient(
            135deg,
            rgba(110,168,255,0.14),
            rgba(155,124,255,0.09)
        );

    box-shadow:
        0 8px 25px rgba(50,100,200,0.08),
        inset 0 1px 0 rgba(255,255,255,0.07);
}


/* =========================================================
   ARTICLE GRID
========================================================= */

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   BLOG CARD
========================================================= */

.blog-card {
    position: relative;
    isolation: isolate;

    display: flex;

    flex-direction: column;

    min-height: 100%;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.075);

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.035),
            rgba(255,255,255,0.010)
        );

    box-shadow:
        0 18px 45px rgba(0,0,0,0.10),
        inset 0 1px 0 rgba(255,255,255,0.035);

    transition:
        transform 0.55s cubic-bezier(.2,.8,.2,1),
        border-color 0.45s ease,
        background 0.45s ease,
        box-shadow 0.55s ease;
}


/* Accent top line */

.blog-card::before {
    content: "";

    position: absolute;

    z-index: 5;

    top: 0;

    left: 15%;
    right: 15%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--blog-accent),
            var(--blog-accent-2),
            transparent
        );

    box-shadow:
        0 0 15px rgba(110,168,255,0.20);

    opacity: 0;

    transition:
        opacity 0.45s ease;
}


.blog-card:hover {
    transform: translateY(-7px);

    border-color: rgba(110,168,255,0.18);

    background:
        linear-gradient(
            145deg,
            rgba(110,168,255,0.055),
            rgba(255,255,255,0.018)
        );

    box-shadow:
        0 30px 70px rgba(0,0,0,0.17),
        0 0 35px rgba(110,168,255,0.035),
        inset 0 1px 0 rgba(255,255,255,0.055);
}


.blog-card:hover::before {
    opacity: 1;
}


/* =========================================================
   CARD IMAGE
========================================================= */

.blog-card-image {
    position: relative;
    isolation: isolate;

    height: 205px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-bottom: 1px solid rgba(255,255,255,0.055);

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(110,168,255,0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(155,124,255,0.08),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(30,55,100,0.20),
            rgba(255,255,255,0.012)
        );
}


/* Technical grid */

.blog-card-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(110,168,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(110,168,255,0.035) 1px,
            transparent 1px
        );

    background-size: 34px 34px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );

    opacity: 0.8;
}


/* Glow */

.blog-card-image::after {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(110,168,255,0.15),
            transparent 70%
        );

    filter: blur(25px);
}


/* Icon */

.blog-card-image i {
    position: relative;

    z-index: 3;

    color: rgba(145,190,255,0.72);

    font-size: 2.8rem;

    opacity: 0.40;

    filter:
        drop-shadow(
            0 0 14px rgba(110,168,255,0.20)
        );

    transition:
        transform 0.6s cubic-bezier(.2,.8,.2,1),
        opacity 0.45s ease,
        filter 0.45s ease;
}


.blog-card:hover .blog-card-image i {
    transform: scale(1.10);

    opacity: 0.65;

    filter:
        drop-shadow(
            0 0 22px rgba(110,168,255,0.35)
        );
}


/* =========================================================
   CARD CONTENT
========================================================= */

.blog-card-content {
    display: flex;

    flex: 1;

    flex-direction: column;

    padding: 27px;
}


.blog-card-content .article-category {
    margin-bottom: 15px;

    padding: 0;

    border: 0;

    background: transparent;

    color: rgba(140,184,255,0.65);

    font-size: 0.62rem;
}


.blog-card-content h3 {
    margin: 0 0 13px;

    color: rgba(245,248,255,0.94);

    font-size: 1.18rem;

    line-height: 1.38;

    letter-spacing: -0.025em;

    transition:
        color 0.35s ease;
}


.blog-card:hover .blog-card-content h3 {
    color: #ffffff;
}


.blog-card-content p {
    margin: 0 0 23px;

    color: rgba(225,234,248,0.52);

    font-size: 0.85rem;

    line-height: 1.75;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.blog-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: auto;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,0.055);
}


.blog-card-date {
    color: rgba(190,210,240,0.36);

    font-size: 0.68rem;
}


.blog-card-read {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: rgb(0 158 253);

    text-decoration: none;

    font-size: 0.73rem;

    font-weight: 600;

    transition:
        color 0.3s ease;
}


.blog-card-read:hover {
    color: #ffffff;
}


.blog-card-read i {
        color: rgb(0 158 253);

    font-size: 0.63rem;

    transition:
        transform 0.35s ease;
}


.blog-card:hover .blog-card-read i {
    transform: translateX(4px);

    filter:
        drop-shadow(
            0 0 5px rgba(110,168,255,0.45)
        );
}


/* =========================================================
   PREMIUM CTA
========================================================= */

.blog-cta {
    position: relative;
    isolation: isolate;

    overflow: hidden;

    margin-top: 110px;

    padding: 78px 40px;

    border: 1px solid rgba(110,168,255,0.14);

    border-radius: 30px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(110,168,255,0.13),
            transparent 42%
        ),
        radial-gradient(
            circle at 20% 100%,
            rgba(155,124,255,0.08),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.012)
        );

    box-shadow:
        0 35px 85px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.05);
}


/* CTA top accent */

.blog-cta::before {
    content: "";

    position: absolute;

    top: 0;

    left: 15%;
    right: 15%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--blog-accent),
            var(--blog-accent-2),
            transparent
        );

    box-shadow:
        0 0 20px rgba(110,168,255,0.25);
}


/* CTA glow */

.blog-cta::after {
    content: "";

    position: absolute;

    z-index: -1;

    width: 400px;
    height: 400px;

    left: 50%;
    top: -250px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(110,168,255,0.14),
            rgba(155,124,255,0.05) 45%,
            transparent 70%
        );

    filter: blur(35px);

    pointer-events: none;
}


.blog-cta > * {
    position: relative;

    z-index: 2;
}


.blog-cta h2 {
    max-width: 680px;

    margin: 0 auto 16px;

    color: #ffffff;

    font-size: clamp(2rem, 4vw, 3.2rem);

    line-height: 1.08;

    letter-spacing: -0.045em;
}


.blog-cta p {
    max-width: 620px;

    margin: 0 auto 30px;

    color: rgba(225,235,250,0.57);

    font-size: 0.92rem;

    line-height: 1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .featured-article {
        grid-template-columns: 1fr;
   
    }

    .featured-image {
        min-height: 350px;
    }

    .featured-content {
        padding: 48px;
    }

    .featured-content::before {
        display: none;
    }

    .blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}




@media (max-width: 767px) {

    .featured-article {
        width: 100%;
   
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .blog-container,
    .blog-hero-container {
        width: min(
            100% - 28px,
            1180px
        );
    }


    .blog-hero {
        padding-top: 35px;
        padding-bottom: 55px;
    }


    .blog-hero-card {
        padding: 65px 22px 60px;

        border-radius: 25px;
    }


    .blog-hero h1 {
        font-size: clamp(
            2.35rem,
            11vw,
            3.4rem
        );
    }


    .blog-hero-description {
        font-size: 0.88rem;
    }


    .blog-section-heading h2 {
        font-size: 2rem;
    }


    .featured-article {
        margin-bottom: 75px;

        border-radius: 24px;
    }


    .featured-image {
        min-height: 240px;
    }


    .featured-image::after {
        width: 170px;
        height: 170px;
    }


    .featured-content {
        padding: 32px 25px 35px;
    }


    .featured-content h3 {
        font-size: 1.75rem;
    }


    .blog-categories {
        gap: 7px;

        margin-bottom: 35px;
    }


    .blog-category {
        padding: 9px 13px;

        font-size: 0.67rem;
    }


    .blog-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .blog-card {
        border-radius: 20px;
    }


    .blog-card-image {
        height: 185px;
    }


    .blog-card-content {
        padding: 24px;
    }


    .blog-cta {
        margin-top: 75px;

        padding: 55px 22px;

        border-radius: 24px;
    }


    .blog-cta h2 {
        font-size: 2rem;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .blog-card,
    .featured-article,
    .article-link,
    .blog-category,
    .blog-card-image i,
    .featured-image i,
    .blog-card-read i {
        transition: none;
    }

    .blog-card:hover,
    .article-link:hover,
    .blog-category:hover,
    .blog-category.active {
        transform: none;
    }
}


css
/* =========================================================
   BLOG — FULL CENTERED LAYOUT
========================================================= */

/* Main containers */
.blog-container,
.blog-hero-container {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.blog-section-heading {
    text-align: center;
}

.blog-section-heading small {
    justify-content: center;
}

.blog-section-heading p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.blog-breadcrumb {
    justify-content: center;
    text-align: center;
}


/* =========================================================
   FEATURED ARTICLE
========================================================= */

.featured-article {
    grid-template-columns: 1fr;
    text-align: center;
}


/* Featured image */
.featured-image {
    min-height: 360px;
}


/* Featured content */
.featured-content {
    align-items: center;
    padding: 55px 60px 60px;
    text-align: center;
}


/* Remove vertical divider */
.featured-content::before {
    display: none;
}


/* Center category */
.featured-content .article-category {
    margin-left: auto;
    margin-right: auto;
}


/* Center text */
.featured-content h3,
.featured-content p {
    margin-left: auto;
    margin-right: auto;
}


/* Center metadata */
.article-meta {
    justify-content: center;
}


/* Center button */
.article-link {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   CATEGORIES
========================================================= */

.blog-categories {
    justify-content: center;
}


/* =========================================================
   BLOG GRID
========================================================= */

.blog-grid {
    text-align: center;
}


/* =========================================================
   BLOG CARD
========================================================= */

.blog-card {
    text-align: center;
}


/* Center card category */
.blog-card-content .article-category {
    margin-left: auto;
    margin-right: auto;
}


/* Center card content */
.blog-card-content h3,
.blog-card-content p {
    margin-left: auto;
    margin-right: auto;
}


/* Center card footer */
.blog-card-footer {
    justify-content: center;
}


/* =========================================================
   CTA
========================================================= */

.blog-cta {
    text-align: center;
}

.blog-cta p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .blog-container,
    .blog-hero-container {
        width: min(100% - 28px, 1180px);
    }

    .featured-content {
        padding: 38px 24px 42px;
    }

    .featured-image {
        min-height: 250px;
    }

    .blog-card-content {
        padding: 25px 22px;
    }

    .blog-card-footer {
        justify-content: center;
    }

}





/*blog 1==========================================================*/



        /* =========================================================
           BLOG ARTICLE
        ========================================================== */

        .blog-article-page {
            --blog-accent: #6ea8ff;
            --blog-accent-2: #9b7cff;
            --blog-accent-soft: rgba(110,168,255,0.12);
            --blog-purple-soft: rgba(155,124,255,0.10);

            position: relative;
            padding-bottom: 120px;
        }


        /* =========================================================
           CONTAINER
        ========================================================== */

        .blog-article-container {
            width: min(980px, calc(100% - 40px));
            margin-inline: auto;
        }


        /* =========================================================
           HERO
        ========================================================== */

        .blog-article-hero {
            padding-top: 65px;
            padding-bottom: 55px;
        }

        .blog-article-hero .luminary-card-top {
            position: relative;
            overflow: hidden;
            padding: 80px 45px;
            text-align: center;

            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 32px;

            background:
                radial-gradient(
                    circle at 50% -10%,
                    rgba(110,168,255,0.16),
                    transparent 42%
                ),
                radial-gradient(
                    circle at 10% 100%,
                    rgba(155,124,255,0.08),
                    transparent 35%
                ),
                linear-gradient(
                    145deg,
                    rgba(255,255,255,0.045),
                    rgba(255,255,255,0.012)
                );

            box-shadow:
                0 35px 90px rgba(0,0,0,0.20),
                inset 0 1px 0 rgba(255,255,255,0.05);
        }


        /* =========================================================
           HERO GLOW
        ========================================================== */

        .blog-article-hero .luminary-card-top::before {
            content: "";
            position: absolute;

            width: 520px;
            height: 520px;

            left: 50%;
            top: -390px;

            transform: translateX(-50%);

            border-radius: 50%;

            background:
                radial-gradient(
                    circle,
                    rgba(110,168,255,0.18),
                    rgba(155,124,255,0.05) 45%,
                    transparent 70%
                );

            filter: blur(30px);
            pointer-events: none;
        }


        /* =========================================================
           HERO TOP LINE
        ========================================================== */

        .blog-article-hero .luminary-card-top::after {
            content: "";

            position: absolute;

            top: 0;
            left: 12%;
            right: 12%;

            height: 1px;

            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(110,168,255,0.75),
                    rgba(155,124,255,0.65),
                    transparent
                );

            box-shadow:
                0 0 20px rgba(110,168,255,0.30);
        }


        /* =========================================================
           BREADCRUMB
        ========================================================== */

        .blog-breadcrumb {
            position: relative;
            z-index: 2;

            display: flex;
            justify-content: center;
            align-items: center;

            gap: 8px;

            margin-bottom: 24px;

            font-size: 0.75rem;

            color: rgba(255,255,255,0.45);
        }

        .blog-breadcrumb a {
            color: rgba(165,200,255,0.78);
            text-decoration: none;

            transition:
                color 0.3s ease;
        }

        .blog-breadcrumb a:hover {
            color: var(--blog-accent);
        }

        .blog-breadcrumb i {
            color: rgba(255,255,255,0.25);
            font-size: 0.55rem;
        }


        /* =========================================================
           CATEGORY
        ========================================================== */

        .blog-article-category {
            position: relative;
            z-index: 2;

            display: inline-flex;
            align-items: center;
            gap: 8px;

            margin-bottom: 22px;
            padding: 8px 14px;

            border: 1px solid rgba(110,168,255,0.20);
            border-radius: 999px;

            background:
                linear-gradient(
                    135deg,
                    rgba(110,168,255,0.10),
                    rgba(155,124,255,0.06)
                );

            color: rgba(205,224,255,0.90);

            font-size: 0.67rem;
            font-weight: 700;

            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .blog-article-category i {
            color: var(--blog-accent);
            font-size: 0.62rem;
        }


        /* =========================================================
           HERO TITLE
        ========================================================== */

        .blog-article-hero h1 {
            position: relative;
            z-index: 2;

            max-width: 850px;

            margin: 0 auto 22px;

            font-size: clamp(2.4rem, 6vw, 4.7rem);
            line-height: 1.05;

            letter-spacing: -0.055em;

            background:
                linear-gradient(
                    110deg,
                    #ffffff 10%,
                    #dce9ff 48%,
                    #9bbdff 72%,
                    #c2aaff 100%
                );

            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        /* =========================================================
           HERO DESCRIPTION
        ========================================================== */

        .blog-article-subtitle {
            position: relative;
            z-index: 2;

            max-width: 700px;

            margin: 0 auto 25px;

            color: rgba(230,238,252,0.64);

            font-size: 0.98rem;
            line-height: 1.85;
        }


        /* =========================================================
           ARTICLE META
        ========================================================== */

        .blog-article-meta {
            position: relative;
            z-index: 2;

            display: flex;
            justify-content: center;
            align-items: center;

            flex-wrap: wrap;

            gap: 12px;

            color: rgba(190,210,240,0.42);

            font-size: 0.70rem;
        }

        .blog-article-meta span + span::before {
            content: "•";
            margin-right: 12px;
            color: rgba(110,168,255,0.55);
        }


        /* =========================================================
           ARTICLE CONTENT CARD
        ========================================================== */

        .blog-article-content {
            width: 100%;
            margin-inline: auto;
        }


        /* =========================================================
           INTRO
        ========================================================== */

        .blog-article-intro {
            margin-bottom: 55px;
            padding: 35px 40px;

            border: 1px solid rgba(110,168,255,0.10);
            border-radius: 22px;

            background:
                linear-gradient(
                    145deg,
                    rgba(110,168,255,0.045),
                    rgba(255,255,255,0.012)
                );

            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.035);
        }

        .blog-article-intro p {
            margin: 0;
            color: rgba(232,239,250,0.68);
            font-size: 14px;
            line-height: 1.9;
            margin-top: 10px;
        }


        /* =========================================================
           ARTICLE SECTIONS
        ========================================================== */

        .blog-article-section {
            position: relative;

            margin-bottom: 55px;
            padding: 38px 40px;

            border: 1px solid rgba(255,255,255,0.065);
            border-radius: 24px;

            background:
                linear-gradient(
                    145deg,
                    rgba(255,255,255,0.032),
                    rgba(255,255,255,0.010)
                );

            box-shadow:
                0 18px 45px rgba(0,0,0,0.08),
                inset 0 1px 0 rgba(255,255,255,0.035);
        }


        /* =========================================================
           SECTION NUMBER
        ========================================================== */

        .blog-section-number {
            display: flex;
            justify-content: center;
            align-items: center;

            width: 42px;
            height: 42px;

            margin: 0 auto 18px;

            border: 1px solid rgba(110,168,255,0.20);
            border-radius: 13px;

            background:
                linear-gradient(
                    135deg,
                    rgba(110,168,255,0.12),
                    rgba(155,124,255,0.08)
                );

            color: rgba(155,196,255,0.90);

            font-size: 0.75rem;
            font-weight: 700;

            box-shadow:
                0 8px 25px rgba(50,100,200,0.06);
        }


        /* =========================================================
           SECTION HEADING
        ========================================================== */

        .blog-article-section h2 {
            margin: 0 0 20px;

            color: #ffffff;

            font-size: clamp(1.65rem, 3vw, 2.25rem);
            line-height: 1.15;

            letter-spacing: -0.035em;

            text-align: center;
        }


        /* =========================================================
           ARTICLE TEXT
        ========================================================== */

        .blog-article-section p {
            max-width: 760px;

            margin: 0 auto 18px;

            color: rgba(225,234,248,0.60);

            font-size: 0.92rem;
            line-height: 1.9;

            text-align: center;
        }

        .blog-article-section p:last-child {
            margin-bottom: 0;
        }


        /* =========================================================
           ARTICLE LIST
        ========================================================== */

        .blog-article-list {
            max-width: 700px;

            margin: 25px auto 0;
            padding: 0;

            list-style: none;
        }

        .blog-article-list li {
            position: relative;

            margin-bottom: 11px;
            padding: 13px 18px 13px 42px;

            border: 1px solid rgba(255,255,255,0.055);
            border-radius: 13px;

            background:
                rgba(255,255,255,0.018);

            color: rgba(225,234,248,0.62);

            font-size: 0.86rem;
            line-height: 1.65;

            text-align: left;
        }

        .blog-article-list li::before {
            content: "\f00c";

            position: absolute;

            left: 16px;
            top: 50%;

            transform: translateY(-50%);

            color: var(--blog-accent);

            font-family: "Font Awesome 6 Free";
            font-weight: 900;

            font-size: 0.65rem;

            filter:
                drop-shadow(
                    0 0 5px rgba(110,168,255,0.45)
                );
        }


        /* =========================================================
           WORKFLOW BOX
        ========================================================== */

        .blog-workflow {
            max-width: 720px;

            margin: 28px auto 0;

            display: grid;
            grid-template-columns: repeat(5, 1fr);

            gap: 8px;
        }

        .blog-workflow-step {
            position: relative;

            padding: 17px 8px;

            border: 1px solid rgba(110,168,255,0.10);
            border-radius: 13px;

            background:
                linear-gradient(
                    145deg,
                    rgba(110,168,255,0.055),
                    rgba(155,124,255,0.025)
                );

            color: rgba(225,235,250,0.65);

            font-size: 0.70rem;
            font-weight: 600;

            text-align: center;
        }

        .blog-workflow-step i {
            display: block;

            margin-bottom: 8px;

            color: var(--blog-accent);

            font-size: 0.85rem;
        }


        /* =========================================================
           HIGHLIGHT BOX
        ========================================================== */

        .blog-highlight {
            max-width: 760px;

            margin: 30px auto 0;
            padding: 25px 28px;

            border-left: 2px solid var(--blog-accent);

            border-radius: 0 15px 15px 0;

            background:
                linear-gradient(
                    90deg,
                    rgba(110,168,255,0.07),
                    rgba(155,124,255,0.025),
                    transparent
                );

            color: rgba(225,235,250,0.68);

            font-size: 0.88rem;
            line-height: 1.8;

            text-align: center;
        }


        /* =========================================================
           CONCLUSION
        ========================================================== */

        .blog-conclusion {
            margin-bottom: 0;
        }


        /* =========================================================
           CTA
        ========================================================== */

        .blog-article-cta {
            position: relative;
            isolation: isolate;

            overflow: hidden;

            margin-top: 70px;

            padding: 70px 35px;

            border: 1px solid rgba(110,168,255,0.14);
            border-radius: 30px;

            text-align: center;

            background:
                radial-gradient(
                    circle at 50% 0%,
                    rgba(110,168,255,0.13),
                    transparent 42%
                ),
                radial-gradient(
                    circle at 20% 100%,
                    rgba(155,124,255,0.08),
                    transparent 35%
                ),
                linear-gradient(
                    145deg,
                    rgba(255,255,255,0.045),
                    rgba(255,255,255,0.012)
                );

            box-shadow:
                0 35px 85px rgba(0,0,0,0.18),
                inset 0 1px 0 rgba(255,255,255,0.05);
        }

        .blog-article-cta::before {
            content: "";

            position: absolute;

            top: 0;
            left: 15%;
            right: 15%;

            height: 1px;

            background:
                linear-gradient(
                    90deg,
                    transparent,
                    var(--blog-accent),
                    var(--blog-accent-2),
                    transparent
                );

            box-shadow:
                0 0 20px rgba(110,168,255,0.25);
        }

        .blog-article-cta h2 {
            position: relative;
            z-index: 2;

            max-width: 650px;

            margin: 0 auto 15px;

            color: #ffffff;

            font-size: clamp(1.9rem, 4vw, 3rem);

            line-height: 1.08;

            letter-spacing: -0.04em;
        }

        .blog-article-cta p {
            position: relative;
            z-index: 2;

            max-width: 620px;

            margin: 0 auto 28px;

            color: rgba(225,235,250,0.57);

            font-size: 0.90rem;
            line-height: 1.8;
        }

        .blog-article-cta .global-btn-primary {
            position: relative;
            z-index: 2;
        }


        /* =========================================================
           RESPONSIVE — TABLET
        ========================================================== */

        @media (max-width: 800px) {

            .blog-article-container {
                width: min(100% - 32px, 980px);
            }

            .blog-article-hero {
                padding-top: 45px;
                padding-bottom: 40px;
            }

            .blog-article-hero .luminary-card-top {
                padding: 70px 30px;
            }

            .blog-article-section {
                padding: 32px 28px;
            }

            .blog-workflow {
                grid-template-columns:
                    repeat(3, 1fr);
            }

        }


        /* =========================================================
           RESPONSIVE — MOBILE
        ========================================================== */

        @media (max-width: 600px) {

            .blog-article-page {
                padding-bottom: 80px;
            }

            .blog-article-container {
                width: calc(100% - 28px);
            }

            .blog-article-hero {
                padding-top: 30px;
                padding-bottom: 30px;
            }

            .blog-article-hero .luminary-card-top {
                padding: 58px 20px 52px;
                border-radius: 25px;
            }

            .blog-breadcrumb {
                font-size: 0.67rem;
                flex-wrap: wrap;
            }

            .blog-article-category {
                margin-bottom: 18px;
                padding: 7px 11px;
                font-size: 0.60rem;
            }

            .blog-article-hero h1 {
                font-size: clamp(2.15rem, 10.5vw, 3.2rem);
                letter-spacing: -0.045em;
            }

            .blog-article-subtitle {
                font-size: 0.86rem;
                line-height: 1.75;
            }

            .blog-article-meta {
                font-size: 0.64rem;
            }

            .blog-article-intro {
                padding: 27px 21px;
                margin-bottom: 35px;
                border-radius: 20px;
            }

            .blog-article-intro p {
                font-size: 0.88rem;
                line-height: 1.8;
            }

            .blog-article-section {
                margin-bottom: 30px;
                padding: 28px 20px;
                border-radius: 20px;
            }

            .blog-section-number {
                width: 38px;
                height: 38px;
                border-radius: 11px;
            }

            .blog-article-section h2 {
                font-size: 1.55rem;
                line-height: 1.2;
            }

            .blog-article-section p {
                font-size: 0.84rem;
                line-height: 1.8;
            }

            .blog-article-list li {
                padding: 12px 15px 12px 37px;
                font-size: 0.80rem;
            }

            .blog-workflow {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .blog-workflow-step {
                padding: 14px;
            }

            .blog-highlight {
                padding: 20px 18px;
                font-size: 0.82rem;
            }

            .blog-article-cta {
                margin-top: 45px;
                padding: 50px 20px;
                border-radius: 24px;
            }

            .blog-article-cta h2 {
                font-size: 1.9rem;
            }

        }


        /* =========================================================
           REDUCED MOTION
        ========================================================== */

        @media (prefers-reduced-motion: reduce) {

            .blog-article-page * {
                scroll-behavior: auto !important;
                transition: none !important;
                animation: none !important;
            }

        }


    


         .luminary-card-top-blog {
            position: relative;
            overflow: hidden;
            padding: 80px 45px;
            text-align: center;
            border-radius: 32px;
        }




            .blog-featured-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    box-sizing: border-box;
}

.blog-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: inherit;
    object-fit: cover;
}



 .blog-featured-image-wrapper {
    position: relative;
    overflow: hidden;

}

.blog-featured-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.55) 5%,
        
        rgba(0, 0, 0, 0)
        
    );
    pointer-events: none;

    border-radius: 20px;
}