:root {

    /* -------------------------------------------------
       MUSLIM PATH BRAND
       Extracted from the approved logo
    ------------------------------------------------- */

    --mpa-blue: #01478d;
    --mpa-blue-hover: #003d79;
    --mpa-blue-deep: #082f57;
    --mpa-blue-dark: #061f39;
    --mpa-blue-soft: #eef5fb;

    --mpa-gold: #fdb002;
    --mpa-gold-deep: #c98500;
    --mpa-gold-soft: #fff7df;

    --mpa-white: #ffffff;
    --mpa-canvas: #ffffff;
    --mpa-surface: #f7f9fc;
    --mpa-surface-alt: #f1f5f8;

    --mpa-ink: #16212d;
    --mpa-text: #263544;
    --mpa-muted: #617184;
    --mpa-border: #dfe7ee;
    --mpa-border-strong: #cad6df;

    /* Layout */

    --mpa-container: 1220px;
    --mpa-content: 760px;

    /* Radius: intentionally restrained */

    --mpa-radius-xs: 6px;
    --mpa-radius-sm: 10px;
    --mpa-radius-md: 16px;
    --mpa-radius-lg: 24px;

    /* Shadows */

    --mpa-shadow-sm:
        0 6px 24px rgba(8, 47, 87, 0.06);

    --mpa-shadow-md:
        0 18px 48px rgba(8, 47, 87, 0.09);

    /* Type */

    --mpa-font:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    /* Motion */

    --mpa-ease:
        cubic-bezier(.2, .7, .2, 1);

    --mpa-fast: 160ms;
    --mpa-normal: 240ms;
}


/* ==================================================
   RESET
================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;

    background: var(--mpa-canvas);
    color: var(--mpa-text);

    font-family: var(--mpa-font);
    font-size: 16px;
    line-height: 1.7;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

a {
    color: inherit;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--mpa-ink);
    font-weight: 700;
    text-wrap: balance;
}

::selection {
    background: var(--mpa-gold);
    color: var(--mpa-blue-dark);
}


/* ==================================================
   ACCESSIBILITY
================================================== */

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mpa-skip-link {
    position: fixed;
    top: -100px;
    inset-inline-start: 20px;

    z-index: 99999;

    padding: 10px 16px;

    background: var(--mpa-blue-dark);
    color: #fff;

    border-radius: var(--mpa-radius-sm);
    text-decoration: none;
}

.mpa-skip-link:focus {
    top: 20px;
}

:focus-visible {
    outline: 3px solid rgba(253, 176, 2, 0.65);
    outline-offset: 3px;
}


/* ==================================================
   LAYOUT
================================================== */

.mpa-container {
    width: min(
        calc(100% - 48px),
        var(--mpa-container)
    );

    margin-inline: auto;
}

.mpa-content-width {
    width: min(100%, var(--mpa-content));
}

.mpa-section {
    padding-block: clamp(72px, 8vw, 120px);
}

.mpa-section--soft {
    background: var(--mpa-surface);
}

.mpa-section--blue {
    background: var(--mpa-blue-deep);
    color: #fff;
}


/* ==================================================
   TYPOGRAPHY
================================================== */

.mpa-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: var(--mpa-blue);

    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.075em;
    line-height: 1.2;
    text-transform: uppercase;
}

.mpa-kicker::before {
    width: 22px;
    height: 3px;

    background: var(--mpa-gold);

    border-radius: 10px;

    content: "";
}

