/* ==========================================================
   HORMUUD UNIVERSITY — ACCREDITATION 2026
   Interactive institutional recognition page
   ========================================================== */

.hu-accreditation {
    --hu-green: #148154;
    --hu-green-dark: #0F6843;
    --hu-green-soft: #E8F3EE;

    --hu-blue: #2C85B7;
    --hu-blue-dark: #236E98;
    --hu-blue-soft: #EAF4F9;

    --hu-ink: #202522;
    --hu-text: #606862;
    --hu-soft: #7B857E;
    --hu-muted: #8A958D;
    --hu-line: #D9E0DC;
    --hu-line-strong: #C8D1CB;

    --hu-paper: #F8FAF9;
    --hu-white: #FFFFFF;

    --display: "Fraunces", Georgia, serif;
    --body: "Inter", Arial, sans-serif;
    --mono: "DM Mono", monospace;

    width: 100%;
    min-height: 100%;

    color: var(--hu-ink);
    background: var(--hu-paper);

    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;

    overflow: visible;
}

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

.hu-accreditation button {
    font: inherit;
}

.hu-accreditation img {
    max-width: 100%;
}

.hu-accreditation-shell {
    width: min(1280px, calc(100% - 56px));
    margin-inline: auto;
}

.hu-accreditation-kicker {
    display: block;

    color: var(--hu-green);

    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;

    letter-spacing: .08em;
    text-transform: uppercase;
}


/* ==========================================================
   HERO
   ========================================================== */

.hu-accreditation-hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F6FAF7 100%
        );

    border-bottom: 1px solid var(--hu-line);
}

.hu-accreditation-hero-canvas {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: .8;

    pointer-events: none;
}

.hu-accreditation-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, .85fr);

    align-items: center;

    gap: 80px;

    padding:
        120px
        0;
}

.hu-accreditation-hero-copy {
    max-width: 760px;
}

.hu-accreditation-hero-copy h1 {
    margin:
        18px
        0
        0;

    color: var(--hu-green-dark);

    font-family: var(--display);
    font-size: clamp(70px, 8vw, 112px);
    font-weight: 500;
    line-height: .87;

    letter-spacing: -.065em;
}

.hu-accreditation-hero-copy h1 em {
    display: block;

    color: var(--hu-blue);

    font-style: normal;
}

.hu-accreditation-hero-copy > p {
    max-width: 660px;

    margin:
        30px
        0
        0;

    color: var(--hu-soft);

    font-size: 18px;
}

.hu-accreditation-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 32px;
}

.hu-accreditation-primary,
.hu-accreditation-secondary {
    min-height: 48px;

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

    gap: 9px;

    padding:
        0
        16px;

    border-radius: 0;

    cursor: pointer;

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

    transition:
        transform .18s ease,
        background .18s ease,
        color .18s ease,
        border-color .18s ease;
}

.hu-accreditation-primary {
    color: #FFFFFF;
    background: var(--hu-green);

    border: 1px solid var(--hu-green);
}

.hu-accreditation-secondary {
    color: var(--hu-green-dark);
    background: #FFFFFF;

    border: 1px solid var(--hu-line-strong);
}

.hu-accreditation-primary:hover,
.hu-accreditation-secondary:hover {
    transform: translateY(-2px);
}

.hu-accreditation-primary:hover {
    background: var(--hu-green-dark);
}

.hu-accreditation-secondary:hover {
    border-color: var(--hu-green);
}


/* ==========================================================
   HERO SEAL / INTERACTIVE ORBIT
   ========================================================== */

.hu-accreditation-seal {
    position: relative;

    width: min(500px, 100%);
    aspect-ratio: 1 / 1;

    margin-inline: auto;
}

.hu-accreditation-seal-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(44,133,183,.24);
    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.hu-accreditation-seal-ring--outer {
    width: 92%;
    height: 92%;

    border-style: dashed;

    animation:
        huAccreditationSpin
        28s
        linear
        infinite;
}

.hu-accreditation-seal-ring--middle {
    width: 70%;
    height: 70%;

    border-color: rgba(20,129,84,.24);

    animation:
        huAccreditationSpinReverse
        22s
        linear
        infinite;
}

.hu-accreditation-seal-ring--inner {
    width: 46%;
    height: 46%;
}

@keyframes huAccreditationSpin {
    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}

@keyframes huAccreditationSpinReverse {
    from {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }
}

.hu-accreditation-seal-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 180px;
    height: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;
    background: var(--hu-green);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    box-shadow:
        0 26px 70px
        rgba(20,129,84,.16);
}

.hu-accreditation-seal-core span {
    font-family: var(--mono);
    font-size: 11px;

    letter-spacing: .08em;
}

.hu-accreditation-seal-core strong {
    margin-top: 5px;

    font-family: var(--display);
    font-size: 31px;
    font-weight: 500;
}

