.blog-page {
    --blog-blue-950: #00143d;
    --blog-blue-900: #001f5c;
    --blog-blue-800: #002874;
    --blog-blue-700: #0c4098;
    --blog-blue-100: #dce9fa;
    --blog-blue-050: #f2f6fc;
    --blog-cyan: #28bfd2;
    --blog-ink: #101828;
    --blog-slate: #566278;
    --blog-muted: #768197;
    --blog-line: #dce3ed;
    --blog-paper: #f8fafc;
    --blog-white: #fff;
    --blog-shadow: 0 18px 54px rgba(0, 26, 78, 0.12);
    --blog-max: 1216px;
    --blog-reading: 760px;
    color: var(--blog-ink);
    background: var(--blog-white);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.blog-page *,
.blog-page *::before,
.blog-page *::after {
    box-sizing: border-box;
}

.blog-page a {
    color: inherit;
    text-decoration: none;
}

.blog-page img {
    display: block;
    max-width: 100%;
}

.blog-page :focus-visible {
    outline: 3px solid rgba(40, 191, 210, 0.82);
    outline-offset: 4px;
}

.blog-page .blog-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 0;
    color: var(--blog-blue-900);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(0, 40, 116, 0.11);
    box-shadow: 0 12px 32px rgba(7, 23, 57, 0.08);
    backdrop-filter: blur(16px);
}

.blog-page .blog-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-page .blog-header .logo img {
    width: auto;
    height: 70px;
}

.blog-page .service-page-navigation__menu > li > a[aria-current="page"] {
    color: var(--blog-blue-800);
    background: var(--blog-blue-050);
}

body.blog-page.service-page > main {
    width: 100%;
    padding: 90px 0 0;
    background: var(--blog-white);
}

.blog-page__shell {
    width: min(calc(100% - 48px), var(--blog-max));
    margin-inline: auto;
}

.blog-page__skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 16px;
    color: var(--blog-white);
    background: var(--blog-blue-950);
    transform: translateY(-160%);
}

.blog-page__skip-link:focus {
    transform: translateY(0);
}

.blog-page__kicker {
    margin: 0 0 12px;
    color: var(--blog-blue-700);
    font-family: "Manrope", sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-page__intro {
    color: var(--blog-white);
    background-color: var(--blog-blue-950);
    background-image:
        linear-gradient(90deg, rgba(2, 16, 46, 0.96) 0%, rgba(2, 16, 46, 0.86) 42%, rgba(2, 16, 46, 0.6) 72%, rgba(2, 16, 46, 0.48) 100%),
        linear-gradient(180deg, rgba(1, 12, 34, 0.08), rgba(1, 12, 34, 0.48)),
        url("/images/home-syn-hero-16x9-v4.q92.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-page__intro-inner {
    min-height: 230px;
    display: flex;
    align-items: center;
    padding: 50px 0 54px;
}

.blog-page__intro-inner > div {
    max-width: 780px;
}

.blog-page__intro .blog-page__kicker,
.blog-page__article-header .blog-page__kicker {
    color: #9fe1e9;
}

.blog-page__intro .blog-page__kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(159, 225, 233, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.blog-page__intro .blog-page__kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #9fe1e9;
    box-shadow: 0 0 12px rgba(159, 225, 233, 0.7);
}

.blog-page__article-header .blog-page__kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border: 1px solid rgba(159, 225, 233, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.blog-page__article-header .blog-page__kicker::before {
    content: "";
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #9fe1e9;
    box-shadow: 0 0 6px rgba(159, 225, 233, 0.42);
}

.blog-page__intro h1,
.blog-page__featured h2,
.blog-page__archive h2,
.blog-page__article-header h1,
.blog-page__related h2 {
    margin: 0;
    color: var(--blog-blue-950);
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.blog-page__intro h1 {
    color: var(--blog-white);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1;
}

.blog-page__intro-copy {
    max-width: 670px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.68;
}

.blog-page__featured-wrap {
    padding: 66px 0 74px;
}

.blog-page__featured {
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
    overflow: hidden;
    background: var(--blog-white);
    border: 1px solid var(--blog-line);
    border-radius: 8px;
    box-shadow: var(--blog-shadow);
}

.blog-page__featured-media {
    min-height: 390px;
    overflow: hidden;
    background: var(--blog-blue-050);
}

.blog-page__featured-media img,
.blog-page__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-page__featured:hover .blog-page__featured-media img,
.blog-page__card:hover .blog-page__card-media img {
    transform: scale(1.035);
}

.blog-page__featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px;
}

.blog-page__featured h2 {
    font-size: clamp(2rem, 3.1vw, 3.2rem);
    line-height: 1.08;
}

.blog-page__featured-content > p {
    margin: 21px 0 0;
    color: var(--blog-slate);
    line-height: 1.72;
}

.blog-page__meta,
.blog-page__byline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--blog-muted);
    font-size: 0.83rem;
    font-weight: 600;
}

.blog-page__topic {
    color: var(--blog-blue-700);
    font-weight: 800;
}

.blog-page__meta-dot {
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #a7b0c0;
}

.blog-page__text-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 29px;
    color: var(--blog-blue-800);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.blog-page__text-link::after {
    content: "→";
    font-size: 1.2rem;
    transition: transform 180ms ease;
}

.blog-page__text-link:hover::after {
    transform: translateX(5px);
}

.blog-page__archive,
.blog-page__related {
    padding: 76px 0 104px;
    background: var(--blog-paper);
}

.blog-page__archive-heading {
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
    width: auto;
    padding: 0;
    margin-bottom: 42px;
    color: inherit;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.blog-page__archive h2,
.blog-page__related h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.02;
}

.blog-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 48px;
}