.mpa-heading-xl {
    max-width: 950px;

    margin-bottom: 24px;

    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.mpa-heading-lg {
    margin-bottom: 22px;

    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.mpa-heading-md {
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.mpa-lead {
    max-width: 720px;

    color: var(--mpa-muted);

    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.75;
}


/* ==================================================
   BUTTON SYSTEM
================================================== */

.mpa-btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 21px;

    border: 1px solid transparent;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;
    cursor: pointer;

    transition:
        background var(--mpa-fast) var(--mpa-ease),
        border-color var(--mpa-fast) var(--mpa-ease),
        color var(--mpa-fast) var(--mpa-ease),
        transform var(--mpa-fast) var(--mpa-ease);
}

.mpa-btn:hover {
    transform: translateY(-1px);
}

.mpa-btn--primary {
    background: var(--mpa-blue);
    color: #fff;
}

.mpa-btn--primary:hover {
    background: var(--mpa-blue-hover);
}

.mpa-btn--secondary {
    background: #fff;
    color: var(--mpa-blue);

    border-color: var(--mpa-border-strong);
}

.mpa-btn--secondary:hover {
    border-color: var(--mpa-blue);
}

.mpa-btn--gold {
    background: var(--mpa-gold);
    color: var(--mpa-blue-dark);
}

.mpa-btn--gold:hover {
    background: #ffbd24;
}


/* ==================================================
   CARD SYSTEM
================================================== */

.mpa-card {
    background: #fff;

    border: 1px solid var(--mpa-border);
    border-radius: var(--mpa-radius-md);

    transition:
        border-color var(--mpa-normal) var(--mpa-ease),
        box-shadow var(--mpa-normal) var(--mpa-ease),
        transform var(--mpa-normal) var(--mpa-ease);
}

.mpa-card:hover {
    border-color: #cedae4;
    box-shadow: var(--mpa-shadow-sm);
    transform: translateY(-2px);
}

.mpa-card-body {
    padding: 28px;
}


/* ==================================================
   HEADER
================================================== */

.mpa-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid rgba(223, 231, 238, 0.9);
}

.mpa-header-shell {
    min-height: 78px;

    display: flex;
    align-items: center;
    gap: 30px;
}

.mpa-brand {
    flex: 0 0 auto;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo {
    width: auto;
    max-width: 190px;
    max-height: 54px;
}

.mpa-brand-fallback {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    color: var(--mpa-blue-dark);
    text-decoration: none;
}

.mpa-brand-symbol {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--mpa-blue);
    color: #fff;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 800;
}

.mpa-brand-name {
    display: flex;
    flex-direction: column;

    font-size: 16px;
    font-weight: 750;
    letter-spacing: -0.015em;
    line-height: 1.08;
}

.mpa-brand-name small {
    margin-top: 4px;

    color: var(--mpa-muted);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* ==================================================
   NAVIGATION
================================================== */

.mpa-navigation {
    margin-inline-start: auto;
}

.mpa-menu {
    display: flex;
    align-items: center;
    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.mpa-menu li {
    position: relative;
}

.mpa-menu a {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding-block: 8px;

    color: var(--mpa-text);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color var(--mpa-fast) var(--mpa-ease);
}

.mpa-menu a::after {
    position: absolute;

    right: 0;
    bottom: 1px;
    left: 0;

    height: 2px;

    background: var(--mpa-gold);

    transform: scaleX(0);
    transform-origin: center;

    content: "";

    transition:
        transform var(--mpa-normal) var(--mpa-ease);
}

.mpa-menu a:hover,
.mpa-menu .current-menu-item > a {
    color: var(--mpa-blue);
}

.mpa-menu a:hover::after,
.mpa-menu .current-menu-item > a::after {
    transform: scaleX(1);
}


/* ==================================================
   HEADER ACTIONS
================================================== */

.mpa-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    flex: 0 0 auto;
}


/* ==================================================
   LANGUAGE SWITCHER
================================================== */

.mpa-language-switcher {
    position: relative;
}

.mpa-language-toggle {
    min-width: 48px;
    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 12px;

    background: #fff;
    color: var(--mpa-blue-dark);

    border: 1px solid var(--mpa-border);
    border-radius: 9px;

    cursor: pointer;

    transition:
        border-color var(--mpa-fast) var(--mpa-ease),
        background var(--mpa-fast) var(--mpa-ease);
}

.mpa-language-toggle:hover {
    background: var(--mpa-surface);
    border-color: var(--mpa-border-strong);
}

.mpa-language-code {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.mpa-language-menu {
    position: absolute;

    top: calc(100% + 10px);
    inset-inline-end: 0;

    width: 220px;

    padding: 7px;

    background: #fff;

    border: 1px solid var(--mpa-border);
    border-radius: 12px;

    box-shadow: var(--mpa-shadow-md);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-5px);

    transition:
        opacity var(--mpa-fast) var(--mpa-ease),
        visibility var(--mpa-fast) var(--mpa-ease),
        transform var(--mpa-fast) var(--mpa-ease);
}

.mpa-language-switcher.is-open .mpa-language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mpa-language-link {
    display: block;

    padding: 10px 11px;

    color: var(--mpa-text);

    border-radius: 7px;

    font-size: 14px;
    font-weight: 550;

    text-decoration: none;
}

.mpa-language-link:hover {
    background: var(--mpa-surface);
}

.mpa-language-link.is-current {
    background: var(--mpa-blue-soft);
    color: var(--mpa-blue);
    font-weight: 700;
}


/* ==================================================
   MOBILE MENU BUTTON
================================================== */

.mpa-menu-toggle {
    display: none;

    width: 43px;
    height: 43px;

    margin-inline-start: auto;
    padding: 10px;

    background: #fff;

    border: 1px solid var(--mpa-border);
    border-radius: 9px;

    cursor: pointer;
}

.mpa-menu-bars {
    display: block;
}

.mpa-menu-bars i {
    width: 20px;
    height: 2px;

    display: block;

    margin: 4px auto;

    background: var(--mpa-blue-dark);

    border-radius: 5px;

    transition:
        transform var(--mpa-fast) var(--mpa-ease),
        opacity var(--mpa-fast) var(--mpa-ease);
}

.mpa-menu-toggle[aria-expanded="true"]
.mpa-menu-bars i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mpa-menu-toggle[aria-expanded="true"]
.mpa-menu-bars i:nth-child(2) {
    opacity: 0;
}

.mpa-menu-toggle[aria-expanded="true"]
.mpa-menu-bars i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* ==================================================
   TEMPORARY PAGE STAGE
================================================== */

.mpa-page-stage {
    min-height: 58vh;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            180deg,
            var(--mpa-blue-soft) 0,
            #fff 100%
        );
}

.mpa-page-stage-inner {
    padding-block: 100px;
}

.mpa-page-stage h1 {
    margin: 0;

    font-size: clamp(44px, 7vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}


/* ==================================================
   FOOTER
================================================== */

.mpa-footer {
    background: var(--mpa-blue-dark);
    color: rgba(255, 255, 255, 0.8);
}

.mpa-footer-main {
    min-height: 170px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding-block: 46px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}

.mpa-footer-brand-name {
    color: #fff;

    font-size: 21px;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.mpa-footer-accent {
    width: 34px;
    height: 3px;

    margin-top: 13px;

    background: var(--mpa-gold);

    border-radius: 5px;
}

.mpa-footer-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.mpa-footer-navigation a {
    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;

    text-decoration: none;
}

.mpa-footer-navigation a:hover {
    color: #fff;
}

.mpa-footer-bottom {
    padding-block: 20px;
}

.mpa-footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}


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

@media (max-width: 960px) {

    .mpa-container {
        width: min(
            calc(100% - 34px),
            var(--mpa-container)
        );
    }

    .mpa-header-shell {
        min-height: 70px;
    }

    .mpa-menu-toggle {
        display: block;
    }

    .mpa-navigation {
        position: absolute;

        top: 100%;
        right: 0;
        left: 0;

        display: none;

        margin: 0;
        padding: 12px 17px 22px;

        background: #fff;

        border-bottom: 1px solid var(--mpa-border);
        box-shadow: var(--mpa-shadow-sm);
    }

    .mpa-navigation.is-open {
        display: block;
    }

    .mpa-menu {
        display: block;
    }

    .mpa-menu li + li {
        margin-top: 2px;
    }

    .mpa-menu a {
        width: 100%;

        display: flex;

        padding: 11px 6px;

        font-size: 15px;
    }

    .mpa-menu a::after {
        display: none;
    }

    .mpa-header-actions {
        margin-inline-start: 0;
    }

    .mpa-footer-main {
        display: block;
    }

    .mpa-footer-navigation {
        margin-top: 30px;
    }

    .mpa-footer-navigation ul {
        display: block;
    }

    .mpa-footer-navigation li + li {
        margin-top: 9px;
    }

    .mpa-page-stage-inner {
        padding-block: 75px;
    }

}

@media (max-width: 560px) {

    .mpa-container {
        width: min(
            calc(100% - 28px),
            var(--mpa-container)
        );
    }

    .mpa-header-shell {
        gap: 10px;
    }

    .mpa-brand-name {
        font-size: 14px;
    }

    .mpa-brand-symbol {
        width: 37px;
        height: 37px;
    }

    .custom-logo {
        max-width: 150px;
        max-height: 46px;
    }

    .mpa-heading-xl {
        font-size: clamp(39px, 12vw, 56px);
    }

    .mpa-page-stage h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}


/* ===== MPA REAL BRAND HEADER v1.2 START ===== */


/* --------------------------------------------------
   Brand
-------------------------------------------------- */

.mpa-brand {
    flex: 0 0 auto;
}

.mpa-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    color: var(--mpa-blue-dark);

    text-decoration: none;
}

.mpa-brand-mark {
    width: 47px;
    height: 47px;

    flex: 0 0 47px;

    object-fit: contain;
}

.mpa-brand-copy {
    display: flex;
    flex-direction: column;

    min-width: 112px;

    line-height: 1;
}

.mpa-brand-copy strong {
    color: var(--mpa-blue);

    font-size: 16px;
    font-weight: 760;
    letter-spacing: -0.025em;
}

.mpa-brand-copy small {
    margin-top: 5px;

    color: var(--mpa-muted);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}


/* --------------------------------------------------
   Header refinement
-------------------------------------------------- */

.mpa-header {
    box-shadow:
        0 1px 0 rgba(8, 47, 87, 0.02);
}

.mpa-header-shell {
    min-height: 76px;
}

.mpa-navigation {
    margin-inline-start: auto;
}

.mpa-header-actions {
    margin-inline-start: 4px;
}


/* --------------------------------------------------
   Header CTA
-------------------------------------------------- */

.mpa-btn--header {
    min-height: 42px;

    padding: 10px 17px;

    background: var(--mpa-blue);
    color: #fff;

    border-color: var(--mpa-blue);
    border-radius: 9px;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}

.mpa-btn--header:hover {
    background: var(--mpa-blue-hover);
    border-color: var(--mpa-blue-hover);
    color: #fff;
}


/* --------------------------------------------------
   Navigation spacing
-------------------------------------------------- */

.mpa-menu {
    gap: clamp(18px, 2vw, 28px);
}

.mpa-menu a {
    white-space: nowrap;
}


/* --------------------------------------------------
   Tablet / mobile
-------------------------------------------------- */

@media (max-width: 1050px) {

    .mpa-brand-copy {
        display: none;
    }

    .mpa-brand-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

}


@media (max-width: 960px) {

    .mpa-header-shell {
        min-height: 68px;
    }

    .mpa-brand-copy {
        display: flex;
    }

    .mpa-brand-mark {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .mpa-brand-copy strong {
        font-size: 14px;
    }

    .mpa-brand-copy small {
        font-size: 9px;
    }

    .mpa-header-actions {
        order: 2;

        margin-inline-start: auto;
    }

    .mpa-menu-toggle {
        order: 3;

        margin-inline-start: 0;
    }

    .mpa-navigation {
        order: 4;
    }

    .mpa-btn--header {
        display: none;
    }

}


@media (max-width: 520px) {

    .mpa-brand-copy {
        min-width: 0;
    }

    .mpa-brand-copy strong {
        font-size: 13px;
    }

    .mpa-brand-copy small {
        margin-top: 4px;
        font-size: 8px;
        letter-spacing: 0.14em;
    }

    .mpa-brand-mark {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .mpa-brand-link {
        gap: 8px;
    }

    .mpa-language-toggle {
        min-width: 43px;
        min-height: 39px;

        padding-inline: 9px;
    }

}


/* ===== MPA REAL BRAND HEADER v1.2 END ===== */



/* ===== MPA EDITORIAL PROFILE HERO v1.3.2 START ===== */


/* ==================================================
   COVER
================================================== */

.mpa-editorial-profile {
    overflow: hidden;
    background: #fff;
}

.mpa-cover-stage {
    position: relative;

    padding-top: 26px;
    margin-bottom: 95px;
}

.mpa-cover-image {
    position: relative;

    width: 100%;
    aspect-ratio: 1920 / 820;

    min-height: 400px;
    max-height: 620px;

    overflow: hidden;

    background-color: #edf2f6;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    border-radius:
        4px 26px 4px 26px;
}


/*
 * One deliberate architectural line.
 * Not a gradient, shadow blob or decorative AI shape.
 */
.mpa-cover-edge {
    position: absolute;

    top: 26px;
    bottom: 0;

    inset-inline-start: -7px;

    width: 7px;

    background: var(--mpa-blue);
}


/* ==================================================
   PROFILE LOGO
================================================== */

.mpa-cover-logo {
    position: absolute;

    left: 50%;
    bottom: -73px;

    z-index: 3;

    width: 148px;
    height: 148px;

    display: block;

    padding: 5px;

    background: #fff;

    border: 5px solid #fff;
    border-radius: 50%;

    box-shadow:
        0 8px 24px
        rgba(8, 47, 87, .11);

    transform:
        translateX(-50%);

    transition:
        transform
        180ms
        var(--mpa-ease);
}

.mpa-cover-logo:hover {
    transform:
        translateX(-50%)
        translateY(-3px);
}

.mpa-cover-logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    border-radius: 50%;
}


/* ==================================================
   EDITORIAL INTRO
================================================== */

.mpa-editorial-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 1.22fr)
        minmax(330px, .72fr);

    gap:
        clamp(65px, 9vw, 135px);

    align-items: start;

    padding:
        42px 0
        clamp(85px, 10vw, 135px);
}


