/* =========================================================
   LBS SOFTWARE
   BLOG PAGE
   assets/css/blog.css
   ========================================================= */

:root {
    --blog-navy: #061a33;
    --blog-navy-2: #102b4d;
    --blog-blue: #087cff;
    --blog-cyan: #18c9e8;
    --blog-purple: #7657ff;
    --blog-pink: #ec4899;
    --blog-orange: #ff9f43;
    --blog-green: #20b86b;
    --blog-text: #18283c;
    --blog-muted: #697b8f;
    --blog-border: #e0e9f2;
}


/* =========================================================
   BASE
   ========================================================= */

.lbs-blog-page {
    width: 100%;
    overflow: hidden;
    color: var(--blog-text);
    background: #fff;
}

.lbs-blog-page *,
.lbs-blog-page *::before,
.lbs-blog-page *::after {
    box-sizing: border-box;
}

.lbs-blog-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.lbs-blog-page .section {
    padding: 90px 0;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.blog-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--blog-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 45px;
}

.blog-section-heading.centered {
    display: block;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.blog-section-heading h2 {
    margin: 0;
    color: var(--blog-navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.blog-section-heading h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--blog-blue),
            var(--blog-purple),
            var(--blog-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-section-heading > p {
    max-width: 440px;
    margin: 0;
    color: var(--blog-muted);
    font-size: 12px;
    line-height: 1.8;
}

.blog-section-heading.centered > p {
    margin: 17px auto 0;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 23px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background .22s ease;
}

.blog-btn:hover {
    transform: translateY(-2px);
}

.blog-btn-primary {
    border: 1px solid var(--blog-blue);
    background:
        linear-gradient(
            135deg,
            var(--blog-blue),
            var(--blog-purple)
        );
    color: #fff;
    box-shadow:
        0 10px 28px rgba(8,124,255,.22);
}

.blog-btn-primary:hover {
    box-shadow:
        0 16px 36px rgba(8,124,255,.30);
}

.blog-btn-outline {
    border: 1px solid #cbd8e7;
    background: #fff;
    color: var(--blog-navy);
}

.blog-btn-outline:hover {
    border-color: var(--blog-blue);
    color: var(--blog-blue);
}

.blog-btn-white {
    border: 1px solid #fff;
    background: #fff;
    color: var(--blog-purple);
}

.blog-btn-dark {
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.06);
    color: #fff;
}


/* =========================================================
   HERO
   ========================================================= */

.blog-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--blog-border);
    background:
        radial-gradient(
            circle at 8% 22%,
            rgba(24,201,232,.15),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 12%,
            rgba(118,87,255,.16),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #f2fbff,
            #fff 50%,
            #fbf7ff
        );
}

.blog-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image:
        linear-gradient(
            rgba(8,124,255,.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8,124,255,.05) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
    mask-image:
        linear-gradient(
            90deg,
            transparent,
            #000 17%,
            #000 83%,
            transparent
        );
}

.blog-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.blog-glow-one {
    width: 420px;
    height: 420px;
    left: -210px;
    bottom: -210px;
    background:
        radial-gradient(
            circle,
            rgba(24,201,232,.17),
            transparent 70%
        );
}

.blog-glow-two {
    width: 500px;
    height: 500px;
    right: -250px;
    top: -250px;
    background:
        radial-gradient(
            circle,
            rgba(236,72,153,.13),
            transparent 70%
        );
}

