/* =========================================================
   MICHAEL WOOD — BLOG V2
========================================================= */

:root {
    --blog-ink: #081225;
    --blog-copy: #53617a;
    --blog-dark: #050b1a;
    --blog-soft: #f8faff;
    --blog-border: #e1e6ed;
    --blog-blue: #3f67e8;
    --blog-cyan: #62d9f4;
    --blog-purple: #825fe7;
}

.blogContainer {
    width: min(1500px, calc(100% - 60px));
    margin: 0 auto;
}

.blogEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--blog-cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.blogEyebrow>span {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--blog-cyan), var(--blog-purple));
}

.blogEyebrow--dark {
    color: #315f93;
}

.blogEyebrow--dark>span {
    background: #5577a0;
}

.blogButton {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 19px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.blogButton:hover {
    transform: translateY(-2px);
}

.blogButton--primary {
    color: #fff;
    border: 1px solid rgba(98, 217, 244, .28);
    background: linear-gradient(110deg, #3f67e8, #7659df);
    box-shadow: 0 18px 42px rgba(54, 75, 210, .19);
}

.blogButton--outline {
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .025);
}

.blogTextLink {
    color: #263653;
    font-size: 10px;
    font-weight: 850;
    text-decoration: none;
}

.blogTextLink span {
    color: var(--blog-blue);
}

.blogReveal {
    opacity: 0;
    transition: opacity .8s ease, transform .9s cubic-bezier(.2, .8, .2, 1);
}

.blogReveal--left {
    transform: translateX(-48px);
}

.blogReveal--right {
    transform: translateX(48px);
}

.blogReveal--swing {
    transform: translateY(40px) rotate(1.7deg);
    transform-origin: 50% 0%;
}

.blogReveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
}

.blogDelay1 {
    transition-delay: .08s;
}

.blogDelay2 {
    transition-delay: .16s;
}

.blogDelay3 {
    transition-delay: .24s;
}

.blogDelay4 {
    transition-delay: .32s;
}

.blogSectionHead {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 34px;
}

.blogSectionHead h2,
.blogArchive__head h2,
.blogRelated h2 {
    max-width: 900px;
    margin: 15px 0 0;
    color: var(--blog-ink);
    font-size: clamp(42px, 4.8vw, 68px);
    line-height: .98;
    letter-spacing: -.06em;
}

.blogSectionHead h2 span,
.blogArchive__head h2 span,
.blogRelated h2 span {
    background: linear-gradient(100deg, #4769df 0%, #6d63da 48%, #8a62df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blogSectionHead__copy {
    margin: 0;
    color: var(--blog-copy);
    font-size: 13px;
    line-height: 1.7;
}

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

.blogHero,
.articleHero {
    position: relative;
    overflow: hidden;
    background: var(--blog-dark);
}

.blogHero__grid,
.articleHero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.blogHero__glow,
.articleHero__glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(95px);
    pointer-events: none;
}

.blogHero__glow--one {
    left: -180px;
    top: 8%;
    background: rgba(64, 99, 224, .12);
}

.blogHero__glow--two {
    right: -210px;
    bottom: -220px;
    background: rgba(115, 79, 218, .1);
}

.blogHero__inner {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px;
    align-items: center;
    padding: 85px 0 95px;
}

.blogHero h1 {
    max-width: 900px;
    margin: 25px 0 22px;
    color: #fff;
    font-size: clamp(58px, 6vw, 96px);
    line-height: .91;
    letter-spacing: -.075em;
}

.blogHero h1 span {
    display: block;
    color: #adb7cb;
}

.blogHero__lead {
    max-width: 760px;
    margin: 0;
    color: rgba(238, 243, 255, .63);
    font-size: 15px;
    line-height: 1.75;
}

.blogHero__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.blogHero__topics span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .02);
    font-size: 8px;
    font-weight: 800;
}

.blogHero__dev {
    display: grid;
    place-items: center;
}

.blogDevWindow {
    width: min(100%, 590px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: #071021;
    box-shadow: 0 35px 85px rgba(0, 0, 0, .28);
    animation: blogFloat 6s ease-in-out infinite;
}

.blogDevWindow__bar {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.blogDevWindow__bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.blogDevWindow__bar span {
    margin-left: auto;
    color: rgba(255, 255, 255, .28);
    font-size: 8px;
}

.blogDevWindow__body {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
}

.blogDevWindow__body small {
    color: #66e3ff;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 9px;
}

.blogDevWindow__body strong {
    margin: 18px 0 25px;
    color: #fff;
    font-size: 31px;
    letter-spacing: -.045em;
}

.blogDevWindow__body code {
    margin: 4px 0;
    color: #aeb9d3;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
}

.blogDevWindow__body p {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .42);
    font-size: 11px;
    line-height: 1.6;
}

@keyframes blogFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-.3deg);
    }

    50% {
        transform: translateY(-8px) rotate(.3deg);
    }
}

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