.hu-accreditation-seal-core small {
    margin-top: 2px;

    color: rgba(255,255,255,.7);

    font-size: 11px;
}

.hu-accreditation-orbit-node {
    position: absolute;
    z-index: 4;

    min-width: 104px;
    min-height: 68px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding:
        10px
        13px;

    color: var(--hu-text);
    background: rgba(255,255,255,.92);

    border: 1px solid var(--hu-line);
    border-radius: 8px;

    cursor: pointer;

    box-shadow:
        0 12px 30px
        rgba(35,56,43,.07);

    transition:
        transform .24s cubic-bezier(.16,1,.3,1),
        background .18s ease,
        border-color .18s ease,
        color .18s ease;
}

.hu-accreditation-orbit-node span {
    color: var(--hu-blue);

    font-family: var(--mono);
    font-size: 10px;
}

.hu-accreditation-orbit-node:hover,
.hu-accreditation-orbit-node.is-active {
    color: var(--hu-green-dark);
    background: var(--hu-green-soft);

    border-color: #AFCBBB;

    transform: translateY(-4px);
}

.hu-accreditation-orbit-node--1 {
    left: 50%;
    top: 0;

    transform:
        translateX(-50%);
}

.hu-accreditation-orbit-node--1:hover,
.hu-accreditation-orbit-node--1.is-active {
    transform:
        translateX(-50%)
        translateY(-4px);
}

.hu-accreditation-orbit-node--2 {
    right: 0;
    top: 50%;

    transform:
        translateY(-50%);
}

.hu-accreditation-orbit-node--2:hover,
.hu-accreditation-orbit-node--2.is-active {
    transform:
        translateY(-50%)
        translateX(-4px);
}

.hu-accreditation-orbit-node--3 {
    left: 50%;
    bottom: 0;

    transform:
        translateX(-50%);
}

.hu-accreditation-orbit-node--3:hover,
.hu-accreditation-orbit-node--3.is-active {
    transform:
        translateX(-50%)
        translateY(4px);
}

.hu-accreditation-orbit-node--4 {
    left: 0;
    top: 50%;

    transform:
        translateY(-50%);
}

.hu-accreditation-orbit-node--4:hover,
.hu-accreditation-orbit-node--4.is-active {
    transform:
        translateY(-50%)
        translateX(4px);
}


/* ==========================================================
   STATEMENT
   ========================================================== */

.hu-accreditation-statement {
    padding:
        90px
        0;

    background: #FFFFFF;

    border-bottom: 1px solid var(--hu-line);
}

.hu-accreditation-statement-grid {
    display: grid;

    grid-template-columns:
        230px
        minmax(0, 1fr);

    gap: 70px;
}

.hu-accreditation-statement-label {
    padding-top: 13px;

    color: var(--hu-blue);

    font-family: var(--mono);
    font-size: 11px;

    letter-spacing: .07em;
}

.hu-accreditation-statement-copy p {
    max-width: 960px;

    margin: 0;

    color: var(--hu-green-dark);

    font-family: var(--display);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -.045em;
}


/* ==========================================================
   SECTION HEADING
   ========================================================== */

.hu-accreditation-section-heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 430px);

    align-items: end;

    gap: 60px;

    margin-bottom: 52px;
}

.hu-accreditation-section-heading h2 {
    max-width: 850px;

    margin:
        12px
        0
        0;

    color: var(--hu-green-dark);

    font-family: var(--display);
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 500;
    line-height: .92;

    letter-spacing: -.055em;
}

.hu-accreditation-section-heading h2 em {
    display: block;

    color: var(--hu-blue);

    font-style: normal;
}

.hu-accreditation-section-heading > p {
    margin: 0;

    color: var(--hu-soft);

    font-size: 15px;
}


/* ==========================================================
   RECOGNITION SYSTEM
   ========================================================== */

.hu-recognition {
    padding:
        125px
        0;

    background:
        linear-gradient(
            180deg,
            #F5F9F6,
            #FFFFFF
        );
}

.hu-recognition-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(330px, .7fr);

    gap: 24px;
}

.hu-recognition-map {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    background: #FFFFFF;

    border: 1px solid var(--hu-line-strong);
}

.hu-recognition-map canvas {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    pointer-events: none;
}

.hu-recognition-core {
    position: absolute;
    z-index: 4;

    left: 50%;
    top: 50%;

    width: 165px;
    height: 165px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;
    background: var(--hu-green);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

    text-align: center;
}

.hu-recognition-core span {
    font-family: var(--mono);
    font-size: 10px;
}

.hu-recognition-core strong {
    max-width: 110px;

    margin-top: 5px;

    font-family: var(--display);
    font-size: 24px;
    font-weight: 500;
    line-height: .98;
}

.hu-recognition-node {
    position: absolute;
    z-index: 5;

    width: 180px;
    min-height: 102px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding:
        16px;

    color: var(--hu-text);
    background: rgba(255,255,255,.94);

    border: 1px solid var(--hu-line);

    cursor: pointer;

    text-align: left;

    transition:
        transform .24s cubic-bezier(.16,1,.3,1),
        background .18s ease,
        border-color .18s ease;
}