.blog-page__card-media {
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
    margin-bottom: 22px;
    background: var(--blog-blue-100);
    border-radius: 6px;
}

.blog-page__card .blog-page__meta {
    margin-bottom: 12px;
}

.blog-page__card h3 {
    max-width: 25ch;
    margin: 0;
    color: var(--blog-blue-950);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.72rem);
    line-height: 1.26;
    letter-spacing: -0.03em;
}

.blog-page__card h3 a:hover {
    color: var(--blog-blue-700);
}

.blog-page__card > p {
    max-width: 58ch;
    margin: 13px 0 0;
    color: var(--blog-slate);
    line-height: 1.64;
}

.blog-page__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 72px;
}

.blog-page__pagination a {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--blog-blue-800);
    background: var(--blog-white);
    border: 1px solid var(--blog-line);
    border-radius: 50%;
    font-weight: 700;
}

.blog-page__pagination a[aria-current="page"] {
    color: var(--blog-white);
    background: var(--blog-blue-800);
    border-color: var(--blog-blue-800);
}

.blog-page__article-header {
    position: relative;
    top: auto;
    left: auto;
    z-index: auto;
    width: 100%;
    padding: 18px 0 22px;
    color: var(--blog-white);
    border-bottom: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: var(--blog-blue-950);
    background-image:
        linear-gradient(90deg, rgba(2, 16, 46, 0.96) 0%, rgba(2, 16, 46, 0.86) 42%, rgba(2, 16, 46, 0.6) 72%, rgba(2, 16, 46, 0.48) 100%),
        linear-gradient(180deg, rgba(1, 12, 34, 0.08), rgba(1, 12, 34, 0.48)),
        url("/images/home-syn-hero-16x9-v4.q92.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    scroll-margin-top: 90px;
}

.blog-page__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.86rem;
}

.blog-page__breadcrumbs a:hover {
    color: var(--blog-white);
}

.blog-page__article-heading {
    max-width: 1050px;
}

.blog-page__article-header h1 {
    max-width: 24ch;
    color: var(--blog-white);
    font-size: clamp(2.15rem, 3.4vw, 2.9rem);
    line-height: 1.04;
}

.blog-page__article-description {
    max-width: 920px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.45;
}

.blog-page__byline {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.64);
}

.blog-page__byline strong {
    color: var(--blog-white);
}

.blog-page__article-divider {
    position: relative;
    width: min(calc(100% - 48px), var(--blog-max));
    height: 78px;
    margin: 0 auto;
    background: radial-gradient(ellipse at center, rgba(40, 191, 210, 0.07), transparent 62%);
}

.blog-page__article-divider::before,
.blog-page__article-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-page__article-divider::before {
    width: min(72%, 720px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 191, 210, 0.4), transparent);
}

.blog-page__article-divider::after {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blog-cyan);
    box-shadow: 0 0 10px rgba(40, 191, 210, 0.42);
}

.blog-page__article-layout {
    width: min(calc(100% - 48px), 1060px);
    display: grid;
    grid-template-columns: 170px minmax(0, var(--blog-reading));
    gap: 54px;
    justify-content: center;
    margin: 14px auto 94px;
}

