.mj-article-page {
    background: #f5f7fa;
    color: #182a3d;
}

.mj-article-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 56px;
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(214,161,42,.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07182c,
            #0b315f
        );
    color: #fff;
}

.mj-article-hero::after {
    content: "JOURNAL";
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: clamp(90px, 16vw, 220px);
    font-weight: 900;
    letter-spacing: -.07em;
    color: rgba(255,255,255,.025);
    pointer-events: none;
}

.mj-article-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .05em;
}

.mj-article-back:hover {
    color: #fff;
}

.mj-article-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #d6a12a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
}

.mj-article-kicker::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #d6a12a;
}

.mj-article-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(40px, 6.6vw, 88px);
    line-height: .98;
    letter-spacing: -.055em;
}

.mj-article-excerpt {
    max-width: 760px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.73);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.75;
}

.mj-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.13);
}

.mj-article-meta div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mj-article-meta span {
    color: rgba(255,255,255,.44);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
}

.mj-article-meta strong {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.mj-article-feature {
    background: #fff;
}

.mj-article-feature__media {
    position: relative;
    height: min(68vw, 720px);
    min-height: 420px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #07182c,
            #0b315f
        );
}

.mj-article-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mj-article-feature__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255,255,255,.1);
    font-size: clamp(70px, 14vw, 180px);
    font-weight: 900;
    letter-spacing: -.05em;
}

.mj-article-body {
    padding: 72px 0 90px;
    background: #fff;
}

.mj-article-body__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 760px)
        minmax(220px, 1fr);
    gap: 90px;
    align-items: start;
}

.mj-article-content {
    color: #33465a;
    font-size: 17px;
    line-height: 1.92;
}

.mj-article-content p {
    margin: 0 0 26px;
}

.mj-article-content h2,
.mj-article-content h3 {
    color: #0b315f;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.mj-article-content h2 {
    margin: 46px 0 18px;
    font-size: 34px;
}

.mj-article-content h3 {
    margin: 38px 0 16px;
    font-size: 25px;
}

.mj-article-content ul,
.mj-article-content ol {
    padding-left: 24px;
    margin: 0 0 28px;
}

.mj-article-content li {
    margin-bottom: 10px;
}

.mj-article-sidebar {
    position: sticky;
    top: 110px;
    padding: 24px;
    border-radius: 20px;
    background: #f5f7fa;
}

.mj-article-sidebar small {
    color: #d6a12a;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
}

.mj-article-sidebar h3 {
    margin: 9px 0 12px;
    color: #0b315f;
    font-size: 22px;
    line-height: 1.2;
}

.mj-article-sidebar p {
    margin: 0;
    color: #6d7c8b;
    font-size: 13px;
    line-height: 1.7;
}

.mj-article-sidebar a {
    display: inline-flex;
    margin-top: 18px;
    color: #0b315f;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.mj-related-news {
    padding: 82px 0;
    background: #eef2f6;
}

.mj-related-news__heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 32px;
}

.mj-related-news__heading span {
    color: #d6a12a;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.mj-related-news__heading h2 {
    margin: 8px 0 0;
    color: #0b315f;
    font-size: clamp(30px, 4vw, 50px);
    letter-spacing: -.045em;
}

.mj-related-news__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mj-related-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
}

.mj-related-card__image {
    display: block;
    height: 220px;
    background:
        linear-gradient(
            145deg,
            #07182c,
            #0b315f
        );
}

.mj-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mj-related-card__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255,255,255,.25);
    font-size: 28px;
    font-weight: 900;
}

.mj-related-card__content {
    padding: 21px;
}

.mj-related-card__meta {
    color: #d6a12a;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}

.mj-related-card h3 {
    margin: 8px 0 10px;
    color: #0b315f;
    font-size: 19px;
    line-height: 1.25;
}

.mj-related-card p {
    margin: 0;
    color: #73808e;
    font-size: 12px;
    line-height: 1.65;
}

.mj-related-card__link {
    display: inline-flex;
    margin-top: 16px;
    color: #0b315f;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}

.mj-article-cta {
    padding: 70px 0;
    background: #07182c;
}

.mj-article-cta__panel {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
}

.mj-article-cta span {
    color: #d6a12a;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.mj-article-cta h2 {
    max-width: 680px;
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 50px);
    letter-spacing: -.045em;
}

.mj-article-cta a {
    flex: 0 0 auto;
    padding: 14px 19px;
    border-radius: 12px;
    background: #d6a12a;
    color: #07182c;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 900px) {

    .mj-article-body__layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mj-article-sidebar {
        position: static;
    }

    .mj-related-news__grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 650px) {

    .mj-article-hero {
        padding: 64px 0 42px;
    }

    .mj-article-feature__media {
        height: 65vw;
        min-height: 280px;
    }

    .mj-article-body {
        padding: 50px 0 65px;
    }

    .mj-related-news__grid {
        grid-template-columns: 1fr;
    }

    .mj-article-cta__panel {
        flex-direction: column;
        align-items: flex-start;
    }
}