.blog-hero-inner {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns:
        minmax(0,.95fr)
        minmax(0,1.05fr);
    align-items: center;
    gap: 50px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.blog-hero-content {
    max-width: 600px;
}

.blog-hero-content h1 {
    margin: 0 0 22px;
    color: var(--blog-navy);
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: .96;
    letter-spacing: -.065em;
}

.blog-hero-content h1 span,
.blog-hero-content h1 strong {
    display: block;
}

.blog-hero-content h1 span {
    background:
        linear-gradient(
            90deg,
            var(--blog-blue),
            var(--blog-cyan)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-hero-content h1 strong {
    background:
        linear-gradient(
            90deg,
            var(--blog-purple),
            var(--blog-pink)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-hero-content > p {
    max-width: 560px;
    margin: 0 0 27px;
    color: var(--blog-muted);
    font-size: 14px;
    line-height: 1.85;
}

.blog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.blog-hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px dashed rgba(118,87,255,.20);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 290px;
    height: 290px;
}

.orbit-two {
    width: 440px;
    height: 440px;
    border-color: rgba(8,124,255,.12);
}

.blog-hero-core {
    position: relative;
    z-index: 20;
    width: 145px;
    height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            var(--blog-blue),
            var(--blog-purple),
            var(--blog-pink)
        );
    color: #fff;
    box-shadow:
        0 24px 55px rgba(118,87,255,.24);
    animation:
        blogCorePulse 4s ease-in-out infinite;
}

.blog-hero-core strong {
    font-size: 32px;
    font-weight: 950;
}

.blog-hero-core span {
    margin-top: 5px;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .12em;
}

@keyframes blogCorePulse {

    0%,
    100% {
        box-shadow:
            0 24px 55px rgba(118,87,255,.22);
    }

    50% {
        box-shadow:
            0 30px 65px rgba(8,124,255,.28);
    }

}

.blog-hero-node {
    position: absolute;
    z-index: 30;
    min-width: 100px;
    padding: 11px 13px;
    border: 1px solid #dce6ef;
    border-radius: 10px;
    background: rgba(255,255,255,.95);
    color: var(--blog-navy);
    text-align: center;
    font-size: 7px;
    font-weight: 900;
    box-shadow:
        0 12px 27px rgba(7,27,53,.08);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.blog-hero-node:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow:
        0 18px 35px rgba(7,27,53,.12);
}

.node-ai {
    left: 32px;
    top: 58px;
    border-left: 3px solid var(--blog-purple);
}

.node-cloud {
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    border-left: 3px solid var(--blog-cyan);
}

.node-web {
    right: 32px;
    top: 58px;
    border-left: 3px solid var(--blog-blue);
}

.node-mobile {
    left: 32px;
    bottom: 58px;
    border-left: 3px solid var(--blog-green);
}

.node-business {
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    border-left: 3px solid var(--blog-orange);
}

.node-ecom {
    right: 32px;
    bottom: 58px;
    border-left: 3px solid var(--blog-pink);
}


/* =========================================================
   CATEGORY FILTER
   ========================================================= */

.blog-categories {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 13px 0;
    border-bottom: 1px solid var(--blog-border);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
}

.blog-category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.blog-category {
    padding: 8px 14px;
    border: 1px solid #dce5ee;
    border-radius: 30px;
    background: #fff;
    color: #617487;
    font-family: inherit;
    font-size: 8px;
    font-weight: 800;
    cursor: pointer;
    transition:
        color .2s ease,
        border-color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.blog-category:hover {
    transform: translateY(-1px);
    border-color: var(--blog-blue);
    color: var(--blog-blue);
}

.blog-category.active {
    border-color: var(--blog-blue);
    background:
        linear-gradient(
            135deg,
            var(--blog-blue),
            var(--blog-purple)
        );
    color: #fff;
}


/* =========================================================
   FEATURED
   ========================================================= */

.blog-featured {
    background:
        linear-gradient(
            180deg,
            #f8fbff,
            #fff
        );
}

.blog-featured-card {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    overflow: hidden;
    border: 1px solid var(--blog-border);
    border-radius: 20px;
    background: #fff;
    box-shadow:
        0 22px 55px rgba(7,27,53,.07);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.blog-featured-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 28px 65px rgba(7,27,53,.10);
}

.blog-featured-image {
    min-height: 360px;
}

.blog-image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(24,201,232,.18),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #071d39,
            #26225b,
            #4a1e61
        );
    color: #fff;
}

.blog-image-placeholder::before,
.blog-image-placeholder::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

.blog-image-placeholder::before {
    width: 260px;
    height: 260px;
}

.blog-image-placeholder::after {
    width: 370px;
    height: 370px;
}

.blog-image-placeholder span {
    position: relative;
    z-index: 2;
    font-size: 52px;
    font-weight: 950;
    background:
        linear-gradient(
            90deg,
            #65dcff,
            #b19aff,
            #ff9acb
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-image-placeholder strong {
    position: relative;
    z-index: 2;
    margin-top: 7px;
    font-size: 8px;
    letter-spacing: .18em;
}

.blog-featured-content {
    padding: 42px;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 17px;
}

.blog-post-meta span {
    padding: 6px 9px;
    border-radius: 20px;
    background: #edf5ff;
    color: var(--blog-blue);
    font-size: 7px;
    font-weight: 850;
}

.blog-post-meta span + span {
    background: #f4efff;
    color: var(--blog-purple);
}

.blog-featured-content h3 {
    margin: 0 0 16px;
    color: var(--blog-navy);
    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.blog-featured-content > p {
    margin: 0;
    color: var(--blog-muted);
    font-size: 11px;
    line-height: 1.85;
}

.blog-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 28px;
    padding-top: 19px;
    border-top: 1px solid var(--blog-border);
}

.blog-post-footer span {
    color: #8493a3;
    font-size: 8px;
    font-weight: 700;
}

.blog-post-footer a {
    color: var(--blog-blue);
    font-size: 9px;
    font-weight: 850;
    text-decoration: none;
}


/* =========================================================
   BLOG CARDS
   ========================================================= */

.blog-posts {
    background: #fff;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 17px;
}

.blog-card {
    overflow: hidden;
    border: 1px solid var(--blog-border);
    border-radius: 15px;
    background: #fff;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        opacity .25s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 20px 42px rgba(7,27,53,.09);
}

.blog-card-image {
    position: relative;
    height: 175px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(24,201,232,.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0b2341,
            #28245d
        );
}

.blog-card-image::before,
.blog-card-image::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}

.blog-card-image::before {
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
}

.blog-card-image::after {
    width: 100px;
    height: 100px;
    right: 35px;
    top: 30px;
}

.blog-card-image span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}

.blog-card:nth-child(2) .blog-card-image {
    background:
        linear-gradient(
            135deg,
            #101f42,
            #42316b
        );
}

.blog-card:nth-child(3) .blog-card-image {
    background:
        linear-gradient(
            135deg,
            #082d42,
            #173d68
        );
}

.blog-card:nth-child(4) .blog-card-image {
    background:
        linear-gradient(
            135deg,
            #321d45,
            #69305d
        );
}

.blog-card:nth-child(5) .blog-card-image {
    background:
        linear-gradient(
            135deg,
            #12352f,
            #15517a
        );
}

.blog-card:nth-child(6) .blog-card-image {
    background:
        linear-gradient(
            135deg,
            #241d4c,
            #632956
        );
}

.blog-card-content {
    padding: 22px;
}

.blog-card-meta {
    margin-bottom: 11px;
    color: var(--blog-blue);
    font-size: 7px;
    font-weight: 850;
}

.blog-card-meta span {
    padding: 0 4px;
    color: #b1bfcb;
}

.blog-card h3 {
    margin: 0 0 10px;
    color: var(--blog-navy);
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: -.025em;
}

.blog-card p {
    min-height: 62px;
    margin: 0 0 17px;
    color: var(--blog-muted);
    font-size: 9px;
    line-height: 1.75;
}

.blog-card a {
    color: var(--blog-blue);
    font-size: 9px;
    font-weight: 850;
    text-decoration: none;
}

.blog-card a:hover {
    text-decoration: underline;
}

.blog-card.blog-hidden {
    display: none;
}

.blog-card.blog-filtered-out {
    display: none;
}

.blog-load-more {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.blog-newsletter {
    padding: 80px 0;
    background:
        linear-gradient(
            135deg,
            #f5fbff,
            #faf7ff
        );
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.blog-newsletter-inner {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 60px;
}

.blog-newsletter h2 {
    margin: 0 0 13px;
    color: var(--blog-navy);
    font-size: clamp(30px,3.5vw,45px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.blog-newsletter h2 span {
    display: block;
    background:
        linear-gradient(
            90deg,
            var(--blog-blue),
            var(--blog-purple)
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-newsletter p {
    margin: 0;
    color: var(--blog-muted);
    font-size: 11px;
    line-height: 1.75;
}

.blog-newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
}

.blog-newsletter-form input {
    width: 100%;
    min-height: 46px;
    padding: 0 15px;
    border: 1px solid #d4e0eb;
    border-radius: 9px;
    outline: none;
    background: #fff;
    color: var(--blog-navy);
    font-family: inherit;
    font-size: 10px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.blog-newsletter-form input:focus {
    border-color: var(--blog-blue);
    box-shadow:
        0 0 0 3px rgba(8,124,255,.09);
}

.blog-newsletter-form small {
    grid-column: 1 / -1;
    min-height: 15px;
    color: var(--blog-green);
    font-size: 8px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.blog-final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(24,201,232,.15),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(236,72,153,.15),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #071b35,
            #1c2857,
            #352060
        );
    text-align: center;
}

.blog-final-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 520px;
    height: 520px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(118,87,255,.14),
            transparent 68%
        );
}

.blog-final-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.blog-final-content > span {
    color: #65dcff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
}

.blog-final-content h2 {
    margin: 15px 0 18px;
    color: #fff;
    font-size: clamp(40px,5vw,62px);
    line-height: 1;
    letter-spacing: -.05em;
}

.blog-final-content h2 strong {
    display: block;
    background:
        linear-gradient(
            90deg,
            #65dcff,
            #a795ff,
            #ff96c9
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-final-content > p {
    max-width: 650px;
    margin: 0 auto 29px;
    color: #c2d0e0;
    font-size: 13px;
    line-height: 1.8;
}

.blog-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.lbs-blog-page a:focus-visible,
.lbs-blog-page button:focus-visible,
.lbs-blog-page input:focus-visible {
    outline:
        3px solid rgba(8,124,255,.25);
    outline-offset: 3px;
}


/* =========================================================
   JAVASCRIPT STATES
   ========================================================= */

.blog-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .65s ease,
        transform .65s ease;
    transition-delay:
        var(--blog-delay, 0ms);
}

.blog-visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-node-selected {
    transform:
        translateY(-6px) scale(1.04) !important;
    border-color:
        var(--blog-blue) !important;
    box-shadow:
        0 18px 36px rgba(8,124,255,.14) !important;
}

.blog-button-clicked {
    transform: scale(.97) !important;
}

.blog-message-success {
    color: var(--blog-green) !important;
}

.blog-message-error {
    color: #e04b4b !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .blog-post-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 780px) {

    .lbs-blog-page .container {
        width: min(
            calc(100% - 30px),
            620px
        );
    }

    .lbs-blog-page .section {
        padding: 65px 0;
    }


    /* Hero */

    .blog-hero {
        min-height: auto;
        padding: 65px 0;
    }

    .blog-hero-inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-hero-content {
        max-width: 620px;
        margin: auto;
        text-align: center;
    }

    .blog-hero-content h1 {
        font-size: clamp(43px,9vw,60px);
    }

    .blog-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .blog-hero-actions {
        justify-content: center;
    }

    .blog-hero-visual {
        min-height: 470px;
        max-width: 580px;
        width: 100%;
        margin: auto;
    }

    .orbit-one {
        width: 270px;
        height: 270px;
    }

    .orbit-two {
        width: 390px;
        height: 390px;
    }


    /* Heading */

    .blog-section-heading {
        display: block;
        text-align: center;
    }

    .blog-section-heading > p {
        margin: 17px auto 0;
    }


    /* Featured */

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-image,
    .blog-image-placeholder {
        min-height: 300px;
    }

    .blog-featured-content {
        padding: 30px;
    }


    /* Newsletter */

    .blog-newsletter-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .blog-newsletter-form {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .lbs-blog-page .container {
        width: calc(100% - 28px);
    }

    .lbs-blog-page .section {
        padding: 55px 0;
    }


    /* Hero */

    .blog-hero {
        padding: 50px 0;
    }

    .blog-hero-content h1 {
        font-size: 40px;
    }

    .blog-hero-actions,
    .blog-final-actions {
        flex-direction: column;
    }

    .blog-btn {
        width: 100%;
    }


    /* Hero Visual */

    .blog-hero-visual {
        min-height: 430px;
    }

    .blog-orbit.orbit-one {
        width: 215px;
        height: 215px;
    }

    .blog-orbit.orbit-two {
        width: 320px;
        height: 320px;
    }

    .blog-hero-core {
        width: 105px;
        height: 105px;
    }

    .blog-hero-core strong {
        font-size: 24px;
    }

    .blog-hero-core span {
        font-size: 5px;
    }

    .blog-hero-node {
        min-width: 76px;
        padding: 8px 6px;
        font-size: 5px;
    }

    .node-ai {
        left: 0;
        top: 50px;
    }

    .node-cloud {
        top: 3px;
    }

    .node-web {
        right: 0;
        top: 50px;
    }

    .node-mobile {
        left: 0;
        bottom: 50px;
    }

    .node-business {
        bottom: 3px;
    }

    .node-ecom {
        right: 0;
        bottom: 50px;
    }


    /* Categories */

    .blog-categories {
        position: relative;
    }

    .blog-category-list {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .blog-category-list::-webkit-scrollbar {
        display: none;
    }

    .blog-category {
        flex: 0 0 auto;
    }


    /* Featured */

    .blog-featured-content {
        padding: 23px;
    }

    .blog-featured-content h3 {
        font-size: 27px;
    }

    .blog-post-footer {
        align-items: flex-start;
        flex-direction: column;
    }


    /* Cards */

    .blog-post-grid {
        grid-template-columns: 1fr;
    }

    .blog-card p {
        min-height: auto;
    }


    /* Newsletter */

    .blog-newsletter {
        padding: 60px 0;
    }

    .blog-newsletter-form {
        grid-template-columns: 1fr;
    }

    .blog-newsletter-form small {
        grid-column: 1;
    }


    /* CTA */

    .blog-final-cta {
        padding: 75px 0;
    }

    .blog-final-content h2 {
        font-size: 37px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .blog-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .blog-hero-core {
        animation: none !important;
    }

    .blog-node-selected {
        transform: none !important;
    }

}