.blog-page__article-layout--without-toc {
    grid-template-columns: minmax(0, var(--blog-reading));
}

.blog-page__toc {
    position: sticky;
    top: 122px;
    align-self: start;
}

.blog-page__toc > p {
    margin: 0 0 12px;
    color: var(--blog-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-page__toc a {
    display: block;
    padding: 10px 0;
    color: var(--blog-slate);
    border-bottom: 1px solid var(--blog-line);
    font-size: 0.85rem;
    line-height: 1.4;
}

.blog-page__toc a:hover {
    color: var(--blog-blue-700);
}

.blog-page__toc .blog-page__toc-link--title {
    color: var(--blog-blue-900);
    font-weight: 800;
}

.blog-page__toc .blog-page__toc-link--nested {
    padding-left: 12px;
    font-size: 0.8rem;
}

.blog-page__article-body {
    min-width: 0;
    color: #263247;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.7;
}

.blog-page__article-body > p:first-child::first-letter {
    color: var(--blog-blue-800);
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
}

.blog-page__article-body h2 {
    margin: 42px 0 14px;
    color: var(--blog-blue-950);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.45rem, 2vw, 1.58rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    scroll-margin-top: 110px;
}

.blog-page__article-body h3 {
    margin: 32px 0 10px;
    color: var(--blog-blue-900);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.2rem, 1.6vw, 1.34rem);
    line-height: 1.3;
    scroll-margin-top: 110px;
}

.blog-page__article-body h4 {
    margin: 26px 0 9px;
    color: var(--blog-blue-900);
    font-family: "Manrope", sans-serif;
    font-size: 1.08rem;
    line-height: 1.35;
}

.blog-page__article-body a[href] {
    color: var(--blog-blue-700);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
}

.blog-page__article-body a[href]:visited {
    color: var(--blog-blue-800);
}

.blog-page__article-body a[href]:hover {
    color: var(--blog-blue-950);
    text-decoration-thickness: 2px;
}

.blog-page__article-body p,
.blog-page__article-body ul,
.blog-page__article-body ol,
.blog-page__article-body blockquote,
.blog-page__article-body pre,
.blog-page__article-body figure {
    margin-top: 0;
    margin-bottom: 20px;
}

.blog-page__article-body p.blog-article-text-justified {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    overflow-wrap: break-word;
}

.blog-page__article-body .blog-article-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.75rem auto 2rem;
    padding: 0.6rem 0;
    overflow-x: auto;
    color: var(--blog-blue-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-style: italic;
    line-height: 1.25;
    white-space: nowrap;
}

.blog-page__article-body .blog-article-formula__fraction {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    vertical-align: middle;
}

.blog-page__article-body .blog-article-formula__numerator {
    padding: 0 0.45rem 0.28rem;
    border-bottom: 1.5px solid currentColor;
}

.blog-page__article-body .blog-article-formula__denominator {
    padding-top: 0.28rem;
}

.blog-page__article-body ul,
.blog-page__article-body ol {
    padding-left: 24px;
}

.blog-page__article-body li {
    margin-bottom: 10px;
}

.blog-page__article-body blockquote {
    margin: 44px 0;
    padding: 12px 0 12px 27px;
    color: var(--blog-blue-800);
    border-left: 3px solid var(--blog-cyan);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.3rem, 2.2vw, 1.78rem);
    font-weight: 700;
    line-height: 1.42;
}

.blog-page__article-body pre {
    overflow-x: auto;
    padding: 23px;
    color: #dceaff;
    background: var(--blog-blue-950);
    border-radius: 6px;
    font: 0.87rem/1.65 Consolas, monospace;
}

.blog-page__article-body img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.blog-page__article-body figcaption {
    margin-top: 10px;
    color: var(--blog-muted);
    font: 0.79rem/1.5 "DM Sans", sans-serif;
}

.blog-page__article-navigation {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
    padding: 52px 0;
    border-top: 1px solid var(--blog-line);
    border-bottom: 1px solid var(--blog-line);
}