.hu-recognition-node > span {
    color: var(--hu-blue);

    font-family: var(--mono);
    font-size: 10px;
}

.hu-recognition-node strong {
    margin-top: 6px;

    color: var(--hu-green-dark);

    font-family: var(--display);
    font-size: 26px;
    font-weight: 500;
}

.hu-recognition-node small {
    margin-top: 2px;

    color: var(--hu-soft);

    font-size: 11px;
}

.hu-recognition-node:hover,
.hu-recognition-node.is-active {
    background: var(--hu-green-soft);

    border-color: #9CC2AE;

    transform: translateY(-4px);
}

.hu-recognition-node--ministry {
    left: 5%;
    top: 9%;
}

.hu-recognition-node--institution {
    right: 5%;
    top: 12%;
}

.hu-recognition-node--knowledge {
    left: 8%;
    bottom: 10%;
}

.hu-recognition-node--standards {
    right: 7%;
    bottom: 9%;
}

.hu-recognition-detail {
    min-height: 620px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding:
        36px;

    background: var(--hu-green-soft);

    border: 1px solid #BFD5C8;
}

.hu-recognition-detail > span {
    color: var(--hu-blue);

    font-family: var(--mono);
    font-size: 11px;
}

.hu-recognition-detail h3 {
    margin:
        14px
        0
        0;

    color: var(--hu-green-dark);

    font-family: var(--display);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: -.035em;
}

.hu-recognition-detail p {
    margin:
        18px
        0
        0;

    color: var(--hu-text);

    font-size: 16px;
}

.hu-recognition-detail-line {
    width: 100%;
    height: 1px;

    margin:
        28px
        0
        16px;

    background: #B7CEC1;
}

.hu-recognition-detail small {
    color: var(--hu-soft);

    font-size: 11px;
}


/* ==========================================================
   DOCUMENT
   ========================================================== */

.hu-accreditation-document {
    padding:
        125px
        0;

    background: #FFFFFF;
}

.hu-document-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(330px, .75fr);

    gap: 55px;

    align-items: center;
}

.hu-document-media {
    position: relative;

    margin: 0;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: var(--hu-blue-soft);

    border: 1px solid var(--hu-line-strong);

    cursor: zoom-in;
}

.hu-document-media img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform:
        scale(1.02)
        translate3d(
            var(--hu-doc-x, 0),
            var(--hu-doc-y, 0),
            0
        );

    transition:
        transform .28s ease;
}

.hu-document-lens {
    position: absolute;

    width: 150px;
    height: 150px;

    display: none;

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;

    background:
        rgba(255,255,255,.10);

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.16);

    transform:
        translate(-50%, -50%);

    pointer-events: none;
}

.hu-document-media:hover
.hu-document-lens {
    display: block;
}

.hu-document-media figcaption {
    position: absolute;

    left: 16px;
    bottom: 16px;

    padding:
        8px
        10px;

    color: #FFFFFF;
    background: rgba(9,45,29,.78);

    font-family: var(--mono);
    font-size: 10px;
}

.hu-document-copy h3 {
    max-width: 600px;

    margin:
        14px
        0
        0;

    color: var(--hu-green-dark);

    font-family: var(--display);
    font-size: clamp(42px, 4.8vw, 64px);
    font-weight: 500;
    line-height: .98;

    letter-spacing: -.045em;
}

.hu-document-copy h3 em {
    display: block;

    color: var(--hu-blue);

    font-style: normal;
}

.hu-document-copy p {
    margin:
        22px
        0
        0;

    color: var(--hu-soft);

    font-size: 16px;
}

.hu-document-open {
    min-height: 46px;

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

    gap: 8px;

    margin-top: 26px;

    padding:
        0
        14px;

    color: #FFFFFF;
    background: var(--hu-green);

    border: 0;

    cursor: pointer;

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


/* ==========================================================
   SIGNALS
   ========================================================== */

.hu-accreditation-signals {
    padding:
        30px
        0
        125px;

    background: #FFFFFF;
}

.hu-signal-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid var(--hu-line-strong);
    border-left: 1px solid var(--hu-line-strong);
}

.hu-signal {
    min-height: 270px;

    padding:
        24px;

    border-right: 1px solid var(--hu-line-strong);
    border-bottom: 1px solid var(--hu-line-strong);
}

.hu-signal > span {
    color: var(--hu-blue);

    font-family: var(--mono);
    font-size: 10px;
}

.hu-signal h3 {
    margin:
        70px
        0
        0;

    color: var(--hu-green-dark);

    font-family: var(--display);
    font-size: 31px;
    font-weight: 500;
    line-height: 1.04;
}

.hu-signal p {
    margin:
        12px
        0
        0;

    color: var(--hu-soft);

    font-size: 13px;
}


