.article-featured-image,
.editorial-image-shell {
    position: relative;
    overflow: hidden;
}

.article-featured-image {
    margin-bottom: 1rem;
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--line, #d7dee7) 90%, transparent);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.78), transparent 42%),
        linear-gradient(160deg, color-mix(in srgb, var(--surface-soft, #f6f8fb) 88%, #ffffff), color-mix(in srgb, var(--surface-muted, #eef3f8) 94%, #dfe9f3));
    box-shadow: 0 22px 48px rgba(13, 24, 36, 0.08);
}

.article-featured-image::after,
.editorial-image-preview::after {
    content: "Tap to Zoom";
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.52rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(242, 247, 252, 0.35);
    background: rgba(12, 23, 36, 0.68);
    color: #eff7ff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    pointer-events: none;
    transition: transform 0.22s ease, background 0.22s ease;
}

.article-featured-image img,
.article-body img,
.editorial-image-preview img {
    image-rendering: auto;
    backface-visibility: hidden;
    -webkit-user-drag: none;
    user-select: none;
}

.article-featured-image img,
.editorial-image-preview img {
    display: block;
    width: 100%;
    max-height: min(calc(var(--app-vh, 1vh) * 72), 980px);
    object-fit: contain;
    background: color-mix(in srgb, var(--surface-muted, #eef3f8) 90%, #ffffff);
}

.article-body img {
    display: block;
    max-width: min(100%, 980px);
    height: auto;
    margin: 1.1rem auto;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--line, #d7dee7) 88%, transparent);
    box-shadow: 0 18px 36px rgba(14, 24, 35, 0.1);
}

.oeiv-source-image {
    cursor: zoom-in;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.oeiv-source-image--touch {
    touch-action: manipulation;
    -webkit-touch-callout: none;
}

@media (pointer: fine) {
    .article-featured-image:hover::after,
    .editorial-image-preview:hover::after {
        transform: translateY(-2px);
        background: rgba(12, 23, 36, 0.8);
    }

    .oeiv-source-image:hover {
        transform: translateY(-2px);
        box-shadow: 0 26px 44px rgba(13, 24, 36, 0.14);
        filter: saturate(1.04);
    }
}

@media (pointer: coarse) {
    .article-featured-image::after,
    .editorial-image-preview::after {
        content: "Tap to Zoom";
    }
}

.editorial-image-shell {
    margin: 0.85rem 0 1rem;
    border-radius: 22px;
    border: 1px solid color-mix(in srgb, var(--line, #d7dee7) 92%, transparent);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 38%),
        linear-gradient(160deg, #fbfdff, #eef4fb);
    box-shadow: 0 26px 52px rgba(13, 24, 36, 0.08);
}

.editorial-image-shell-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.92rem 1rem 0.8rem;
    border-bottom: 1px solid rgba(206, 219, 233, 0.9);
    background: linear-gradient(180deg, rgba(249, 252, 255, 0.92), rgba(241, 247, 253, 0.9));
}

.editorial-image-shell-head h2 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #294764;
}

.editorial-image-shell-subtitle {
    margin: 0.28rem 0 0;
    color: #58738f;
    font-size: 0.92rem;
    line-height: 1.5;
}

.editorial-image-preview {
    position: relative;
    margin: 0;
    padding: 1rem;
}

.editorial-image-preview img {
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(17, 35, 54, 0.14);
}

.editorial-image-preview figcaption {
    margin-top: 0.82rem;
    color: #56718b;
    font-size: 0.9rem;
    line-height: 1.55;
}

.oeiv {
    position: fixed;
    inset: 0;
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.oeiv[hidden] {
    display: none;
}

.oeiv.is-visible {
    opacity: 1;
    visibility: visible;
}

.oeiv__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(88, 131, 171, 0.2), transparent 28%),
        linear-gradient(180deg, rgba(4, 10, 17, 0.9), rgba(4, 8, 13, 0.96));
    backdrop-filter: blur(14px);
}

.oeiv__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100%;
    color: #eef6ff;
}

.oeiv__topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    padding: calc(0.88rem + env(safe-area-inset-top)) 1rem 0.9rem;
    border-bottom: 1px solid rgba(146, 179, 210, 0.18);
    background: linear-gradient(180deg, rgba(11, 19, 29, 0.86), rgba(10, 18, 27, 0.52));
}

.oeiv__meta {
    min-width: 0;
}

.oeiv__eyebrow {
    margin: 0;
    color: rgba(199, 220, 241, 0.82);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.oeiv__title {
    margin: 0.28rem 0 0;
    color: #f6fbff;
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.3;
}

.oeiv__subtitle {
    margin: 0.28rem 0 0;
    color: rgba(205, 223, 240, 0.82);
    font-size: 0.9rem;
    line-height: 1.5;
}

.oeiv__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.52rem;
}

.oeiv__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.62rem 0.9rem;
    border: 1px solid rgba(163, 191, 217, 0.28);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #f0f7ff;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.oeiv__btn:hover,
.oeiv__btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(199, 221, 243, 0.56);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.oeiv__btn.is-active {
    border-color: rgba(250, 252, 255, 0.16);
    background: linear-gradient(145deg, #dcecf9, #b7d2e7);
    color: #173149;
}

.oeiv__btn:disabled {
    opacity: 0.48;
    cursor: not-allowed;
    transform: none;
}

.oeiv__btn--close {
    background: rgba(255, 255, 255, 0.12);
}

.oeiv__viewport {
    position: relative;
    overflow: hidden;
    min-height: 0;
    touch-action: none;
    cursor: default;
    outline: none;
}

.oeiv__viewport.is-pan-ready {
    cursor: grab;
}

.oeiv__viewport.is-pan-ready:active {
    cursor: grabbing;
}

.oeiv__canvas {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.oeiv__media {
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform, width, height;
    transform: translate3d(0px, 0px, 0px) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
}

.oeiv__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 36px 88px rgba(0, 0, 0, 0.38);
    background: rgba(255, 255, 255, 0.02);
    user-select: none;
    -webkit-user-drag: none;
    transition: border-radius 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.oeiv.is-zoomed .oeiv__image {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.oeiv__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    min-width: 0;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(214, 230, 244, 0.2);
    border-radius: 999px;
    background: rgba(7, 13, 20, 0.52);
    color: rgba(244, 250, 255, 0.95);
    font-size: 0;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.oeiv__nav::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
}

.oeiv__nav--prev {
    left: 1rem;
}

.oeiv__nav--prev::before {
    transform: rotate(-135deg);
}

.oeiv__nav--next {
    right: 1rem;
}

.oeiv__nav--next::before {
    transform: rotate(45deg);
}

.oeiv__nav:hover,
.oeiv__nav:focus-visible {
    transform: translateY(-50%) scale(1.03);
    border-color: rgba(235, 245, 255, 0.44);
    background: rgba(10, 18, 27, 0.72);
    outline: none;
}

.oeiv__nav:disabled {
    opacity: 0.24;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.oeiv__hint {
    position: absolute;
    left: 50%;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 2;
    transform: translateX(-50%);
    width: min(720px, calc(100vw - 2rem));
    padding: 0.78rem 1rem;
    border: 1px solid rgba(167, 194, 218, 0.2);
    border-radius: 16px;
    background: rgba(7, 13, 20, 0.52);
    color: rgba(229, 240, 250, 0.92);
    font-size: 0.9rem;
    line-height: 1.45;
    text-align: center;
    backdrop-filter: blur(10px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.oeiv__loading {
    position: absolute;
    inset: auto 50% 50%;
    z-index: 2;
    transform: translate(-50%, 50%);
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    padding: 0.86rem 1.1rem;
    border: 1px solid rgba(193, 215, 234, 0.18);
    border-radius: 18px;
    background: rgba(7, 13, 20, 0.7);
    color: #eff7ff;
    font-size: 0.92rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.oeiv__spinner {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 2px solid rgba(226, 239, 251, 0.24);
    border-top-color: #f1f8ff;
    animation: oeiv-spin 0.82s linear infinite;
}

.oeiv__mobile-dock {
    display: none;
}

.oeiv__mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 44px;
    padding: 0.72rem 0.95rem;
    border: 1px solid rgba(204, 224, 242, 0.22);
    border-radius: 999px;
    background: rgba(8, 16, 24, 0.72);
    color: #f4f9ff;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.oeiv__mini-btn:hover,
.oeiv__mini-btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(233, 245, 255, 0.46);
    background: rgba(14, 24, 34, 0.9);
    outline: none;
}

.oeiv__mini-btn.is-active,
.oeiv__mini-btn--emphasis {
    border-color: rgba(248, 252, 255, 0.18);
    background: linear-gradient(145deg, #dcecf9, #b7d2e7);
    color: #173149;
}

@keyframes oeiv-spin {
    to {
        transform: rotate(360deg);
    }
}

body.oeiv-open {
    overflow: hidden;
    overscroll-behavior: contain;
}

@media (max-width: 980px) {
    .oeiv__topbar {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding-inline: 0.82rem;
    }

    .oeiv__actions {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.08rem;
        scrollbar-width: none;
    }

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

    .oeiv__nav {
        width: 52px;
        height: 52px;
    }

    .oeiv__nav--prev {
        left: 0.75rem;
    }

    .oeiv__nav--next {
        right: 0.75rem;
    }
}

@media (max-width: 700px) {
    .oeiv__panel {
        position: relative;
    }

    .oeiv__topbar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 3;
        gap: 0.7rem;
        padding: calc(0.8rem + env(safe-area-inset-top)) 0.72rem 0.72rem;
        border-bottom: none;
        background: linear-gradient(180deg, rgba(6, 12, 20, 0.88), rgba(6, 12, 20, 0.54), transparent);
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .oeiv__meta {
        max-width: min(100%, calc(100vw - 1.44rem));
    }

    .oeiv__eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.14em;
    }

    .oeiv__title {
        margin-top: 0.22rem;
        font-size: 0.96rem;
        line-height: 1.25;
    }

    .oeiv__subtitle {
        margin-top: 0.18rem;
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .oeiv__actions {
        gap: 0.42rem;
    }

    .oeiv__actions .oeiv__btn {
        flex: 0 0 auto;
    }

    .article-featured-image::after,
    .editorial-image-preview::after {
        top: 0.72rem;
        right: 0.72rem;
        padding: 0.46rem 0.66rem;
        font-size: 0.72rem;
    }

    .article-featured-image img,
    .editorial-image-preview img {
        max-height: min(calc(var(--app-vh, 1vh) * 62), 720px);
    }

    .editorial-image-shell-head {
        padding: 0.82rem 0.82rem 0.72rem;
    }

    .editorial-image-preview {
        padding: 0.82rem;
    }

    .oeiv__btn {
        min-height: 40px;
        padding: 0.58rem 0.8rem;
        font-size: 0.84rem;
    }

    .oeiv__mobile-dock {
        position: absolute;
        left: 50%;
        bottom: calc(0.88rem + env(safe-area-inset-bottom));
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 0.46rem;
        transform: translateX(-50%);
        width: min(calc(100vw - 1.2rem), 420px);
        padding: 0.44rem;
        border: 1px solid rgba(168, 194, 218, 0.2);
        border-radius: 999px;
        background: rgba(6, 12, 19, 0.64);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
        backdrop-filter: blur(14px);
    }

    .oeiv__mini-btn {
        flex: 1 1 0;
        min-height: 46px;
        padding-inline: 0.7rem;
        font-size: 0.82rem;
    }

    .oeiv__hint {
        bottom: calc(4.8rem + env(safe-area-inset-bottom));
        width: calc(100vw - 1.4rem);
        padding: 0.72rem 0.82rem;
        font-size: 0.84rem;
    }

    .oeiv__loading {
        bottom: calc(6.2rem + env(safe-area-inset-bottom));
        width: calc(100vw - 2rem);
        justify-content: center;
        text-align: center;
    }

    .oeiv.is-mobile.is-zoomed .oeiv__topbar {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-0.8rem);
    }

    .oeiv.is-mobile.is-zoomed .oeiv__hint {
        opacity: 0;
        transform: translate(-50%, 0.55rem);
    }

    .oeiv.is-mobile-editorial .oeiv__actions {
        margin-left: auto;
    }

    .oeiv.is-mobile-editorial .oeiv__actions .oeiv__btn:not(.oeiv__btn--close) {
        display: none;
    }

    .oeiv.is-mobile-editorial .oeiv__topbar {
        align-items: flex-start;
        padding-right: 0.72rem;
    }

    .oeiv.is-mobile-editorial .oeiv__viewport {
        overflow: auto;
        padding: calc(4.6rem + env(safe-area-inset-top)) 0.72rem calc(5.4rem + env(safe-area-inset-bottom));
        touch-action: pan-y pinch-zoom;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .oeiv.is-mobile-editorial .oeiv__canvas {
        display: block;
        min-height: 0;
        overflow: visible;
    }

    .oeiv.is-mobile-editorial .oeiv__media {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto;
        max-width: none;
        will-change: auto;
    }

    .oeiv.is-mobile-editorial .oeiv__image {
        width: 100%;
        height: auto;
        border-radius: 14px;
        box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
    }

    .oeiv.is-mobile-editorial .oeiv__nav {
        display: none;
    }

    .oeiv.is-mobile-editorial.is-zoomed .oeiv__topbar {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .oeiv.is-mobile-editorial.is-zoomed .oeiv__hint {
        opacity: 1;
        transform: translateX(-50%);
    }
}

@media (max-width: 520px) {
    .oeiv__nav {
        top: auto;
        bottom: calc(5.85rem + env(safe-area-inset-bottom));
        transform: none;
    }

    .oeiv__nav:hover,
    .oeiv__nav:focus-visible {
        transform: scale(1.03);
    }

    .oeiv__nav:disabled {
        transform: none;
    }

.oeiv__mobile-dock {
        width: calc(100vw - 0.9rem);
        gap: 0.34rem;
        padding: 0.38rem;
    }

    .oeiv__mini-btn {
        min-height: 44px;
        padding-inline: 0.56rem;
        font-size: 0.76rem;
    }
}

.oeiv-mobile {
    position: fixed;
    inset: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.oeiv-mobile[hidden] {
    display: none;
}

.oeiv-mobile.is-visible {
    opacity: 1;
    visibility: visible;
}

.oeiv-mobile__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(78, 120, 158, 0.22), transparent 35%),
        linear-gradient(180deg, rgba(5, 11, 18, 0.92), rgba(5, 10, 16, 0.98));
    backdrop-filter: blur(12px);
}

.oeiv-mobile__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    height: 100%;
    color: #eef6ff;
}

.oeiv-mobile__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.72rem;
    padding: calc(0.84rem + env(safe-area-inset-top)) 0.72rem 0.62rem;
    background: linear-gradient(180deg, rgba(8, 14, 22, 0.86), rgba(6, 12, 19, 0.56));
    border-bottom: 1px solid rgba(151, 178, 205, 0.2);
}

.oeiv-mobile__meta {
    min-width: 0;
    overflow: hidden;
}

.oeiv-mobile__eyebrow {
    margin: 0;
    color: rgba(199, 220, 241, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.oeiv-mobile__title {
    margin: 0.22rem 0 0;
    font-size: 1rem;
    line-height: 1.25;
    color: #f6fbff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.oeiv-mobile__subtitle {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    line-height: 1.35;
    color: rgba(205, 223, 240, 0.84);
}

.oeiv-mobile__close {
    min-width: 46px;
    min-height: 40px;
    padding: 0 0.88rem;
    border: 1px solid rgba(163, 191, 217, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #f0f7ff;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 800;
}

.oeiv-mobile__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.46rem;
    padding: 0.52rem 0.72rem;
    background: rgba(9, 16, 25, 0.72);
    border-bottom: 1px solid rgba(151, 178, 205, 0.2);
}

.oeiv-mobile__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.52rem 0.8rem;
    border: 1px solid rgba(168, 195, 217, 0.26);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #f4f9ff;
    text-decoration: none;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}

.oeiv-mobile__btn:active {
    transform: scale(0.985);
}

.oeiv-mobile__actions .oeiv-mobile__btn {
    flex: 1 1 auto;
}

.oeiv-mobile__actions .oeiv-mobile__btn[download],
.oeiv-mobile__actions .oeiv-mobile__btn[href] {
    flex: 0 1 calc(50% - 0.23rem);
}

.oeiv-mobile__viewport {
    position: relative;
    min-height: 0;
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 0.42rem 0.72rem 0.78rem;
    touch-action: pan-y pan-x;
}

.oeiv-mobile__media {
    display: block;
    width: 100%;
    min-width: 100%;
}

.oeiv-mobile__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.38);
    background: rgba(255, 255, 255, 0.02);
    user-select: none;
    -webkit-user-drag: none;
}

.oeiv-mobile__hint {
    margin: 0.4rem 0.72rem 0.72rem;
    padding: 0.68rem 0.8rem;
    border: 1px solid rgba(167, 194, 218, 0.2);
    border-radius: 14px;
    background: rgba(7, 13, 20, 0.52);
    color: rgba(229, 240, 250, 0.92);
    font-size: 0.82rem;
    line-height: 1.4;
}

.oeiv-mobile.is-visible .oeiv-mobile__hint {
    margin-bottom: calc(0.72rem + env(safe-area-inset-bottom));
}

@media (max-width: 390px) {
    .oeiv-mobile__topbar {
        padding: calc(0.68rem + env(safe-area-inset-top)) 0.62rem 0.56rem;
    }

    .oeiv-mobile__actions {
        padding: 0.44rem 0.62rem;
        gap: 0.38rem;
    }

    .oeiv-mobile__btn {
        font-size: 0.78rem;
        min-height: 38px;
    }

    .oeiv-mobile__viewport {
        padding-inline: 0.56rem;
    }

    .oeiv-mobile__title {
        font-size: 0.94rem;
    }
}

body.dark-mode .article-featured-image,
body.dark-mode .editorial-image-shell {
    border-color: rgba(103, 129, 156, 0.5);
    background:
        radial-gradient(circle at top left, rgba(105, 135, 166, 0.18), transparent 38%),
        linear-gradient(160deg, #1d2a39, #172230);
    box-shadow: 0 28px 64px rgba(2, 8, 15, 0.42);
}

body.dark-mode .editorial-image-shell-head {
    border-bottom-color: rgba(97, 124, 151, 0.42);
    background: linear-gradient(180deg, rgba(29, 43, 59, 0.92), rgba(23, 34, 48, 0.88));
}

body.dark-mode .editorial-image-shell-head h2 {
    color: #dbe9f7;
}

body.dark-mode .editorial-image-shell-subtitle,
body.dark-mode .editorial-image-preview figcaption {
    color: #a9c0d6;
}