.blog-page__article-navigation-item {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-page__article-navigation-item--next {
    text-align: right;
}

.blog-page__article-navigation small {
    margin-bottom: 8px;
    color: var(--blog-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.blog-page__article-navigation strong {
    color: var(--blog-blue-900);
    font-family: "Manrope", sans-serif;
    line-height: 1.35;
}

.blog-page__all-link {
    align-self: center;
    padding: 11px 17px;
    color: var(--blog-blue-800);
    border: 1px solid var(--blog-line);
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
}

.blog-page__related {
    margin-top: 78px;
}

.blog-page__related .blog-page__grid {
    margin-top: 36px;
}

.blog-page__state {
    min-height: 320px;
    display: grid;
    place-items: center;
    padding: 70px 0;
    color: var(--blog-slate);
    background: var(--blog-paper);
    text-align: center;
}

.blog-page__state p {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.blog-page__footer {
    padding: 32px 0;
    color: rgba(255, 255, 255, 0.72);
    background: var(--blog-blue-950);
}

.blog-page__footer p {
    margin: 0;
    text-align: center;
}

.blog-page .service-floating-contact,
.blog-page .service-floating-contact:visited,
.blog-page .service-floating-contact:hover,
.blog-page .service-floating-contact:focus,
.blog-page .service-floating-contact:active {
    opacity: 1;
    color: var(--blog-white);
}

.blog-reveal {
    opacity: 0;
    transform: translateY(19px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-reveal.blog-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .blog-page__featured {
        grid-template-columns: 1fr;
    }

    .blog-page__featured-media {
        min-height: 380px;
    }

    .blog-page__article-layout {
        grid-template-columns: 1fr;
    }

    .blog-page__toc {
        display: none;
    }
}

@media (max-width: 768px) {
    .blog-page .blog-header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-page .service-page-navigation__logo-link {
        flex: 0 0 auto;
        max-width: calc(100% - 68px);
    }

    .blog-page .blog-header .logo,
    .blog-page .blog-header .logo img {
        flex-shrink: 0;
    }

    .blog-page .blog-header .logo img {
        max-width: 100%;
        object-fit: contain;
    }

    .blog-page .service-page-navigation__hamburger {
        top: 24px;
    }

    .blog-page .service-page-navigation__menu {
        top: 90px;
    }

    .blog-page__shell,
    .blog-page__article-divider,
    .blog-page__article-layout {
        width: min(calc(100% - 32px), var(--blog-max));
    }

    .blog-page__intro-inner {
        min-height: 205px;
        padding: 42px 0 45px;
    }

    .blog-page__featured-wrap,
    .blog-page__archive,
    .blog-page__related {
        padding: 56px 0 68px;
    }

    .blog-page__featured-media {
        min-height: 250px;
    }

    .blog-page__featured-content {
        padding: 28px 24px 32px;
    }

    .blog-page__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .blog-page__pagination {
        margin-top: 56px;
    }

    .blog-page__article-header {
        padding: 20px 0 24px;
    }

    .blog-page__breadcrumbs {
        margin-bottom: 14px;
    }

    .blog-page__article-header h1 {
        font-size: clamp(2rem, 8.5vw, 2.55rem);
    }

    .blog-page__article-divider {
        height: 56px;
    }

    .blog-page__article-layout {
        margin-top: 10px;
        margin-bottom: 66px;
    }

    .blog-page__article-body {
        font-size: 1rem;
        line-height: 1.66;
    }

    .blog-page__article-body h2 {
        margin-top: 36px;
        font-size: 1.42rem;
    }

    .blog-page__article-body h3 {
        margin-top: 28px;
        font-size: 1.22rem;
    }

    .blog-page__article-body h4 {
        margin-top: 24px;
        font-size: 1.05rem;
    }

    .blog-page__article-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .blog-page__all-link {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
    }
}

@media (max-width: 470px) {
    .blog-page__intro h1 {
        font-size: 2.6rem;
    }

    .blog-page__featured-media {
        min-height: 210px;
    }

    .blog-page__article-navigation {
        grid-template-columns: 1fr;
    }

    .blog-page__article-navigation-item--next {
        padding-top: 22px;
        text-align: left;
        border-top: 1px solid var(--blog-line);
    }

    .blog-page__all-link {
        grid-column: auto;
        grid-row: auto;
        justify-self: start;
    }
}

@media (max-width: 600px) {
    .blog-page__article-body p.blog-article-text-justified {
        text-align: left;
    }

    .blog-page__article-body .blog-article-formula {
        justify-content: flex-start;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-page *,
    .blog-page *::before,
    .blog-page *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }

    .blog-reveal {
        opacity: 1;
        transform: none;
    }
}
