body.blog-article-page {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

.blog-article-main {
    position: relative;
    overflow: clip;
    background:
        radial-gradient(48rem 48rem at 14% 3%, rgba(71, 85, 105, 0.1), transparent 58%),
        radial-gradient(36rem 36rem at 86% 12%, rgba(9, 184, 80, 0.06), transparent 54%),
        linear-gradient(180deg, #f8f9fb 0%, #f4f6f8 48%, #eef1f4 100%);
}

html[data-bs-theme="dark"] .blog-article-main {
    background:
        radial-gradient(56rem 56rem at 14% 2%, rgba(163, 176, 196, 0.14), transparent 56%),
        radial-gradient(48rem 48rem at 90% 14%, rgba(48, 118, 255, 0.1), transparent 52%),
        linear-gradient(180deg, #090c11 0%, #0d1218 50%, #0b0e13 100%);
}

.blog-article-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 19, 21, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 19, 21, 0.032) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 72%);
    opacity: 0.08;
    pointer-events: none;
}

html[data-bs-theme="dark"] .blog-article-main::before {
    background-image:
        linear-gradient(rgba(var(--bs-white-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--bs-white-rgb), 0.03) 1px, transparent 1px);
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 72%);
    opacity: 0.18;
}

.blog-article-main > section {
    position: relative;
    z-index: 1;
}

.blog-article-main > section + section {
    border-top: 1px solid rgba(17, 19, 21, 0.12);
}

html[data-bs-theme="dark"] .blog-article-main > section + section {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.blog-reading-progress {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: 1029;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(9, 184, 80, 0.14), rgba(9, 184, 80, 0));
    overflow: hidden;
}

html[data-bs-theme="dark"] .blog-reading-progress {
    background: linear-gradient(90deg, rgba(9, 184, 80, 0.08), rgba(9, 184, 80, 0));
}

.blog-reading-progress__bar {
    position: relative;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(9, 184, 80, 0.92) 0%, rgba(41, 221, 109, 0.98) 52%, rgba(230, 255, 238, 0.96) 100%);
    box-shadow:
        0 0 12px rgba(9, 184, 80, 0.45),
        0 0 22px rgba(9, 184, 80, 0.18);
    opacity: 0.5;
    transition: transform 0.16s ease-out, opacity 0.2s ease-out;
    will-change: transform;
}

html[data-bs-theme="dark"] .blog-reading-progress__bar {
    box-shadow:
        0 0 12px rgba(9, 184, 80, 0.9),
        0 0 28px rgba(9, 184, 80, 0.45),
        0 0 48px rgba(9, 184, 80, 0.24);
    opacity: 0.44;
}

.blog-reading-progress__bar::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 72px;
    height: 22px;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(197, 255, 215, 0.72) 0%, rgba(41, 221, 109, 0.24) 46%, rgba(9, 184, 80, 0) 78%);
    filter: blur(5px);
}

html[data-bs-theme="dark"] .blog-reading-progress__bar::after {
    background: radial-gradient(circle, rgba(197, 255, 215, 0.9) 0%, rgba(41, 221, 109, 0.42) 46%, rgba(9, 184, 80, 0) 78%);
}