/* ==========================================================
   RELATED
   ========================================================== */

.hu-accreditation-related {
    padding:
        105px
        0;

    background: var(--hu-green-soft);
}

.hu-accreditation-related-panel {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, .72fr);

    align-items: end;

    gap: 60px;

    padding:
        50px;

    background: #FFFFFF;

    border: 1px solid #BCD2C5;
}

.hu-accreditation-related h2 {
    max-width: 760px;

    margin:
        12px
        0
        0;

    color: var(--hu-green-dark);

    font-family: var(--display);
    font-size: clamp(45px, 5vw, 66px);
    font-weight: 500;
    line-height: .96;

    letter-spacing: -.045em;
}

.hu-accreditation-related h2 em {
    display: block;

    color: var(--hu-blue);

    font-style: normal;
}

.hu-accreditation-related nav {
    border-top: 1px solid var(--hu-line-strong);
}

.hu-accreditation-related nav a {
    min-height: 62px;

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

    gap: 18px;

    color: var(--hu-text);

    border-bottom: 1px solid var(--hu-line);

    text-decoration: none;

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

.hu-accreditation-related nav a:hover {
    color: var(--hu-green-dark);
}


/* ==========================================================
   MODAL
   ========================================================== */

.hu-document-modal {
    position: fixed;
    z-index: 5000;

    inset: 0;

    display: grid;
    place-items: center;

    padding:
        40px;

    background:
        rgba(10,29,19,.88);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .22s ease,
        visibility 0s linear .22s;
}

.hu-document-modal.is-open {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transition:
        opacity .22s ease,
        visibility 0s;
}

.hu-document-modal-inner {
    width: min(1100px, 100%);
    max-height: calc(100vh - 80px);

    display: grid;
    place-items: center;
}

.hu-document-modal-inner img {
    max-width: 100%;
    max-height: calc(100vh - 80px);

    display: block;

    object-fit: contain;
}

.hu-document-modal-close {
    position: absolute;

    right: 24px;
    top: 24px;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    padding: 0;

    color: var(--hu-green-dark);
    background: #FFFFFF;

    border: 0;
    border-radius: 50%;

    cursor: pointer;
}


/* ==========================================================
   REVEALS
   ========================================================== */

.hu-accreditation-reveal {
    opacity: 1;
    transform: none;
}

.hu-accreditation.js-ready
.hu-accreditation-reveal {
    opacity: 0;

    transform:
        translateY(18px);

    transition:
        opacity .72s ease,
        transform .72s
        cubic-bezier(.16,1,.3,1);
}

.hu-accreditation.js-ready
.hu-accreditation-reveal.is-visible {
    opacity: 1;

    transform: none;
}


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

@media (max-width: 1020px) {

    .hu-accreditation-hero-grid,
    .hu-document-grid,
    .hu-recognition-layout {
        grid-template-columns: 1fr;
    }

    .hu-accreditation-hero {
        min-height: 0;
    }

    .hu-accreditation-seal {
        max-width: 540px;
    }

    .hu-recognition-map {
        min-height: 580px;
    }

    .hu-recognition-detail {
        min-height: 0;

        padding:
            32px;
    }

    .hu-signal-grid {
        grid-template-columns:
            1fr
            1fr;
    }
}


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

@media (max-width: 720px) {

    .hu-accreditation-shell {
        width:
            min(
                100% - 30px,
                1280px
            );
    }

    .hu-accreditation-hero-grid {
        gap: 55px;

        padding:
            85px
            0;
    }

    .hu-accreditation-hero-copy h1 {
        font-size:
            clamp(
                58px,
                17vw,
                82px
            );
    }

    .hu-accreditation-statement {
        padding:
            75px
            0;
    }

    .hu-accreditation-statement-grid,
    .hu-accreditation-section-heading,
    .hu-accreditation-related-panel {
        grid-template-columns: 1fr;
    }

    .hu-accreditation-statement-grid,
    .hu-accreditation-section-heading {
        gap: 22px;
    }

    .hu-accreditation-section-heading h2 {
        font-size:
            clamp(
                45px,
                13vw,
                62px
            );
    }

    .hu-recognition,
    .hu-accreditation-document {
        padding:
            85px
            0;
    }

    .hu-accreditation-seal {
        width: 100%;
        max-width: 390px;
    }

    .hu-accreditation-seal-core {
        width: 132px;
        height: 132px;
    }

    .hu-accreditation-seal-core strong {
        font-size: 25px;
    }

    .hu-accreditation-orbit-node {
        min-width: 88px;
        min-height: 58px;

        padding:
            7px
            9px;

        font-size: 11px;
    }

    .hu-recognition-map {
        min-height: 690px;
    }

    .hu-recognition-core {
        width: 128px;
        height: 128px;
    }

    .hu-recognition-node {
        width: 138px;
        min-height: 90px;

        padding: 12px;
    }

    .hu-recognition-node strong {
        font-size: 21px;
    }

    .hu-recognition-node--ministry {
        left: 3%;
        top: 6%;
    }

    .hu-recognition-node--institution {
        right: 3%;
        top: 18%;
    }

    .hu-recognition-node--knowledge {
        left: 3%;
        bottom: 18%;
    }

    .hu-recognition-node--standards {
        right: 3%;
        bottom: 6%;
    }

    .hu-document-media {
        aspect-ratio: 4 / 5;
    }

    .hu-document-media:hover
    .hu-document-lens {
        display: none;
    }

    .hu-signal-grid {
        grid-template-columns: 1fr;
    }

    .hu-signal {
        min-height: 220px;
    }

    .hu-signal h3 {
        margin-top: 42px;
    }

    .hu-accreditation-related {
        padding:
            80px
            0;
    }

    .hu-accreditation-related-panel {
        padding:
            34px
            24px;
    }

    .hu-document-modal {
        padding: 20px;
    }

}


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

@media (max-width: 470px) {

    .hu-accreditation-shell {
        width:
            min(
                100% - 22px,
                1280px
            );
    }

    .hu-accreditation-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hu-accreditation-primary,
    .hu-accreditation-secondary {
        justify-content: center;
    }

}


/* ==========================================================
   MOTION SAFETY
   ========================================================== */

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

    .hu-accreditation *,
    .hu-accreditation *::before,
    .hu-accreditation *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .hu-accreditation.js-ready
    .hu-accreditation-reveal {
        opacity: 1;
        transform: none;
    }

}