.blogFeatured {
    padding: 105px 0;
    background: #fff;
}

.blogFeaturedCard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--blog-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(15, 23, 42, .05);
}

.blogFeaturedCard__visual {
    min-height: 460px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(420px 240px at 50% 45%, rgba(63, 103, 232, .08), transparent 70%),
        linear-gradient(145deg, #f4f6f9, #e8edf3);
}

.blogFeaturedCard__visual>img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blogFeaturedCard__code {
    width: min(78%, 560px);
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border: 1px solid #dce3ec;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 22px 45px rgba(15, 23, 42, .08);
}

.blogFeaturedCard__code span,
.blogFeaturedCard__code code {
    color: #7f899e;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
}

.blogFeaturedCard__code strong {
    margin: 22px 0;
    color: var(--blog-ink);
    font-size: 30px;
    letter-spacing: -.045em;
}

.blogFeaturedCard__body {
    display: flex;
    flex-direction: column;
    padding: 38px;
}

.blogFeaturedCard__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.blogFeaturedCard__meta span {
    color: #5672a5;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.blogFeaturedCard__meta b {
    color: #8b94a5;
    font-size: 8px;
}

.blogFeaturedCard h2 {
    margin: 46px 0 14px;
    font-size: clamp(30px, 3vw, 45px);
    line-height: 1.03;
    letter-spacing: -.05em;
}

.blogFeaturedCard h2 a {
    color: var(--blog-ink);
    text-decoration: none;
}

.blogFeaturedCard__body>p {
    margin: 0;
    color: var(--blog-copy);
    font-size: 13px;
    line-height: 1.7;
}

.blogFeaturedCard__footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #edf0f4;
}

.blogFeaturedCard__footer>span {
    color: #8a93a6;
    font-size: 9px;
}

.blogFeaturedCard__footer a {
    color: #263653;
    font-size: 9px;
    font-weight: 850;
    text-decoration: none;
}

.blogFeaturedCard__footer a b {
    color: var(--blog-blue);
}

/* =========================================================
   ARCHIVE
========================================================= */

.blogArchive {
    padding: 105px 0;
    background: var(--blog-soft);
}

.blogArchive__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: end;
    margin-bottom: 35px;
}

.blogFilters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.blogFilters button {
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid #dce2ea;
    border-radius: 999px;
    color: #5d677d;
    background: #fff;
    font: inherit;
    font-size: 9px;
    font-weight: 850;
    cursor: pointer;
}

.blogFilters button.is-active {
    color: #fff;
    border-color: #243b76;
    background: #17213b;
}

.blogGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.blogCard {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--blog-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .035);
}

.blogCard[hidden] {
    display: none !important;
}

.blogCard__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.blogCard__top span {
    color: #5672a5;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.blogCard__top b {
    color: #8b94a5;
    font-size: 8px;
}

.blogCard h3 {
    margin: 44px 0 11px;
    font-size: 23px;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.blogCard h3 a {
    color: var(--blog-ink);
    text-decoration: none;
}

.blogCard>p {
    margin: 0;
    color: var(--blog-copy);
    font-size: 12px;
    line-height: 1.65;
}

.blogCard__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
}

.blogCard__tags span {
    padding: 6px 8px;
    border: 1px solid #e4e8ee;
    border-radius: 999px;
    color: #70798c;
    background: #f9fafb;
    font-size: 7px;
    font-weight: 750;
}

.blogCard footer {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #edf0f4;
}

.blogCard footer>span {
    color: #8a93a6;
    font-size: 8px;
}

.blogCard footer a {
    color: #263653;
    font-size: 9px;
    font-weight: 850;
    text-decoration: none;
}

.blogCard footer a b {
    color: var(--blog-blue);
}

.blogEmpty {
    margin-top: 15px;
    padding: 22px;
    border: 1px solid var(--blog-border);
    border-radius: 14px;
    color: var(--blog-copy);
    background: #fff;
    text-align: center;
}

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

.articleHero__glow {
    right: -220px;
    top: 80px;
    background: rgba(90, 77, 210, .11);
}

.articleHero__back {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-top: 30px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    font-weight: 800;
    text-decoration: none;
}

.articleHero__inner {
    position: relative;
    z-index: 2;
    min-height: 650px;
    display: grid;
    gap: 85px;
    align-items: center;
    padding: 50px 0 90px;
}

.articleHero h1 {
    max-width: 920px;
    margin: 23px 0 20px;
    color: #fff;
    font-size: clamp(48px, 5.4vw, 82px);
    line-height: .94;
    letter-spacing: -.065em;
}