/* Left column */

.mpa-editorial-heading {
    max-width: 780px;
}

.mpa-editorial-kicker {
    position: relative;

    margin:
        0 0 24px;

    padding-inline-start: 43px;

    color: var(--mpa-blue);

    font-size: 12px;
    font-weight: 750;
    letter-spacing: .065em;
    line-height: 1.5;
    text-transform: uppercase;
}

.mpa-editorial-kicker::before {
    position: absolute;

    top: .7em;
    inset-inline-start: 0;

    width: 28px;
    height: 3px;

    background: var(--mpa-gold);

    content: "";
}

.mpa-editorial-heading h1 {
    margin: 0;

    max-width: 800px;

    color: var(--mpa-blue-dark);

    font-size:
        clamp(49px, 5.8vw, 79px);

    font-weight: 710;

    letter-spacing: -.055em;
    line-height: .99;

    text-wrap: balance;
}


/* Right column */

.mpa-editorial-detail {
    padding-top: 40px;
}

.mpa-editorial-lead {
    margin: 0;

    max-width: 530px;

    color: var(--mpa-muted);

    font-size:
        clamp(16px, 1.4vw, 19px);

    line-height: 1.78;
}


/* ==================================================
   ACTIONS
================================================== */

.mpa-editorial-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 23px;

    margin-top: 31px;
}