/* ==========================================================
   HORMUUD UNIVERSITY — ACCREDITATION PAGE
   FINAL LIGHT / DARK IDENTITY 2026

   NOTE
   ----
   public_layout loads the global HU brand theme after
   page-specific CSS. For that reason, both light and dark
   states below use explicit page selectors and !important
   only on theme-sensitive properties.
   ========================================================== */


/* ==========================================================
   LIGHT MODE — CANONICAL HU IDENTITY
   ========================================================== */

html[data-theme="light"] .hu-accreditation,
html:not([data-theme="dark"]) .hu-accreditation {
    --hu-green: #148154 !important;
    --hu-green-dark: #0F6843 !important;
    --hu-green-soft: #E8F3EE !important;

    --hu-blue: #2C85B7 !important;
    --hu-blue-dark: #236E98 !important;
    --hu-blue-soft: #EAF4F9 !important;

    --hu-ink: #202522 !important;
    --hu-text: #606862 !important;
    --hu-soft: #7B857E !important;
    --hu-muted: #8A958D !important;

    --hu-line: #D9E0DC !important;
    --hu-line-strong: #C8D1CB !important;

    --hu-paper: #F8FAF9 !important;
    --hu-white: #FFFFFF !important;

    color: #202522 !important;
    background: #F8FAF9 !important;
}


/* LIGHT — HERO */