.blog-article-hero {
    display: flex;
    align-items: center;
    min-height: clamp(32rem, 76vh, 42rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
}

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

.blog-article-hero .display-4 {
    max-width: 18ch;
    margin-inline: auto;
    color: var(--bs-heading-color);
    letter-spacing: -0.05em;
    text-wrap: pretty;
}

html[data-bs-theme="dark"] .blog-article-hero .display-4 {
    color: var(--bs-white);
}

.blog-article-lead {
    max-width: 50rem;
    margin-inline: auto;
    color: rgba(51, 65, 85, 0.76);
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.58;
    text-wrap: balance;
}

html[data-bs-theme="dark"] .blog-article-lead {
    color: rgba(var(--bs-white-rgb), 0.7);
}

.blog-article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.blog-article-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 1.05rem;
    border: 1px solid rgba(17, 19, 21, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(51, 65, 85, 0.84);
    font-size: 0.94rem;
    line-height: 1;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

html[data-bs-theme="dark"] .blog-article-meta__item {
    border-color: rgba(var(--bs-white-rgb), 0.08);
    background: rgba(14, 18, 23, 0.78);
    color: rgba(var(--bs-white-rgb), 0.78);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.blog-article-meta__item i {
    color: rgba(var(--bs-primary-rgb), 0.96);
}

.blog-article-cover-shell {
    margin-top: clamp(2rem, 5vw, 3rem);
    padding: 0;
    border-radius: 30px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

html[data-bs-theme="dark"] .blog-article-cover-shell {
    background: transparent;
    box-shadow: none;
}

.blog-article-cover {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.blog-article-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0) 44%, rgba(248, 250, 252, 0.26) 100%),
        linear-gradient(135deg, rgba(10, 120, 255, 0.06), rgba(9, 184, 80, 0.05));
    pointer-events: none;
}

html[data-bs-theme="dark"] .blog-article-cover::after {
    background:
        linear-gradient(180deg, rgba(11, 14, 19, 0) 45%, rgba(11, 14, 19, 0.36) 100%),
        linear-gradient(135deg, rgba(10, 120, 255, 0.1), rgba(9, 184, 80, 0.08));
}

.blog-article-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-article-content {
    padding-top: clamp(2.75rem, 5vw, 4rem);
    padding-bottom: clamp(4rem, 6vw, 5.5rem);
}

.blog-article-layout {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.blog-article-shell {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    width: 100%;
    max-width: 50rem;
    margin-inline: auto;
}

.blog-article-body {
    color: rgba(51, 65, 85, 0.88);
}

html[data-bs-theme="dark"] .blog-article-body {
    color: rgba(var(--bs-white-rgb), 0.8);
}

.blog-article-body > :first-child {
    margin-top: 0;
}

.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4,
.blog-article-support-card h2,
.blog-article-support-card h3 {
    color: var(--bs-heading-color);
    scroll-margin-top: 132px;
}

html[data-bs-theme="dark"] .blog-article-body h2,
html[data-bs-theme="dark"] .blog-article-body h3,
html[data-bs-theme="dark"] .blog-article-body h4,
html[data-bs-theme="dark"] .blog-article-support-card h2,
html[data-bs-theme="dark"] .blog-article-support-card h3 {
    color: var(--bs-white);
}

.blog-article-body h2,
.blog-article-support-card h2 {
    margin-top: 3.25rem;
    margin-bottom: 1rem;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
    line-height: 1.04;
}

.blog-article-body h3,
.blog-article-support-card h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.blog-article-body h4 {
    margin-top: 1.55rem;
    margin-bottom: 0.55rem;
    font-size: 1.03rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
    color: rgba(51, 65, 85, 0.72);
}

html[data-bs-theme="dark"] .blog-article-body h4 {
    color: rgba(var(--bs-white-rgb), 0.76);
}

.blog-article-body .blog-article-section-kicker {
    display: inline-block;
    max-width: 100%;
    width: fit-content;
    margin-top: 3.1rem;
    margin-bottom: 0;
    padding: 0.34rem 0.72rem;
    border: 1px solid rgba(9, 184, 80, 0.18);
    border-left: 3px solid rgba(9, 184, 80, 0.72);
    border-radius: 999px;
    background: rgba(9, 184, 80, 0.055);
    color: rgba(7, 151, 66, 0.96);
    font-family: "JetBrains Mono", var(--font-mono), monospace;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

html[data-bs-theme="dark"] .blog-article-body .blog-article-section-kicker {
    border-color: rgba(9, 184, 80, 0.22);
    border-left-color: rgba(18, 218, 125, 0.86);
    background: rgba(9, 184, 80, 0.08);
    color: #12da7d;
}

.blog-article-body .blog-article-section-kicker + .blog-article-section-anchor {
    margin-top: 0.8rem;
}

.blog-article-body h5,
.blog-article-body h6,
.blog-article-support-card h4,
.blog-article-support-card h5,
.blog-article-support-card h6 {
    margin-top: 1.55rem;
    margin-bottom: 0.55rem;
    font-size: clamp(1.08rem, 1.75vw, 1.22rem);
    letter-spacing: -0.02em;
    line-height: 1.24;
    color: var(--bs-heading-color);
}

html[data-bs-theme="dark"] .blog-article-body h5,
html[data-bs-theme="dark"] .blog-article-body h6,
html[data-bs-theme="dark"] .blog-article-support-card h4,
html[data-bs-theme="dark"] .blog-article-support-card h5,
html[data-bs-theme="dark"] .blog-article-support-card h6 {
    color: var(--bs-white);
}

.blog-article-body p,
.blog-article-body li,
.blog-article-support-card li {
    font-size: 1.03rem;
    line-height: 1.82;
}

.blog-article-body p,
.blog-article-support-card p {
    margin-bottom: 1.15rem;
    color: rgba(51, 65, 85, 0.82);
}

html[data-bs-theme="dark"] .blog-article-body p,
html[data-bs-theme="dark"] .blog-article-support-card p {
    color: rgba(var(--bs-white-rgb), 0.76);
}

.blog-article-body ul,
.blog-article-body ol,
.blog-article-support-card ul,
.blog-article-support-card ol {
    margin: 0 0 1.4rem;
    padding-left: 1.2rem;
}

.blog-article-body li::marker,
.blog-article-support-card li::marker {
    color: rgba(var(--bs-primary-rgb), 0.9);
}

.blog-article-body li + li,
.blog-article-support-card li + li {
    margin-top: 0.55rem;
}

.blog-article-body strong,
.blog-article-body b,
.blog-article-support-card strong,
.blog-article-support-card b {
    color: var(--bs-heading-color);
}

html[data-bs-theme="dark"] .blog-article-body strong,
html[data-bs-theme="dark"] .blog-article-body b,
html[data-bs-theme="dark"] .blog-article-support-card strong,
html[data-bs-theme="dark"] .blog-article-support-card b {
    color: var(--bs-white);
}

.blog-article-body a,
.blog-article-support-card a {
    color: rgba(9, 184, 80, 0.94);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

.blog-article-body a:hover,
.blog-article-support-card a:hover {
    color: rgba(7, 151, 66, 0.96);
}

.blog-article-body .dropcap {
    float: left;
    margin-right: 0.8rem;
    margin-top: 0.15rem;
    padding: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(17, 19, 21, 0.08);
    background: rgba(255, 255, 255, 0.88);
    color: var(--bs-heading-color) !important;
    font-size: 2rem;
    font-weight: 700;
    line-height: 3rem;
    text-align: center;
    box-shadow:
        inset 0 0 0 1px rgba(9, 184, 80, 0.06),
        0 10px 26px rgba(15, 23, 42, 0.08);
}

html[data-bs-theme="dark"] .blog-article-body .dropcap {
    border-color: rgba(var(--bs-white-rgb), 0.12);
    background: rgba(var(--bs-white-rgb), 0.06);
    color: var(--bs-white) !important;
    box-shadow:
        inset 0 0 0 1px rgba(9, 184, 80, 0.08),
        0 0 26px rgba(9, 184, 80, 0.14);
}

.blog-article-body img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 1.75rem auto;
    border-radius: 24px;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

html[data-bs-theme="dark"] .blog-article-body img {
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.blog-article-body .blog-article-power-graphic {
    position: relative;
    overflow: hidden;
    margin: 0 0 clamp(2.2rem, 4vw, 3rem);
    padding: clamp(1.15rem, 2.4vw, 1.65rem);
    border: 1px solid rgba(17, 19, 21, 0.1);
    border-radius: 28px;
    background:
        radial-gradient(34rem 20rem at 0% 0%, rgba(9, 184, 80, 0.08), transparent 62%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 250, 0.96));
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

html[data-bs-theme="dark"] .blog-article-body .blog-article-power-graphic {
    border-color: rgba(var(--bs-white-rgb), 0.1);
    background:
        radial-gradient(34rem 20rem at 0% 0%, rgba(9, 184, 80, 0.12), transparent 62%),
        linear-gradient(135deg, rgba(24, 29, 36, 0.92), rgba(10, 13, 18, 0.96));
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.blog-article-body .blog-article-power-graphic__header {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.35rem;
}

.blog-article-body .blog-article-power-graphic__header span {
    color: rgba(var(--bs-primary-rgb), 0.95);
    font-family: var(--bs-font-monospace);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.blog-article-body .blog-article-power-graphic h3 {
    max-width: 15ch;
    margin: 0;
    color: var(--bs-heading-color);
    font-size: clamp(1.35rem, 3vw, 2rem);
    letter-spacing: 0;
    line-height: 1.04;
}

html[data-bs-theme="dark"] .blog-article-body .blog-article-power-graphic h3 {
    color: var(--bs-white);
}

.blog-article-body .blog-article-power-graphic__timeline {
    display: grid;
    gap: 0.9rem;
}

.blog-article-body .blog-article-power-graphic__lane {
    display: grid;
    grid-template-columns: minmax(8.5rem, 11rem) 1fr;
    gap: 1rem;
    align-items: center;
}

.blog-article-body .blog-article-power-graphic__lane-copy {
    display: grid;
    gap: 0.18rem;
    line-height: 1.1;
}

.blog-article-body .blog-article-power-graphic__lane-copy span {
    color: rgba(51, 65, 85, 0.76);
    font-size: 0.82rem;
    font-weight: 700;
}

html[data-bs-theme="dark"] .blog-article-body .blog-article-power-graphic__lane-copy span {
    color: rgba(var(--bs-white-rgb), 0.58);
}

.blog-article-body .blog-article-power-graphic__lane-copy strong {
    color: var(--bs-heading-color);
    font-size: 0.98rem;
    font-weight: 800;
}

html[data-bs-theme="dark"] .blog-article-body .blog-article-power-graphic__lane-copy strong {
    color: var(--bs-white);
}

.blog-article-body .blog-article-power-graphic__rail {
    position: relative;
    min-height: 3.4rem;
    overflow: hidden;
    border: 1px solid rgba(17, 19, 21, 0.08);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
}

html[data-bs-theme="dark"] .blog-article-body .blog-article-power-graphic__rail {
    border-color: rgba(var(--bs-white-rgb), 0.08);
    background: rgba(var(--bs-white-rgb), 0.055);
}

.blog-article-body .blog-article-power-graphic__bar {
    position: absolute;
    top: 50%;
    left: 0.55rem;
    height: 0.78rem;
    transform: translateY(-50%);
    border-radius: 999px;
}

.blog-article-body .blog-article-power-graphic__bar--build {
    width: 24%;
    background: rgba(var(--bs-primary-rgb), 0.95);
}

.blog-article-body .blog-article-power-graphic__bar--power {
    width: calc(100% - 1.1rem);
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.42), rgba(148, 163, 184, 0.58), rgba(var(--bs-primary-rgb), 0.95));
}

.blog-article-body .blog-article-power-graphic__gate {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    z-index: 1;
    transform: translateY(-50%);
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(var(--bs-primary-rgb), 0.96);
    color: var(--bs-white);
    font-family: var(--bs-font-monospace);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.blog-article-body .blog-article-power-graphic__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1rem;
}

.blog-article-body .blog-article-power-graphic__metrics span {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
    padding: 0.85rem 0.9rem;
    border: 1px solid rgba(17, 19, 21, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    color: rgba(51, 65, 85, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
}

html[data-bs-theme="dark"] .blog-article-body .blog-article-power-graphic__metrics span {
    border-color: rgba(var(--bs-white-rgb), 0.08);
    background: rgba(var(--bs-white-rgb), 0.045);
    color: rgba(var(--bs-white-rgb), 0.56);
}

.blog-article-body .blog-article-power-graphic__metrics strong {
    color: var(--bs-heading-color);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1;
}

html[data-bs-theme="dark"] .blog-article-body .blog-article-power-graphic__metrics strong {
    color: var(--bs-white);
}

.blog-article-body blockquote {
    margin: 2.3rem 0;
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(17, 19, 21, 0.08);
    border-radius: 28px;
    background:
        radial-gradient(40rem 24rem at 18% 4%, rgba(9, 184, 80, 0.035), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.95));
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

html[data-bs-theme="dark"] .blog-article-body blockquote {
    border-color: rgba(var(--bs-white-rgb), 0.1);
    background:
        radial-gradient(40rem 24rem at 18% 4%, rgba(var(--bs-white-rgb), 0.04), transparent 58%),
        linear-gradient(135deg, rgba(26, 31, 39, 0.94), rgba(14, 18, 23, 0.96));
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.blog-article-body blockquote p:last-child,
.blog-article-body blockquote > :last-child {
    margin-bottom: 0;
}

.blog-article-body blockquote p {
    color: var(--bs-heading-color);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    line-height: 1.5;
    letter-spacing: -0.02em;
}

html[data-bs-theme="dark"] .blog-article-body blockquote p {
    color: var(--bs-white);
}

.blog-article-body .blog-article-cta-block {
    text-align: center;
}

.blog-article-body .blog-article-cta-block .btn-primary,
.blog-article-body .blog-article-cta-block .btn-primary:hover,
.blog-article-body .blog-article-cta-block .btn-primary:focus {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    text-decoration: none;
}

.blog-download-sticky-cta {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    z-index: 1028;
    padding: 0.55rem clamp(1rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(17, 19, 21, 0.08);
    background: rgba(248, 250, 252, 0.92);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

html[data-bs-theme="dark"] .blog-download-sticky-cta {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: rgba(9, 12, 17, 0.9);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.blog-download-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    max-width: 62rem;
    margin: 0 auto;
}

.blog-download-sticky-cta__copy {
    color: rgba(51, 65, 85, 0.82);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
}

html[data-bs-theme="dark"] .blog-download-sticky-cta__copy {
    color: rgba(var(--bs-white-rgb), 0.76);
}

.blog-download-sticky-cta .btn {
    flex: 0 0 auto;
    min-height: 2.45rem;
    padding: 0.58rem 0.9rem;
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
}

.blog-download-bottom-cta {
    position: fixed;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    left: clamp(1rem, 3vw, 2rem);
    z-index: 1035;
    max-width: 58rem;
    margin: 0 auto;
    padding: 0.72rem;
    border: 1px solid rgba(9, 184, 80, 0.22);
    border-radius: 1rem;
    background:
        radial-gradient(circle at 12% 0%, rgba(9, 184, 80, 0.12), transparent 42%),
        rgba(248, 250, 252, 0.94);
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 2rem));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.blog-download-bottom-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

html[data-bs-theme="dark"] .blog-download-bottom-cta {
    border-color: rgba(9, 184, 80, 0.28);
    background:
        radial-gradient(circle at 12% 0%, rgba(9, 184, 80, 0.16), transparent 44%),
        rgba(9, 12, 17, 0.92);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.blog-download-bottom-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.blog-download-bottom-cta__copy {
    color: rgba(51, 65, 85, 0.82);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
}

html[data-bs-theme="dark"] .blog-download-bottom-cta__copy {
    color: rgba(var(--bs-white-rgb), 0.76);
}

.blog-download-bottom-cta .btn {
    flex: 0 0 auto;
    min-height: 2.45rem;
    padding: 0.68rem 1rem;
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
}

.blog-download-cta {
    max-width: 50rem;
    margin: 1.75rem auto 0;
    padding: clamp(1.2rem, 2.6vw, 1.75rem);
    border: 1px solid rgba(9, 184, 80, 0.18);
    border-radius: 1rem;
    background:
        radial-gradient(circle at 16% 0%, rgba(9, 184, 80, 0.12), transparent 46%),
        rgba(255, 255, 255, 0.74);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

html[data-bs-theme="dark"] .blog-download-cta {
    border-color: rgba(9, 184, 80, 0.24);
    background:
        radial-gradient(circle at 16% 0%, rgba(9, 184, 80, 0.16), transparent 48%),
        rgba(14, 18, 23, 0.78);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
}

.blog-download-cta__label {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(7, 151, 66, 0.98);
    font-family: "JetBrains Mono", var(--bs-font-monospace);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

html[data-bs-theme="dark"] .blog-download-cta__label {
    color: #12da7d;
}

.blog-download-cta h3 {
    margin: 0 0 0.55rem;
    color: var(--bs-heading-color);
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
    word-spacing: 0.08em;
}

html[data-bs-theme="dark"] .blog-download-cta h3 {
    color: var(--bs-white);
}

.blog-download-cta p {
    max-width: 38rem;
    margin: 0 0 1rem;
    color: rgba(51, 65, 85, 0.76);
    font-size: 1rem;
    line-height: 1.65;
}

html[data-bs-theme="dark"] .blog-download-cta p {
    color: rgba(var(--bs-white-rgb), 0.7);
}

.blog-download-cta .btn {
    color: #fff !important;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .blog-download-sticky-cta {
        padding: 0.55rem 0.85rem;
    }

    .blog-download-sticky-cta__inner {
        justify-content: space-between;
        gap: 0.65rem;
    }

    .blog-download-sticky-cta__copy {
        font-size: 0.78rem;
    }

    .blog-download-sticky-cta .btn {
        padding-inline: 0.7rem;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .blog-download-bottom-cta {
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 0.7rem;
    }

    .blog-download-bottom-cta__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 0.7rem;
    }

    .blog-download-bottom-cta__copy {
        font-size: 0.82rem;
    }

    .blog-download-bottom-cta .btn {
        justify-content: center;
        padding-inline: 0.7rem;
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-download-bottom-cta {
        transition: none;
    }
}

.blog-article-body .text-center {
    margin-top: 1.9rem;
    margin-bottom: 1.9rem;
}

.blog-article-support-card {
    position: relative;
    overflow: hidden;
    margin-top: 2.6rem;
    padding: clamp(1.4rem, 2.3vw, 1.9rem);
    border: 1px solid rgba(17, 19, 21, 0.08);
    border-radius: 30px;
    background:
        radial-gradient(42rem 28rem at 18% 4%, rgba(9, 184, 80, 0.035), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.95));
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

html[data-bs-theme="dark"] .blog-article-support-card {
    border-color: rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(42rem 28rem at 18% 4%, rgba(255, 255, 255, 0.045), transparent 58%),
        linear-gradient(135deg, rgba(30, 30, 30, 0.72), rgba(20, 24, 29, 0.84));
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.blog-article-support-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.72) 0%,
            rgba(255, 255, 255, 0.22) 48%,
            rgba(226, 232, 240, 0.22) 100%);
    pointer-events: none;
}

html[data-bs-theme="dark"] .blog-article-support-card::before {
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(100, 100, 100, 0.08) 100%);
}

.blog-article-support-card > * {
    position: relative;
    z-index: 1;
}

.blog-article-support-card > .badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.7rem !important;
    line-height: 1;
}

.blog-article-support-card > h2 {
    margin-top: 0 !important;
    padding-top: 0;
}

.blog-article-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.blog-article-support-grid__item {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(17, 19, 21, 0.07);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
}

html[data-bs-theme="dark"] .blog-article-support-grid__item {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.blog-article-support-grid__item:last-child {
    grid-column: 1 / -1;
}

.blog-article-support-grid__item h3 {
    margin-top: 0;
}

.blog-article-support-grid__item ul {
    padding-left: 1rem;
    margin-bottom: 0;
}

.blog-article-capacity-card {
    margin-top: 2.6rem;
}

.blog-article-capacity-head {
    margin-bottom: 1.75rem;
}

.blog-article-capacity-head h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.blog-article-capacity-intro {
    max-width: 64rem;
    margin-bottom: 0;
    color: rgba(51, 65, 85, 0.8);
}

html[data-bs-theme="dark"] .blog-article-capacity-intro {
    color: rgba(var(--bs-white-rgb), 0.76);
}

.blog-article-capacity-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(17, 19, 21, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.36);
    -webkit-overflow-scrolling: touch;
}

html[data-bs-theme="dark"] .blog-article-capacity-table-wrap {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(8, 11, 16, 0.34);
}

.blog-article-capacity-table-wrap--no-scroll {
    overflow: hidden;
}

.blog-article-capacity-table-wrap--spaced {
    margin-bottom: 2rem;
}

.blog-article-capacity-table {
    width: 100%;
    min-width: 960px;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.95rem;
}

.blog-article-capacity-table--fluid {
    min-width: 0;
    table-layout: fixed;
}

.blog-article-capacity-table thead th {
    padding: 0.95rem 1rem;
    background: rgba(9, 184, 80, 0.12);
    border-bottom: 1px solid rgba(9, 184, 80, 0.22);
    color: rgba(7, 151, 66, 0.96);
    font-family: "JetBrains Mono", var(--font-mono), monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

html[data-bs-theme="dark"] .blog-article-capacity-table thead th {
    background: rgba(9, 184, 80, 0.16);
    border-bottom-color: rgba(9, 184, 80, 0.28);
    color: #12da7d;
}

.blog-article-capacity-table tbody td,
.blog-article-capacity-table tfoot th,
.blog-article-capacity-table tfoot td {
    padding: 0.95rem 1rem;
    text-align: center;
    white-space: nowrap;
}

.blog-article-capacity-table--fluid thead th,
.blog-article-capacity-table--fluid tbody td,
.blog-article-capacity-table--fluid tfoot th,
.blog-article-capacity-table--fluid tfoot td {
    overflow-wrap: anywhere;
    white-space: normal;
}

.blog-article-capacity-table tbody td {
    color: rgba(51, 65, 85, 0.86);
    border-bottom: 1px solid rgba(17, 19, 21, 0.08);
}

html[data-bs-theme="dark"] .blog-article-capacity-table tbody td {
    color: rgba(212, 229, 252, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.blog-article-capacity-table tbody tr:last-child td {
    border-bottom: 0;
}

.blog-article-capacity-table tbody tr:hover td {
    background: rgba(17, 19, 21, 0.03);
}

html[data-bs-theme="dark"] .blog-article-capacity-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.blog-article-capacity-table--no-hover tbody tr:hover td,
html[data-bs-theme="dark"] .blog-article-capacity-table--no-hover tbody tr:hover td {
    background: transparent;
}

.blog-article-capacity-table .blog-article-capacity-site,
.blog-article-capacity-table tfoot th {
    color: var(--bs-heading-color);
    font-weight: 700;
    white-space: normal;
}

html[data-bs-theme="dark"] .blog-article-capacity-table .blog-article-capacity-site,
html[data-bs-theme="dark"] .blog-article-capacity-table tfoot th {
    color: var(--bs-white);
}

.blog-article-capacity-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.blog-article-capacity-link:hover,
.blog-article-capacity-link:focus {
    color: rgba(7, 151, 66, 0.96);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

html[data-bs-theme="dark"] .blog-article-capacity-link:hover,
html[data-bs-theme="dark"] .blog-article-capacity-link:focus {
    color: #12da7d;
}

.blog-article-capacity-power,
.blog-article-capacity-metric,
.blog-article-capacity-table tfoot td {
    font-family: "JetBrains Mono", var(--font-mono), monospace;
}

.blog-article-capacity-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.blog-article-capacity-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #09b850;
    box-shadow: 0 0 0 3px rgba(9, 184, 80, 0.16);
}

.blog-article-capacity-table tfoot th,
.blog-article-capacity-table tfoot td {
    border-top: 1px solid rgba(17, 19, 21, 0.12);
    background: rgba(17, 19, 21, 0.04);
    color: var(--bs-heading-color);
    font-weight: 700;
}

html[data-bs-theme="dark"] .blog-article-capacity-table tfoot th,
html[data-bs-theme="dark"] .blog-article-capacity-table tfoot td {
    border-top-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: var(--bs-white);
}

.blog-article-capacity-note {
    margin-top: 0.9rem;
    margin-bottom: 0;
    color: rgba(51, 65, 85, 0.62);
    font-size: 0.84rem;
    font-style: italic;
    text-align: center;
}

html[data-bs-theme="dark"] .blog-article-capacity-note {
    color: rgba(180, 200, 235, 0.58);
}

.blog-article-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(17, 19, 21, 0.08);
}

body.blog-article-page--narrow-next-steps .blog-article-actions {
    max-width: 50rem;
    margin-inline: auto;
}

html[data-bs-theme="dark"] .blog-article-actions {
    border-top-color: rgba(var(--bs-white-rgb), 0.08);
}

.blog-article-actions__copy {
    color: rgba(51, 65, 85, 0.74);
    font-size: 0.95rem;
}

html[data-bs-theme="dark"] .blog-article-actions__copy {
    color: rgba(var(--bs-white-rgb), 0.64);
}

.blog-article-actions__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

body.blog-article-page .blog-article-actions .btn-outline-light {
    border-color: rgba(32, 33, 36, 0.16);
    color: #202124;
    background-color: transparent;
}

body.blog-article-page .blog-article-actions .btn-outline-light:hover,
body.blog-article-page .blog-article-actions .btn-outline-light:focus {
    border-color: rgba(32, 33, 36, 0.26);
    background-color: rgba(32, 33, 36, 0.06);
    color: #202124;
}

body.blog-article-page .blog-article-actions .btn-light {
    background-color: #202124;
    border-color: #202124;
    color: #ffffff;
}

body.blog-article-page .blog-article-actions .btn-light:hover,
body.blog-article-page .blog-article-actions .btn-light:focus {
    background-color: #3a3b3e;
    border-color: #3a3b3e;
    color: #ffffff;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-article-actions .btn-light {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #202124;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-article-actions .btn-outline-light {
    border-color: rgba(var(--bs-white-rgb), 0.16);
    color: var(--bs-white);
    background-color: transparent;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-article-actions .btn-outline-light:hover,
html[data-bs-theme="dark"] body.blog-article-page .blog-article-actions .btn-outline-light:focus {
    border-color: rgba(var(--bs-white-rgb), 0.26);
    background-color: rgba(var(--bs-white-rgb), 0.08);
    color: var(--bs-white);
}

html[data-bs-theme="dark"] body.blog-article-page .blog-article-actions .btn-light:hover,
html[data-bs-theme="dark"] body.blog-article-page .blog-article-actions .btn-light:focus {
    background-color: #e8e8e8;
    border-color: #e8e8e8;
    color: #202124;
}

.blog-article-section-anchor {
    scroll-margin-top: 132px;
}

body.blog-article-page .blog-next-steps {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
    background:
        radial-gradient(44rem 36rem at 10% 8%, rgba(71, 85, 105, 0.08), transparent 60%),
        linear-gradient(180deg, #f7f9fb 0%, #eef2f5 100%) !important;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps {
    background:
        linear-gradient(180deg, rgba(12, 15, 20, 0.98), rgba(10, 13, 18, 1)) !important;
}

body.blog-article-page .blog-next-steps__container {
    max-width: 1320px;
}

body.blog-article-page .blog-next-steps__header {
    max-width: 58rem;
    margin-bottom: 1.25rem;
}

body.blog-article-page .blog-next-steps__title {
    margin-bottom: 0.65rem;
    font-size: clamp(2.25rem, 4.2vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

body.blog-article-page .blog-next-steps__intro {
    margin-bottom: 0;
    max-width: 44rem;
    color: rgba(51, 65, 85, 0.8) !important;
    font-size: 1rem;
    line-height: 1.6;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__intro {
    color: rgba(var(--bs-white-rgb), 0.74) !important;
}

body.blog-article-page .blog-next-steps .text-light {
    color: var(--bs-heading-color) !important;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps .text-light {
    color: var(--bs-white) !important;
}

body.blog-article-page .blog-next-steps .link-light {
    color: var(--bs-primary) !important;
}

body.blog-article-page .blog-next-steps .link-light:hover,
body.blog-article-page .blog-next-steps .link-light:focus {
    color: rgba(7, 151, 66, 0.96) !important;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps .link-light:hover,
html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps .link-light:focus {
    color: #8cf0b7 !important;
}

body.blog-article-page .blog-next-steps__tabs {
    gap: 0.75rem !important;
    margin-bottom: 1.85rem !important;
}

body.blog-article-page .blog-next-steps__tabs .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: calc(1.5em + 1.6rem + 2px);
    padding: 0.8rem 1.5rem;
    border-radius: 0.4rem;
    border: 1px solid rgba(17, 19, 21, 0.08);
    background: rgba(255, 255, 255, 0.72);
    color: rgba(51, 65, 85, 0.84);
    line-height: 1;
    white-space: nowrap;
}

body.blog-article-page .blog-next-steps__tabs .nav-link.active,
body.blog-article-page .blog-next-steps__tabs .nav-link:hover,
body.blog-article-page .blog-next-steps__tabs .show > .nav-link {
    background: #111315;
    border-color: #111315;
    color: #ffffff;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__tabs .nav-link {
    border-color: rgba(255, 255, 255, 0.08);
    background: transparent;
    color: rgba(var(--bs-white-rgb), 0.76);
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__tabs .nav-link.active,
html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__tabs .nav-link:hover,
html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__tabs .show > .nav-link {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

body.blog-article-page .blog-next-steps__pane {
    padding-top: 0.15rem;
}

body.blog-article-page .blog-next-steps__headline {
    margin-bottom: 0.8rem;
    max-width: 22ch;
    font-size: clamp(2rem, 3.7vw, 2.8rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

body.blog-article-page .blog-next-steps__copy {
    margin-bottom: 2rem;
    max-width: 72rem;
    color: rgba(51, 65, 85, 0.8) !important;
    font-size: 1rem;
    line-height: 1.62;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__copy {
    color: rgba(var(--bs-white-rgb), 0.74) !important;
}

body.blog-article-page .blog-next-steps__grid {
    --bs-gutter-x: clamp(2rem, 4vw, 4rem);
    --bs-gutter-y: 1.25rem;
    align-items: stretch;
}

body.blog-article-page--narrow-next-steps .blog-next-steps__container {
    max-width: 50rem;
}

body.blog-article-page--narrow-next-steps .blog-next-steps__header,
body.blog-article-page--narrow-next-steps .blog-next-steps__intro,
body.blog-article-page--narrow-next-steps .blog-next-steps__copy {
    max-width: 100%;
}

body.blog-article-page--narrow-next-steps .blog-next-steps__grid > [class*="col-"] {
    width: 100%;
}

body.blog-article-page .blog-next-steps__details {
    padding-top: 0.2rem;
}

body.blog-article-page .blog-next-steps__details-title {
    margin-bottom: 1.15rem;
    max-width: 18ch;
    font-size: clamp(1.45rem, 2.3vw, 1.95rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
}

body.blog-article-page .blog-next-steps__benefits {
    display: grid;
    gap: 0.95rem;
    margin-bottom: 0 !important;
}

body.blog-article-page .blog-next-steps__benefits .list-group-item {
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0 !important;
    background: transparent;
    border: 0;
    color: rgba(51, 65, 85, 0.86) !important;
    font-size: 1rem;
    line-height: 1.58;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__benefits .list-group-item {
    color: rgba(var(--bs-white-rgb), 0.82) !important;
}

body.blog-article-page .blog-next-steps__benefit-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.1rem;
    margin-top: 0.18rem;
    flex-shrink: 0;
    color: #10d67a;
}

body.blog-article-page .blog-next-steps__benefit-check i {
    font-size: 1rem;
    line-height: 1;
    text-shadow: 0 0 10px rgba(16, 214, 122, 0.12);
}

body.blog-article-page .blog-next-steps__promo {
    border-radius: 28px;
    padding: clamp(1.6rem, 3vw, 2.15rem) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.95)),
        rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(17, 19, 21, 0.08) !important;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__promo {
    background:
        linear-gradient(135deg, rgba(26, 31, 39, 0.94), rgba(14, 18, 23, 0.96)),
        rgba(16, 18, 22, 0.94) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

body.blog-article-page .blog-next-steps__promo .card-body {
    display: grid;
    gap: 0.95rem;
}

body.blog-article-page .blog-next-steps__promo-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.35rem;
    height: 3.35rem;
    min-width: 3.35rem;
    border-radius: 1rem;
    background:
        radial-gradient(115% 115% at 22% 18%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 46%),
        radial-gradient(120% 110% at 82% 100%, rgba(9, 184, 80, 0.18) 0%, rgba(9, 184, 80, 0) 64%),
        linear-gradient(155deg, rgba(250, 252, 255, 0.94), rgba(233, 238, 244, 0.96));
    border: 1px solid rgba(17, 19, 21, 0.08);
    box-shadow:
        0 12px 26px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 18px rgba(9, 184, 80, 0.08);
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__promo-icon {
    background:
        radial-gradient(115% 115% at 22% 18%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 46%),
        radial-gradient(120% 110% at 82% 100%, rgba(9, 184, 80, 0.24) 0%, rgba(9, 184, 80, 0) 64%),
        linear-gradient(155deg, rgba(43, 49, 58, 0.94), rgba(16, 21, 28, 0.96));
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 12px 26px rgba(4, 9, 20, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 18px rgba(9, 184, 80, 0.12);
}

body.blog-article-page .blog-next-steps__promo-icon::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__promo-icon::before {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 55%);
}

body.blog-article-page .blog-next-steps__promo-icon i {
    position: relative;
    z-index: 1;
    color: #12da7d;
    font-size: 1.3rem;
    text-shadow: 0 0 12px rgba(18, 218, 125, 0.16);
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__promo-icon i {
    text-shadow: 0 0 12px rgba(18, 218, 125, 0.24);
}

body.blog-article-page .blog-next-steps__resource-icon {
    --resource-rgb: 18, 218, 125;
    --resource-border: rgba(18, 218, 125, 0.2);
    --resource-icon: #12da7d;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    min-width: 2.8rem;
    border-radius: 0.9rem;
    background:
        radial-gradient(115% 110% at 22% 18%, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 42%),
        radial-gradient(120% 110% at 84% 100%, rgba(var(--resource-rgb), 0.16) 0%, rgba(var(--resource-rgb), 0) 66%),
        linear-gradient(155deg, rgba(250, 252, 255, 0.94), rgba(233, 238, 244, 0.96));
    border: 1px solid var(--resource-border);
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 16px rgba(var(--resource-rgb), 0.06);
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__resource-icon {
    --resource-border: rgba(18, 218, 125, 0.32);
    background:
        radial-gradient(115% 110% at 22% 18%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 42%),
        radial-gradient(120% 110% at 84% 100%, rgba(var(--resource-rgb), 0.22) 0%, rgba(var(--resource-rgb), 0) 66%),
        linear-gradient(155deg, rgba(43, 49, 58, 0.94), rgba(16, 21, 28, 0.96));
    box-shadow:
        0 10px 24px rgba(4, 9, 20, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 16px rgba(var(--resource-rgb), 0.1);
}

body.blog-article-page .blog-next-steps__resource-icon::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 58%);
    pointer-events: none;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__resource-icon::before {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 58%);
}

body.blog-article-page .blog-next-steps__resource-icon i {
    position: relative;
    z-index: 1;
    color: var(--resource-icon);
    font-size: 1.08rem;
    text-shadow: 0 0 10px rgba(var(--resource-rgb), 0.12);
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__resource-icon i {
    text-shadow: 0 0 10px rgba(var(--resource-rgb), 0.18);
}

body.blog-article-page .blog-next-steps__resource-icon--console {
    --resource-rgb: 78, 194, 255;
    --resource-border: rgba(78, 194, 255, 0.18);
    --resource-icon: #2691d9;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__resource-icon--console {
    --resource-border: rgba(78, 194, 255, 0.28);
    --resource-icon: #73d3ff;
}

body.blog-article-page .blog-next-steps__resource-icon--explore {
    --resource-rgb: 18, 218, 125;
    --resource-border: rgba(18, 218, 125, 0.2);
    --resource-icon: #0da864;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__resource-icon--explore {
    --resource-border: rgba(18, 218, 125, 0.3);
    --resource-icon: #12da7d;
}

body.blog-article-page .blog-next-steps__resource-icon--cpu {
    --resource-rgb: 165, 202, 255;
    --resource-border: rgba(110, 149, 210, 0.2);
    --resource-icon: #49688d;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__resource-icon--cpu {
    --resource-border: rgba(165, 202, 255, 0.26);
    --resource-icon: #d5e6ff;
}

body.blog-article-page .blog-next-steps__promo-title {
    font-size: 1.55rem;
    line-height: 1.08;
}

body.blog-article-page .blog-next-steps__promo p {
    margin-bottom: 0;
    color: rgba(51, 65, 85, 0.8) !important;
    font-size: 0.98rem;
    line-height: 1.6;
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps__promo p {
    color: rgba(var(--bs-white-rgb), 0.74) !important;
}

body.blog-article-page .blog-next-steps__promo .card-footer {
    margin-top: 2rem !important;
}

body.blog-article-page .blog-next-steps .card:not(.blog-next-steps__promo) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 251, 0.95)),
        rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(17, 19, 21, 0.08) !important;
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
}

html[data-bs-theme="dark"] body.blog-article-page .blog-next-steps .card:not(.blog-next-steps__promo) {
    background:
        linear-gradient(135deg, rgba(26, 31, 39, 0.94), rgba(14, 18, 23, 0.96)),
        rgba(16, 18, 22, 0.94) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1199.98px) {
    .blog-article-layout {
        --bs-gutter-x: 0;
    }
}

@media (max-width: 991.98px) {
    .blog-reading-progress {
        top: 76px;
    }

    .blog-article-hero {
        min-height: auto;
        padding-bottom: 1.5rem;
    }

    .blog-article-meta {
        gap: 0.75rem;
    }

    .blog-article-meta__item {
        width: auto;
    }

    .blog-article-layout {
        --bs-gutter-y: 0;
    }

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

    .blog-article-support-grid__item:last-child {
        grid-column: auto;
    }

    .blog-article-capacity-card {
        margin-top: 2.2rem;
    }

    .blog-article-body h2,
    .blog-article-support-card h2 {
        margin-top: 2.6rem;
    }

    body.blog-article-page .blog-next-steps__title {
        font-size: clamp(2.2rem, 5vw, 3rem);
    }

    body.blog-article-page .blog-next-steps__headline {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .blog-reading-progress {
        top: 76px;
        height: 5px;
    }

    .blog-article-meta {
        justify-content: flex-start;
    }

    .blog-article-meta__item {
        font-size: 0.88rem;
    }

    .blog-article-shell,
    .blog-article-support-card,
    .blog-article-cover-shell {
        border-radius: 24px;
    }

    .blog-article-capacity-table-wrap {
        border-radius: 18px;
    }

    .blog-article-cover {
        border-radius: 18px;
    }

    .blog-article-body p,
    .blog-article-body li,
    .blog-article-support-card li {
        font-size: 1rem;
    }

    .blog-article-body .blog-article-power-graphic {
        border-radius: 22px;
    }

    .blog-article-body .blog-article-power-graphic__lane {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .blog-article-body .blog-article-power-graphic__rail {
        min-height: 3rem;
    }

    .blog-article-body .blog-article-power-graphic__gate {
        right: 0.42rem;
        padding-inline: 0.58rem;
    }

    .blog-article-body .blog-article-power-graphic__metrics {
        grid-template-columns: 1fr;
    }

    .blog-article-actions {
        align-items: stretch;
    }

    .blog-article-capacity-table thead th,
    .blog-article-capacity-table tbody td,
    .blog-article-capacity-table tfoot th,
    .blog-article-capacity-table tfoot td {
        padding: 0.85rem 0.8rem;
    }

    .blog-article-actions__buttons {
        width: 100%;
    }

    .blog-article-actions__buttons .btn {
        flex: 1 1 auto;
    }

    body.blog-article-page .blog-next-steps__header {
        margin-bottom: 1.6rem;
    }

    body.blog-article-page .blog-next-steps__title {
        font-size: 2.1rem;
    }

    body.blog-article-page .blog-next-steps__intro,
    body.blog-article-page .blog-next-steps__copy,
    body.blog-article-page .blog-next-steps__promo p,
    body.blog-article-page .blog-next-steps__benefits .list-group-item {
        font-size: 1rem;
    }

    body.blog-article-page .blog-next-steps__tabs {
        margin-bottom: 2rem !important;
    }

    body.blog-article-page .blog-next-steps__details-title {
        font-size: 1.9rem;
        margin-bottom: 1.25rem;
    }

    body.blog-article-page .blog-next-steps__promo {
        border-radius: 24px;
    }

    body.blog-article-page .blog-next-steps__promo-icon {
        width: 3rem;
        height: 3rem;
        min-width: 3rem;
    }

    body.blog-article-page .blog-next-steps__promo-icon i {
        font-size: 1.15rem;
    }

    body.blog-article-page .blog-next-steps__resource-icon {
        width: 2.55rem;
        height: 2.55rem;
        min-width: 2.55rem;
    }

    body.blog-article-page .blog-next-steps__resource-icon i {
        font-size: 1rem;
    }

    body.blog-article-page .blog-next-steps__promo .card-footer {
        margin-top: 2rem !important;
    }
}