.mpa-editorial-actions
.mpa-btn {
    min-height: 50px;

    padding-inline: 22px;
}

.mpa-editorial-actions
.mpa-btn span {
    margin-inline-start: 3px;

    font-size: 18px;
}

.mpa-editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding:
        9px 0 7px;

    color: var(--mpa-blue-dark);

    border-bottom:
        1px solid
        var(--mpa-border-strong);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color
        var(--mpa-fast)
        var(--mpa-ease),
        border-color
        var(--mpa-fast)
        var(--mpa-ease);
}

.mpa-editorial-link:hover {
    color: var(--mpa-blue);
    border-color: var(--mpa-blue);
}


/* ==================================================
   PROOF LINE
================================================== */

.mpa-editorial-proof {
    margin-top: 36px;

    border-top:
        1px solid
        var(--mpa-border);
}

.mpa-editorial-proof span {
    position: relative;

    display: block;

    padding:
        11px 0
        11px 18px;

    color: var(--mpa-muted);

    border-bottom:
        1px solid
        var(--mpa-border);

    font-size: 12px;
    font-weight: 600;
}

.mpa-editorial-proof span::before {
    position: absolute;

    top: 50%;
    left: 0;

    width: 6px;
    height: 6px;

    background: var(--mpa-gold);

    border-radius: 50%;

    transform:
        translateY(-50%);

    content: "";
}