html[data-theme="light"] .hu-accreditation .hu-accreditation-hero,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-hero {
    background: #F8FAF9 !important;
    border-bottom-color: #D9E0DC !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-hero-copy h1,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-hero-copy h1 {
    color: #0F6843 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-hero-copy h1 em,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-hero-copy h1 em {
    color: #2C85B7 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-hero-copy > p,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-hero-copy > p {
    color: #606862 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-primary,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-primary {
    color: #FFFFFF !important;
    background: #148154 !important;
    border-color: #148154 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-primary:hover,
html[data-theme="light"] .hu-accreditation .hu-accreditation-primary:focus-visible,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-primary:hover,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-primary:focus-visible {
    background: #0F6843 !important;
    border-color: #0F6843 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-secondary,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-secondary {
    color: #0F6843 !important;
    background: #FFFFFF !important;
    border-color: #C8D1CB !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-secondary:hover,
html[data-theme="light"] .hu-accreditation .hu-accreditation-secondary:focus-visible,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-secondary:hover,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-secondary:focus-visible {
    color: #0F6843 !important;
    background: #E8F3EE !important;
    border-color: #148154 !important;
}


/* LIGHT — INTERACTIVE HERO SEAL */

html[data-theme="light"] .hu-accreditation .hu-accreditation-seal-ring,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-seal-ring {
    border-color: rgba(44,133,183,.24) !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-seal-ring--middle,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-seal-ring--middle {
    border-color: rgba(20,129,84,.24) !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-seal-core,
html[data-theme="light"] .hu-accreditation .hu-recognition-core,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-seal-core,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-core {
    color: #FFFFFF !important;
    background: #148154 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-seal-core small,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-seal-core small {
    color: rgba(255,255,255,.72) !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-orbit-node,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-orbit-node {
    color: #606862 !important;
    background: rgba(255,255,255,.96) !important;
    border-color: #D9E0DC !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-orbit-node span,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-orbit-node span {
    color: #2C85B7 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-orbit-node:hover,
html[data-theme="light"] .hu-accreditation .hu-accreditation-orbit-node.is-active,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-orbit-node:hover,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-orbit-node.is-active {
    color: #0F6843 !important;
    background: #E8F3EE !important;
    border-color: #BFD7CB !important;
}


/* LIGHT — ACCREDITATION STATEMENT */

html[data-theme="light"] .hu-accreditation .hu-accreditation-statement,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-statement {
    background: #FFFFFF !important;
    border-bottom-color: #D9E0DC !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-statement-label,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-statement-label {
    color: #236E98 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-statement-copy p,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-statement-copy p {
    color: #0F6843 !important;
}


/* LIGHT — SHARED HEADINGS */

html[data-theme="light"] .hu-accreditation .hu-accreditation-kicker,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-kicker {
    color: #148154 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-section-heading h2,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-section-heading h2 {
    color: #0F6843 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-section-heading h2 em,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-section-heading h2 em {
    color: #2C85B7 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-section-heading > p,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-section-heading > p {
    color: #7B857E !important;
}


/* LIGHT — RECOGNITION SYSTEM */

html[data-theme="light"] .hu-accreditation .hu-recognition,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition {
    background: #F1F5F2 !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-map,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-map {
    background: #FFFFFF !important;
    border-color: #C8D1CB !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-node,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-node {
    color: #606862 !important;
    background: rgba(255,255,255,.97) !important;
    border-color: #D9E0DC !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-node > span,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-node > span {
    color: #2C85B7 !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-node strong,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-node strong {
    color: #0F6843 !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-node small,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-node small {
    color: #7B857E !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-node:hover,
html[data-theme="light"] .hu-accreditation .hu-recognition-node.is-active,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-node:hover,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-node.is-active {
    background: #E8F3EE !important;
    border-color: #BFD7CB !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-detail,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-detail {
    background: #E8F3EE !important;
    border-color: #BFD7CB !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-detail > span,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-detail > span {
    color: #236E98 !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-detail h3,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-detail h3 {
    color: #0F6843 !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-detail p,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-detail p {
    color: #606862 !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-detail-line,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-detail-line {
    background: #BFD7CB !important;
}

html[data-theme="light"] .hu-accreditation .hu-recognition-detail small,
html:not([data-theme="dark"]) .hu-accreditation .hu-recognition-detail small {
    color: #7B857E !important;
}


/* LIGHT — DOCUMENT */

html[data-theme="light"] .hu-accreditation .hu-accreditation-document,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-document {
    background: #FFFFFF !important;
}

html[data-theme="light"] .hu-accreditation .hu-document-media,
html:not([data-theme="dark"]) .hu-accreditation .hu-document-media {
    background: #EAF4F9 !important;
    border-color: #C8D1CB !important;
}

html[data-theme="light"] .hu-accreditation .hu-document-copy h3,
html:not([data-theme="dark"]) .hu-accreditation .hu-document-copy h3 {
    color: #0F6843 !important;
}

html[data-theme="light"] .hu-accreditation .hu-document-copy h3 em,
html:not([data-theme="dark"]) .hu-accreditation .hu-document-copy h3 em {
    color: #2C85B7 !important;
}

html[data-theme="light"] .hu-accreditation .hu-document-copy p,
html:not([data-theme="dark"]) .hu-accreditation .hu-document-copy p {
    color: #7B857E !important;
}

html[data-theme="light"] .hu-accreditation .hu-document-open,
html:not([data-theme="dark"]) .hu-accreditation .hu-document-open {
    color: #FFFFFF !important;
    background: #148154 !important;
}

html[data-theme="light"] .hu-accreditation .hu-document-open:hover,
html[data-theme="light"] .hu-accreditation .hu-document-open:focus-visible,
html:not([data-theme="dark"]) .hu-accreditation .hu-document-open:hover,
html:not([data-theme="dark"]) .hu-accreditation .hu-document-open:focus-visible {
    background: #0F6843 !important;
}


/* LIGHT — SOURCE SIGNALS */

html[data-theme="light"] .hu-accreditation .hu-accreditation-signals,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-signals {
    background: #F8FAF9 !important;
}

html[data-theme="light"] .hu-accreditation .hu-signal-grid,
html[data-theme="light"] .hu-accreditation .hu-signal,
html:not([data-theme="dark"]) .hu-accreditation .hu-signal-grid,
html:not([data-theme="dark"]) .hu-accreditation .hu-signal {
    border-color: #C8D1CB !important;
}

html[data-theme="light"] .hu-accreditation .hu-signal > span,
html:not([data-theme="dark"]) .hu-accreditation .hu-signal > span {
    color: #236E98 !important;
}

html[data-theme="light"] .hu-accreditation .hu-signal h3,
html:not([data-theme="dark"]) .hu-accreditation .hu-signal h3 {
    color: #0F6843 !important;
}

html[data-theme="light"] .hu-accreditation .hu-signal p,
html:not([data-theme="dark"]) .hu-accreditation .hu-signal p {
    color: #7B857E !important;
}


/* LIGHT — RELATED */

html[data-theme="light"] .hu-accreditation .hu-accreditation-related,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-related {
    background: #E8F3EE !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-related-panel,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-related-panel {
    background: #FFFFFF !important;
    border-color: #BFD7CB !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-related h2,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-related h2 {
    color: #0F6843 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-related h2 em,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-related h2 em {
    color: #2C85B7 !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-related nav,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-related nav {
    border-top-color: #C8D1CB !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-related nav a,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-related nav a {
    color: #606862 !important;
    border-bottom-color: #D9E0DC !important;
}

html[data-theme="light"] .hu-accreditation .hu-accreditation-related nav a:hover,
html[data-theme="light"] .hu-accreditation .hu-accreditation-related nav a:focus-visible,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-related nav a:hover,
html:not([data-theme="dark"]) .hu-accreditation .hu-accreditation-related nav a:focus-visible {
    color: #0F6843 !important;
}


/* ==========================================================
   DARK MODE — CANONICAL HU IDENTITY
   ========================================================== */

html[data-theme="dark"] .hu-accreditation {
    --hu-green: #66C59B !important;
    --hu-green-dark: #86D5B2 !important;
    --hu-green-soft: #183A2C !important;

    --hu-blue: #72BCE3 !important;
    --hu-blue-dark: #97D1EC !important;
    --hu-blue-soft: #173442 !important;

    --hu-ink: #EDF3EF !important;
    --hu-text: #A9B5AE !important;
    --hu-soft: #7F8B84 !important;
    --hu-muted: #6F7A73 !important;

    --hu-line: #2D3A32 !important;
    --hu-line-strong: #3A493F !important;

    --hu-paper: #0E1511 !important;
    --hu-white: #151E18 !important;

    color: #EDF3EF !important;
    background: #0E1511 !important;
}


/* DARK — HERO */

html[data-theme="dark"] .hu-accreditation .hu-accreditation-hero {
    background: #0E1511 !important;
    border-bottom-color: #2D3A32 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-hero-copy h1 {
    color: #86D5B2 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-hero-copy h1 em {
    color: #72BCE3 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-hero-copy > p {
    color: #A9B5AE !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-primary {
    color: #0E1511 !important;
    background: #66C59B !important;
    border-color: #66C59B !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-primary:hover,
html[data-theme="dark"] .hu-accreditation .hu-accreditation-primary:focus-visible {
    background: #86D5B2 !important;
    border-color: #86D5B2 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-secondary {
    color: #86D5B2 !important;
    background: #151E18 !important;
    border-color: #3A493F !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-secondary:hover,
html[data-theme="dark"] .hu-accreditation .hu-accreditation-secondary:focus-visible {
    color: #EDF3EF !important;
    background: #1D2921 !important;
    border-color: #66C59B !important;
}


/* DARK — INTERACTIVE HERO SEAL */

html[data-theme="dark"] .hu-accreditation .hu-accreditation-seal-ring {
    border-color: rgba(114,188,227,.26) !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-seal-ring--middle {
    border-color: rgba(102,197,155,.28) !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-seal-core,
html[data-theme="dark"] .hu-accreditation .hu-recognition-core {
    color: #0E1511 !important;
    background: #66C59B !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-seal-core small {
    color: rgba(14,21,17,.66) !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-orbit-node {
    color: #A9B5AE !important;
    background: rgba(29,41,33,.96) !important;
    border-color: #3A493F !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-orbit-node span {
    color: #72BCE3 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-orbit-node:hover,
html[data-theme="dark"] .hu-accreditation .hu-accreditation-orbit-node.is-active {
    color: #86D5B2 !important;
    background: #183A2C !important;
    border-color: #3A5D49 !important;
}


/* DARK — ACCREDITATION STATEMENT */

html[data-theme="dark"] .hu-accreditation .hu-accreditation-statement {
    background: #151E18 !important;
    border-bottom-color: #2D3A32 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-statement-label {
    color: #97D1EC !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-statement-copy p {
    color: #86D5B2 !important;
}


/* DARK — SHARED HEADINGS */

html[data-theme="dark"] .hu-accreditation .hu-accreditation-kicker {
    color: #66C59B !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-section-heading h2 {
    color: #EDF3EF !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-section-heading h2 em {
    color: #72BCE3 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-section-heading > p {
    color: #A9B5AE !important;
}


/* DARK — RECOGNITION SYSTEM */

html[data-theme="dark"] .hu-accreditation .hu-recognition {
    background: #18241D !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-map {
    background: #151E18 !important;
    border-color: #3A493F !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-node {
    color: #A9B5AE !important;
    background: rgba(29,41,33,.97) !important;
    border-color: #3A493F !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-node > span {
    color: #72BCE3 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-node strong {
    color: #86D5B2 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-node small {
    color: #7F8B84 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-node:hover,
html[data-theme="dark"] .hu-accreditation .hu-recognition-node.is-active {
    background: #183A2C !important;
    border-color: #3A5D49 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-detail {
    background: #183A2C !important;
    border-color: #3A5D49 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-detail > span {
    color: #97D1EC !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-detail h3 {
    color: #86D5B2 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-detail p {
    color: #A9B5AE !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-detail-line {
    background: #3A5D49 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-recognition-detail small {
    color: #7F8B84 !important;
}


/* DARK — DOCUMENT */

html[data-theme="dark"] .hu-accreditation .hu-accreditation-document {
    background: #0E1511 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-document-media {
    background: #173442 !important;
    border-color: #3A493F !important;
}

html[data-theme="dark"] .hu-accreditation .hu-document-lens {
    border-color: rgba(255,255,255,.58) !important;
    background: rgba(255,255,255,.06) !important;
}

html[data-theme="dark"] .hu-accreditation .hu-document-copy h3 {
    color: #EDF3EF !important;
}

html[data-theme="dark"] .hu-accreditation .hu-document-copy h3 em {
    color: #72BCE3 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-document-copy p {
    color: #A9B5AE !important;
}

html[data-theme="dark"] .hu-accreditation .hu-document-open {
    color: #0E1511 !important;
    background: #66C59B !important;
}

html[data-theme="dark"] .hu-accreditation .hu-document-open:hover,
html[data-theme="dark"] .hu-accreditation .hu-document-open:focus-visible {
    background: #86D5B2 !important;
}


/* DARK — SOURCE SIGNALS */

html[data-theme="dark"] .hu-accreditation .hu-accreditation-signals {
    background: #151E18 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-signal-grid,
html[data-theme="dark"] .hu-accreditation .hu-signal {
    border-color: #3A493F !important;
}

html[data-theme="dark"] .hu-accreditation .hu-signal > span {
    color: #97D1EC !important;
}

html[data-theme="dark"] .hu-accreditation .hu-signal h3 {
    color: #EDF3EF !important;
}

html[data-theme="dark"] .hu-accreditation .hu-signal p {
    color: #A9B5AE !important;
}


/* DARK — RELATED */

html[data-theme="dark"] .hu-accreditation .hu-accreditation-related {
    background: #183A2C !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-related-panel {
    background: #151E18 !important;
    border-color: #3A5D49 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-related h2 {
    color: #EDF3EF !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-related h2 em {
    color: #97D1EC !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-related nav {
    border-top-color: #3A493F !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-related nav a {
    color: #A9B5AE !important;
    border-bottom-color: #2D3A32 !important;
}

html[data-theme="dark"] .hu-accreditation .hu-accreditation-related nav a:hover,
html[data-theme="dark"] .hu-accreditation .hu-accreditation-related nav a:focus-visible {
    color: #86D5B2 !important;
}


/* DARK — MODAL */

html[data-theme="dark"] .hu-document-modal {
    background: rgba(4,10,6,.94) !important;
}

html[data-theme="dark"] .hu-document-modal-close {
    color: #86D5B2 !important;
    background: #1D2921 !important;
    border: 1px solid #2D3A32 !important;
}

html[data-theme="dark"] .hu-document-modal-close:hover,
html[data-theme="dark"] .hu-document-modal-close:focus-visible {
    color: #0E1511 !important;
    background: #86D5B2 !important;
}


/* ==========================================================
   THEME TRANSITIONS
   ========================================================== */

.hu-accreditation,
.hu-accreditation .hu-accreditation-hero,
.hu-accreditation .hu-accreditation-statement,
.hu-accreditation .hu-recognition,
.hu-accreditation .hu-recognition-map,
.hu-accreditation .hu-recognition-detail,
.hu-accreditation .hu-accreditation-document,
.hu-accreditation .hu-accreditation-signals,
.hu-accreditation .hu-accreditation-related,
.hu-accreditation .hu-accreditation-related-panel,
.hu-accreditation .hu-accreditation-orbit-node,
.hu-accreditation .hu-recognition-node {
    transition:
        background-color .24s ease,
        color .24s ease,
        border-color .24s ease;
}

@media (prefers-reduced-motion: reduce) {
    .hu-accreditation,
    .hu-accreditation .hu-accreditation-hero,
    .hu-accreditation .hu-accreditation-statement,
    .hu-accreditation .hu-recognition,
    .hu-accreditation .hu-recognition-map,
    .hu-accreditation .hu-recognition-detail,
    .hu-accreditation .hu-accreditation-document,
    .hu-accreditation .hu-accreditation-signals,
    .hu-accreditation .hu-accreditation-related,
    .hu-accreditation .hu-accreditation-related-panel,
    .hu-accreditation .hu-accreditation-orbit-node,
    .hu-accreditation .hu-recognition-node {
        transition: none !important;
    }
}