.articleHero__excerpt {
    max-width: 730px;
    margin: 0;
    color: rgba(238, 243, 255, .62);
    font-size: 15px;
    line-height: 1.75;
}

.articleHero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 28px;
}

.articleHero__meta span {
    background: linear-gradient(100deg, #4769df 0%, #6d63da 48%, #8a62df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 8px;
    font-weight: 750;
}

.articleHero__meta b {
    color: rgba(255, 255, 255, .7);
}

.articleHero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 22px;
}

.articleHero__tags span {
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 999px;
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .02);
    font-size: 7px;
    font-weight: 800;
}

.articleHero__side {
    display: grid;
    place-items: center;
}

.articleHero__image,
.articleHero__devcard {
    width: min(100%, 560px);
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: #081126;
    box-shadow: 0 30px 75px rgba(0, 0, 0, .26);
}

.articleHero__image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.articleHero__devcard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
}

.articleHero__devcard small {
    color: #66e3ff;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.articleHero__devcard strong {
    margin: 18px 0 30px;
    color: #fff;
    font-size: 31px;
    letter-spacing: -.045em;
}

.articleHero__devcard code {
    color: #8f9bb4;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
}

.articleHero__devcard p {
    margin: 18px 0;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   ARTICLE BODY
========================================================= */

.articlePage {
    padding: 95px 0;
    background: #fff;
}

.articleLayout {
    display: grid;
    grid-template-columns: 220px minmax(0, 850px);
    gap: 70px;
    justify-content: center;
    align-items: start;
}

.articleAside__sticky {
    position: sticky;
    top: 150px;
    padding-top: 5px;
}

.articleAside__sticky>span,
.articleAside__sticky strong,
.articleAside__sticky small {
    display: block;
}

.articleAside__sticky>span {
    color: #6078a5;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.articleAside__sticky strong {
    margin-top: 12px;
    color: var(--blog-ink);
    font-size: 18px;
}

.articleAside__sticky small {
    margin-top: 6px;
    color: #8c95a5;
    font-size: 8px;
}

.articleAside__sticky a {
    display: inline-flex;
    margin-top: 24px;
    color: var(--blog-blue);
    font-size: 9px;
    font-weight: 850;
    text-decoration: none;
}

.articleContent {
    color: #334057;
    font-size: 16px;
    line-height: 1.82;
}

.articleContent>*:first-child {
    margin-top: 0;
}

.articleContent h2,
.articleContent h3,
.articleContent h4 {
    color: var(--blog-ink);
    letter-spacing: -.035em;
}

.articleContent h2 {
    margin: 58px 0 18px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
}

.articleContent h3 {
    margin: 38px 0 14px;
    font-size: 25px;
    line-height: 1.15;
}

.articleContent p,
.articleContent ul,
.articleContent ol,
.articleContent blockquote {
    margin-top: 0;
    margin-bottom: 22px;
}

.articleContent ul,
.articleContent ol {
    padding-left: 24px;
}

.articleContent li {
    margin-bottom: 8px;
}

.articleContent a {
    color: #315fc4;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.articleContent strong {
    color: #182238;
}

.articleContent blockquote {
    padding: 22px 24px;
    border-left: 3px solid #5574ca;
    border-radius: 0 12px 12px 0;
    color: #40506a;
    background: #f8faff;
}

.articleContent pre,
.articleContent code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.articleContent pre {
    overflow-x: auto;
    padding: 20px;
    border-radius: 12px;
    color: #dbe7ff;
    background: #071021;
    font-size: 12px;
    line-height: 1.65;
}

.articleContent :not(pre)>code {
    padding: 2px 5px;
    border-radius: 5px;
    color: #334a83;
    background: #edf2fb;
    font-size: .88em;
}

.articleContent table {
    width: 100%;
    margin: 26px 0;
    border-collapse: collapse;
    font-size: 13px;
}

.articleContent th,
.articleContent td {
    padding: 11px 12px;
    border: 1px solid #e2e7ee;
    text-align: left;
    vertical-align: top;
}

.articleContent th {
    color: var(--blog-ink);
    background: #f8faff;
}

.articleContent img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

/* =========================================================
   ARTICLE CTA / RELATED / FINAL
========================================================= */

.articleCta,
.blogFinal {
    padding: 0 30px 85px;
    background: #fff;
}

.articleCta__inner,
.blogFinal__inner {
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: end;
    border-radius: 21px;
    background: #071021;
}

.articleCta h2,
.blogFinal h2 {
    max-width: 850px;
    margin: 14px 0 10px;
    color: #fff;
    font-size: clamp(39px, 4.6vw, 64px);
    line-height: .98;
    letter-spacing: -.06em;
}

.articleCta h2 span,
.blogFinal h2 span {
    color: rgba(255, 255, 255, .4);
}

.articleCta p,
.blogFinal p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    line-height: 1.7;
}