/* ==================================================
   LANGUAGE LENGTH
================================================== */

html[lang^="de"]
.mpa-editorial-heading h1 {
    font-size:
        clamp(46px, 5vw, 68px);
}

html[lang^="fr"]
.mpa-editorial-heading h1,
html[lang^="it"]
.mpa-editorial-heading h1 {
    font-size:
        clamp(47px, 5.2vw, 72px);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 960px) {

    .mpa-cover-stage {
        padding-top: 18px;
        margin-bottom: 82px;
    }

    .mpa-cover-image {
        min-height: 330px;

        border-radius:
            3px 20px 3px 20px;
    }

    .mpa-cover-edge {
        top: 18px;
    }

    .mpa-cover-logo {
        width: 132px;
        height: 132px;

        bottom: -64px;
    }

    .mpa-editorial-intro {
        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 35px;
    }

    .mpa-editorial-heading {
        max-width: 780px;
    }

    .mpa-editorial-detail {
        max-width: 650px;

        padding-top: 0;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .mpa-editorial-profile
    > .mpa-container {
        width: 100%;
    }

    .mpa-cover-stage {
        padding-top: 0;
        margin-bottom: 68px;
    }

    .mpa-cover-image {
        aspect-ratio: 1.65 / 1;

        min-height: 0;
        max-height: none;

        border-radius:
            0 0 12px 0;

        background-position: center;
    }

    .mpa-cover-edge {
        top: 0;

        inset-inline-start: 0;

        width: 5px;
    }

    .mpa-cover-logo {
        width: 112px;
        height: 112px;

        bottom: -54px;

        padding: 4px;
        border-width: 4px;
    }

    .mpa-editorial-intro {
        width:
            min(
                calc(100% - 28px),
                var(--mpa-container)
            );

        margin-inline: auto;

        gap: 25px;

        padding:
            28px 0
            78px;
    }

    .mpa-editorial-kicker {
        margin-bottom: 19px;

        padding-inline-start: 36px;

        font-size: 10px;
    }

    .mpa-editorial-kicker::before {
        width: 23px;
    }

    .mpa-editorial-heading h1,
    html[lang^="de"]
    .mpa-editorial-heading h1,
    html[lang^="fr"]
    .mpa-editorial-heading h1,
    html[lang^="it"]
    .mpa-editorial-heading h1 {
        font-size:
            clamp(39px, 11.2vw, 54px);

        line-height: 1.03;
    }

    .mpa-editorial-lead {
        font-size: 16px;
        line-height: 1.72;
    }

    .mpa-editorial-actions {
        align-items: flex-start;
        flex-direction: column;

        gap: 15px;

        margin-top: 27px;
    }

    .mpa-editorial-actions
    .mpa-btn {
        width: 100%;
    }

    .mpa-editorial-proof {
        margin-top: 30px;
    }

}


/* ==================================================
   ARABIC
================================================== */

html[lang="ar"]
.mpa-editorial-kicker {
    letter-spacing: 0;
    text-transform: none;
}

html[lang="ar"]
.mpa-editorial-heading h1 {
    font-size:
        clamp(47px, 5.5vw, 72px);

    letter-spacing: 0;
    line-height: 1.23;
}

html[lang="ar"]
.mpa-editorial-proof span {
    padding-right: 18px;
    padding-left: 0;
}

html[lang="ar"]
.mpa-editorial-proof span::before {
    right: 0;
    left: auto;
}

html[lang="ar"]
.mpa-editorial-actions
.mpa-btn span {
    transform: scaleX(-1);
}


/* ===== MPA EDITORIAL PROFILE HERO v1.3.2 END ===== */