.articleCta__actions,
.blogFinal__actions {
    min-width: 205px;
    display: grid;
    gap: 9px;
}

.blogRelated {
    padding: 100px 0;
    background: var(--blog-soft);
}

.blogRelated__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.blogRelatedCard {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid var(--blog-border);
    border-radius: 17px;
    background: #fff;
}

.blogRelatedCard>span {
    color: #5672a5;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.blogRelatedCard h3 {
    margin: 42px 0 10px;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.blogRelatedCard h3 a {
    color: var(--blog-ink);
    text-decoration: none;
}

.blogRelatedCard p {
    margin: 0;
    color: var(--blog-copy);
    font-size: 11px;
    line-height: 1.65;
}

.blogRelatedCard>a {
    margin-top: auto;
    color: #263653;
    font-size: 9px;
    font-weight: 850;
    text-decoration: none;
}

.blogRelatedCard>a b {
    color: var(--blog-blue);
}

.blogSwipeHint {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    color: #647089;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* =========================================================
   404
========================================================= */

.blogNotFound {
    min-height: 70vh;
    display: grid;
    place-items: center;
    color: #fff;
    background: #050b1a;
}

.blogNotFound__inner {
    max-width: 720px;
    text-align: center;
}

.blogNotFound__inner>span {
    color: rgba(255, 255, 255, .12);
    font-size: 110px;
    font-weight: 900;
}

.blogNotFound h1 {
    margin: -20px 0 12px;
    font-size: 52px;
    letter-spacing: -.055em;
}

.blogNotFound p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .5);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .blogHero__inner,
    .articleHero__inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .blogHero__dev,
    .articleHero__side {
        max-width: 700px;
        width: 100%;
    }

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

@media (max-width: 900px) {

    .blogSectionHead,
    .blogArchive__head,
    .articleLayout,
    .articleCta__inner,
    .blogFinal__inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .blogFilters {
        justify-content: flex-start;
    }

    .blogFeaturedCard {
        grid-template-columns: 1fr;
    }

    .blogFeaturedCard__visual {
        min-height: 350px;
    }

    .articleAside__sticky {
        position: static;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 18px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--blog-border);
    }

    .articleAside__sticky>span,
    .articleAside__sticky strong,
    .articleAside__sticky small,
    .articleAside__sticky a {
        margin: 0;
    }
}

@media (max-width: 720px) {
    .blogContainer {
        width: calc(100% - 28px);
    }

    .blogHero__inner,
    .articleHero__inner {
        min-height: 0;
        padding: 65px 0 75px;
    }

    .blogHero h1 {
        font-size: clamp(48px, 14vw, 72px);
    }

    .articleHero h1 {
        font-size: clamp(43px, 12.5vw, 64px);
    }

    .blogHero__lead,
    .articleHero__excerpt {
        font-size: 14px;
    }

    .blogDevWindow__body {
        min-height: 270px;
        padding: 25px;
    }

    .blogFeatured,
    .blogArchive,
    .articlePage,
    .blogRelated {
        padding: 72px 0;
    }

    .blogFeaturedCard__visual {
        min-height: 280px;
    }

    .blogFeaturedCard__body {
        padding: 25px 21px;
    }

    .blogFeaturedCard h2 {
        margin-top: 32px;
        font-size: 31px;
    }

    .blogGrid {
        grid-template-columns: 1fr;
    }

    .blogCard {
        min-height: 340px;
    }

    .articleHero__side {
        order: -1;
    }

    .articleHero__image,
    .articleHero__devcard {
        min-height: 280px;
    }

    .articleHero__image img {
        min-height: 280px;
    }

    .articleContent {
        font-size: 15px;
        line-height: 1.78;
    }

    .articleContent h2 {
        margin-top: 44px;
    }

    .articleContent table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .blogMobileSlider {
        width: calc(100vw - 14px);
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-right: 28px;
    }

    .blogMobileSlider::-webkit-scrollbar {
        display: none;
    }

    .blogMobileSlider>* {
        scroll-snap-align: start;
    }

    .blogRelated__track .blogRelatedCard {
        width: calc(100vw - 52px);
        min-width: calc(100vw - 52px);
    }

    .blogSwipeHint {
        display: flex;
    }

    .articleCta,
    .blogFinal {
        padding: 0 14px 65px;
    }

    .articleCta__inner,
    .blogFinal__inner {
        padding: 32px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blogReveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .blogDevWindow {
        animation: none;
    }
}

/* =========================================================
   V5 — LIGHT SECTION COLOUR REFINEMENT
========================================================= */
.blogSectionHead h2 span,
.blogArchive__head h2 span,
.blogRelated h2 span {
    background: linear-gradient(100deg, #4769df 0%, #6d63da 48%, #8a62df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}