/* UNIVGA — accueil TEST. Éditorial : texte, photo, typographie. */

#univga-hometest-portal {
    --navy: #0b1e4d;
    --gold: #c9922a;
    --ink: #1c2434;
    --muted: #5a6474;
    --line: #e4e7ee;
    --paper: #f6f5f2;
    --ivory: #f4efe4;
    --white: #fff;

    font-family: Georgia, "Times New Roman", Times, serif;
    color: var(--ink);
    line-height: 1.7;
    overflow: visible;
    -webkit-font-smoothing: antialiased;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    background: var(--white);
}
body:has(#univga-hometest-portal) .title_single_area,
body:has(#univga-hometest-portal) .breadcrumb,
body:has(#univga-hometest-portal) .post-meta,
body:has(#univga-hometest-portal) .post > .title,
body:has(#univga-hometest-portal) .entry-title { display: none !important; }
body:has(#univga-hometest-portal) .rh-outer-wrap > .rh-container,
body:has(#univga-hometest-portal) .rh-container.full_post_area,
body:has(#univga-hometest-portal) .rh-content-wrap,
body:has(#univga-hometest-portal) .rh-fullbrowser,
body:has(#univga-hometest-portal) .main-side,
body:has(#univga-hometest-portal) article.post {
    padding-top: 0 !important;
    margin-top: 0 !important;
    background-color: #05081a;
}
body:has(#univga-hometest-portal) article.post > p {
    margin: 0 !important;
    padding: 0 !important;
}
body:has(#univga-hometest-portal) .uvg-hero-root {
    margin-top: 0 !important;
    background: #05081a;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uvg-hero {
    padding: 72px 24px 120px;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uvg-hero__students {
    display: none !important;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uvg-hero__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 720px;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uvg-hero__visual {
    display: none !important;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uvg-blob { opacity: .28; }
body:has(#univga-hometest-portal) .uvg-hero-root .uvg-tech--grid { opacity: .4; }
body:has(#univga-hometest-portal) .uvg-hero-root .uvg-tech--lines {
    z-index: 2;
    opacity: 1;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, .65));
}
body:has(#univga-hometest-portal) .uvg-hero-root .uvg-tech--lines path {
    stroke-width: 1.75;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uvg-particle {
    z-index: 3;
}

/* Orbite — trois anneaux cyan au centre, au-dessus de la photo */
body:has(#univga-hometest-portal) .uvg-hero-root .uht-orbit {
    position: absolute;
    left: 50%;
    top: 48%;
    width: min(520px, 72vw);
    height: min(520px, 72vw);
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-orbit span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(186, 230, 253, .22);
    box-shadow: none;
    animation: uht-orbit-spin 48s linear infinite;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-orbit span:nth-child(2) {
    inset: 13%;
    animation-duration: 64s;
    animation-direction: reverse;
    border-color: rgba(186, 230, 253, .16);
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-orbit span:nth-child(3) {
    inset: 26%;
    animation-duration: 80s;
    border-color: rgba(186, 230, 253, .12);
}
@keyframes uht-orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    body:has(#univga-hometest-portal) .uvg-hero-root .uht-orbit span {
        animation: none;
    }
}

/* Drapeaux africains — défilement vertical, bas → haut */
body:has(#univga-hometest-portal) .uvg-hero-root .uht-flagrail {
    position: absolute;
    top: 0;
    bottom: 0;
    right: clamp(10px, 2vw, 28px);
    width: 48px;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-flagrail__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: uht-flag-up 36s linear infinite;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-flagrail__flag {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 18px -10px rgba(0, 0, 0, .55), 0 0 0 1px rgba(201, 162, 74, .4);
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-flagrail__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
@keyframes uht-flag-up {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    body:has(#univga-hometest-portal) .uvg-hero-root .uht-flagrail__track {
        animation: none;
    }
}

/* Atmosphère : diplômés en toge, grande photo floue derrière l’orbite */
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-atmosphere__photo {
    position: absolute;
    inset: -24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 42%;
    filter: saturate(.78) brightness(.62);
    opacity: .5;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-atmosphere::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 58% at 50% 48%, rgba(5, 8, 26, .42) 0%, rgba(5, 8, 26, .32) 62%, rgba(5, 8, 26, .55) 100%),
        linear-gradient(180deg, rgba(5, 8, 26, .18) 0%, transparent 30%, rgba(5, 8, 26, .5) 100%);
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    max-width: 980px;
    text-align: center;
    color: #fff;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 .22em;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2.35rem, 6.2vw, 4.4rem);
    letter-spacing: .01em;
    color: #c9a24a;
    line-height: 1.12;
    text-shadow: 0 2px 28px rgba(5, 8, 26, .55);
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__verb {
    display: inline-grid;
    min-width: 0;
    justify-items: end;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__verb span {
    grid-area: 1 / 1;
    opacity: 0;
    animation: uht-verb 20s ease-in-out infinite;
    white-space: nowrap;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__verb span[lang="ar"] {
    font-family: "Noto Naskh Arabic", "Amiri", "Geeza Pro", "Traditional Arabic", "Segoe UI", serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__verb span:nth-child(1) { animation-delay: 0s; }
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__verb span:nth-child(2) { animation-delay: 4s; }
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__verb span:nth-child(3) { animation-delay: 8s; }
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__verb span:nth-child(4) { animation-delay: 12s; }
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__verb span:nth-child(5) { animation-delay: 16s; }
@keyframes uht-verb {
    0%, 3% { opacity: 0; transform: translateY(10px); }
    7%, 16% { opacity: 1; transform: none; }
    20%, 100% { opacity: 0; transform: translateY(-10px); }
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__sub {
    display: inline-block;
    position: relative;
    margin-top: 18px;
    padding: 0 12px 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(.78rem, 1.5vw, .95rem);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__sub::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #c9a24a 14%, #e8c56b 50%, #c9a24a 86%, transparent 100%);
}
body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__sub::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 7px;
    height: 7px;
    background: #c9a24a;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 0 0 3px rgba(5, 8, 26, .55);
}
@media (prefers-reduced-motion: reduce) {
    body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__verb span {
        animation: none;
        opacity: 0;
    }
    body:has(#univga-hometest-portal) .uvg-hero-root .uht-hero-motto__verb span:first-child {
        opacity: 1;
        transform: none;
    }
}
#univga-hometest-portal *,
#univga-hometest-portal *::before,
#univga-hometest-portal *::after { box-sizing: border-box; }

#univga-hometest-portal h2,
#univga-hometest-portal h3,
#univga-hometest-portal .uht-label,
#univga-hometest-portal .uht-fact__rail,
#univga-hometest-portal .uht-fact__n,
#univga-hometest-portal .uht-links a,
#univga-hometest-portal .uht-list span,
#univga-hometest-portal .uht-figures strong,
#univga-hometest-portal .uht-figures span {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#univga-hometest-portal img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Cartes Mission / Vision / Ambition — bandeau vertical, matière, or */
#univga-hometest-portal .uht-facts-wrap {
    position: relative;
    z-index: 6;
    overflow: visible;
}
#univga-hometest-portal .uht-facts__mark {
    position: absolute;
    top: calc(50% + 40px);
    width: min(118px, 10vw);
    height: min(118px, 10vw);
    z-index: 0;
    pointer-events: none;
    background: #8b909a;
    -webkit-mask: url("https://univga.org/wp-content/uploads/2023/04/palm.png") center / contain no-repeat;
    mask: url("https://univga.org/wp-content/uploads/2023/04/palm.png") center / contain no-repeat;
    opacity: .2;
    filter: blur(2.8px);
}
#univga-hometest-portal .uht-facts__mark--l {
    left: max(18px, calc((100% - 1220px) / 4));
    transform: translate(-50%, -40%);
}
#univga-hometest-portal .uht-facts__mark--r {
    right: max(18px, calc((100% - 1220px) / 4));
    transform: translate(50%, -40%) scaleX(-1);
}
#univga-hometest-portal .uht-facts {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    margin: -64px auto 0;
    padding: 0 clamp(20px, 3.2vw, 48px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
#univga-hometest-portal .uht-fact {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    min-height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 22px 48px -20px rgba(5, 13, 40, .45);
    transition: transform .3s ease, box-shadow .3s ease;
}
#univga-hometest-portal .uht-fact:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 60px -22px rgba(5, 13, 40, .5);
}
#univga-hometest-portal .uht-fact .uht-fact__rail {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
    line-height: 1;
}
#univga-hometest-portal .uht-fact__body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 22px 20px 20px;
    overflow: hidden;
}
#univga-hometest-portal .uht-fact__n {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.06em;
    pointer-events: none;
    z-index: 0;
}
#univga-hometest-portal .uht-fact__body p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: .95rem;
    line-height: 1.5;
    font-family: Georgia, "Times New Roman", Times, serif;
}

/* Mission — marine et or */
#univga-hometest-portal .uht-fact--mission .uht-fact__rail {
    background: #c9a24a;
    color: #0b1e4d;
}
#univga-hometest-portal .uht-fact--mission .uht-fact__body {
    background: #0b1e4d;
    box-shadow: inset 0 0 0 1px rgba(201, 162, 74, .28);
}
#univga-hometest-portal .uht-fact--mission .uht-fact__n { color: rgba(201, 162, 74, .16); }
#univga-hometest-portal .uht-fact--mission p { color: #e8e4d8; }

/* Vision — ivoire, double filet or */
#univga-hometest-portal .uht-fact--vision .uht-fact__rail {
    background: #0b1e4d;
    color: #e8c56b;
}
#univga-hometest-portal .uht-fact--vision .uht-fact__body {
    background: #f7f1e4;
    box-shadow: inset 0 0 0 1px rgba(201, 162, 74, .55);
}
#univga-hometest-portal .uht-fact--vision .uht-fact__n { color: rgba(11, 30, 77, .08); }
#univga-hometest-portal .uht-fact--vision p { color: #2c3344; }

/* Ambition — émeraude profonde */
#univga-hometest-portal .uht-fact--ambition .uht-fact__rail {
    background: #d4af37;
    color: #062e2a;
}
#univga-hometest-portal .uht-fact--ambition .uht-fact__body {
    background: #0d3d38;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .28);
}
#univga-hometest-portal .uht-fact--ambition .uht-fact__n { color: rgba(212, 175, 55, .16); }
#univga-hometest-portal .uht-fact--ambition p { color: #e6efe8; }

/* MBA — or massif */
#univga-hometest-portal .uht-fact--mba .uht-fact__rail {
    background: #0b1e4d;
    color: #e8c56b;
}
#univga-hometest-portal .uht-fact--mba .uht-fact__body {
    background: #c9a24a;
    box-shadow: inset 0 0 0 1px rgba(11, 30, 77, .18);
}
#univga-hometest-portal .uht-fact--mba .uht-fact__n { color: rgba(11, 30, 77, .12); }
#univga-hometest-portal .uht-fact--mba p { color: #0b1e4d; }

#univga-hometest-portal .uht-fact__hit {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: transparent;
    font-size: 0;
    text-decoration: none;
}
#univga-hometest-portal .uht-fact__hit span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#univga-hometest-portal .uht-label {
    display: inline-block;
    margin: 0 0 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
}

#univga-hometest-portal h2 {
    margin: 0 0 18px;
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.25;
    color: var(--navy);
}

#univga-hometest-portal h3 {
    margin: 0 0 8px;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy);
}

#univga-hometest-portal p {
    margin: 0 0 14px;
    font-size: 1.05rem;
    color: var(--muted);
}

#univga-hometest-portal .uht-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin: 22px 0 0;
}
#univga-hometest-portal .uht-links a,
#univga-hometest-portal .uht-list a,
#univga-hometest-portal .uht-pair a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}
#univga-hometest-portal .uht-links a::before,
#univga-hometest-portal .uht-list a::before,
#univga-hometest-portal .uht-pair a::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: -1px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
}
#univga-hometest-portal .uht-links a:hover,
#univga-hometest-portal .uht-list a:hover,
#univga-hometest-portal .uht-pair a:hover {
    color: var(--gold);
}

/* Identité — pleine largeur, photo bord à bord, panneau ivoire */
#univga-hometest-portal .uht-identite-wrap {
    position: relative;
    margin: 48px 0 0;
}
#univga-hometest-portal .uht-identite-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(90deg, #c9a24a 0%, rgba(201, 162, 74, .35) 12%, transparent 28%, transparent 72%, rgba(201, 162, 74, .35) 88%, #c9a24a 100%);
}
#univga-hometest-portal .uht-suspenders {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0;
    z-index: 5;
    pointer-events: none;
}
#univga-hometest-portal .uht-suspender {
    position: absolute;
    top: -268px;
    width: 1px;
    height: 290px;
    background: linear-gradient(180deg, transparent 0%, #c9a24a 6%, #c9a24a 100%);
}
#univga-hometest-portal .uht-suspender--l { left: 22px; }
#univga-hometest-portal .uht-suspender--r { right: 22px; }
#univga-hometest-portal .uht-suspender::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #c9a24a;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 0 0 3px #05081a;
}
#univga-hometest-portal .uht-suspender::after {
    content: "";
    position: absolute;
    top: 266px;
    width: 30px;
    height: 22px;
}
#univga-hometest-portal .uht-suspender--l::after {
    left: -5px;
    border-top: 2px solid #c9a24a;
    border-left: 2px solid #c9a24a;
    background:
        linear-gradient(#0b1e4d, #0b1e4d) 3px 3px / 4px 4px no-repeat,
        linear-gradient(#c9a24a, #c9a24a) 0 0 / 10px 10px no-repeat;
}
#univga-hometest-portal .uht-suspender--r::after {
    right: -5px;
    border-top: 2px solid #c9a24a;
    border-right: 2px solid #c9a24a;
    background:
        linear-gradient(#0b1e4d, #0b1e4d) calc(100% - 3px) 3px / 4px 4px no-repeat,
        linear-gradient(#c9a24a, #c9a24a) 100% 0 / 10px 10px no-repeat;
}
#univga-hometest-portal .uht-identite {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(480px, 58%);
    min-height: 0;
    width: 100%;
    margin: 0;
    background: #0b1e4d;
    overflow: hidden;
}
#univga-hometest-portal .uht-identite__media {
    margin: 0;
    position: relative;
    min-height: 100%;
    overflow: hidden;
}
#univga-hometest-portal .uht-identite__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.04);
    animation: uht-ken 22s ease-in-out infinite alternate;
}
@keyframes uht-ken {
    from { transform: scale(1.04) translate(0, 0); }
    to { transform: scale(1.1) translate(-1.2%, 1%); }
}
@media (prefers-reduced-motion: reduce) {
    #univga-hometest-portal .uht-identite__media img { animation: none; }
    #univga-hometest-portal .uht-recon__media > img { animation: none; }
}
#univga-hometest-portal .uht-identite__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 42%, rgba(11, 30, 77, .28) 100%),
        linear-gradient(180deg, transparent 52%, rgba(5, 13, 40, .55) 72%, rgba(5, 8, 26, .88) 100%);
    pointer-events: none;
    z-index: 1;
}
#univga-hometest-portal .uht-identite__cite {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    margin: 0;
    max-width: 28em;
    padding: 16px 8px 4px 0;
}
#univga-hometest-portal .uht-identite__cite p {
    margin: 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(.95rem, 1.35vw, 1.18rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.35;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}
#univga-hometest-portal .uht-identite__cite cite {
    display: block;
    margin-top: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .72rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .82);
    text-shadow: 0 1px 10px rgba(0, 0, 0, .45);
}
#univga-hometest-portal .uht-identite__mark {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
#univga-hometest-portal .uht-identite__caption {
    position: absolute;
    left: 72px;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
}
#univga-hometest-portal .uht-identite__motto {
    margin: 0 0 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 800;
    letter-spacing: .04em;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
#univga-hometest-portal .uht-identite__meta {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
}
#univga-hometest-portal .uht-recon__media .uht-identite__meta {
    color: #fff;
    font-weight: 800;
}
#univga-hometest-portal .uht-identite__panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #f4efe4;
    padding: 36px 48px 36px 44px;
    box-shadow: -24px 0 50px -28px rgba(5, 13, 40, .45);
}
#univga-hometest-portal .uht-identite__panel::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 0;
    width: 5px;
    background: #c9a24a;
}
#univga-hometest-portal .uht-identite__panel::after {
    content: "UNIVGA";
    position: absolute;
    top: 46%;
    left: 52%;
    transform: translate(-50%, -50%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    font-weight: 800;
    color: rgba(11, 30, 77, .05);
    letter-spacing: -.04em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}
#univga-hometest-portal .uht-identite__panel > * {
    position: relative;
    z-index: 1;
}
#univga-hometest-portal .uht-identite__panel h2 {
    max-width: none;
    white-space: normal;
    margin-bottom: 14px;
}
#univga-hometest-portal .uht-identite__panel p {
    max-width: 42em;
}
#univga-hometest-portal .uht-identite__axis {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    border-top: 1px solid rgba(201, 162, 74, .35);
    border-bottom: 1px solid rgba(201, 162, 74, .35);
}
#univga-hometest-portal .uht-identite__axis li {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #c9a24a;
    padding: 10px 18px 10px 0;
    margin-right: 18px;
    border-right: 1px solid rgba(201, 162, 74, .4);
}
#univga-hometest-portal .uht-identite__axis li:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
#univga-hometest-portal .uht-identite__quote {
    margin: 6px 0 16px;
    font-style: italic;
    color: var(--navy);
    font-size: 1.08rem;
}
#univga-hometest-portal .uht-identite__panel .uht-links {
    margin-top: 8px;
}

/* Reconnaissance — 1/2 texte | 1/3 titre | 2/3 image */
#univga-hometest-portal .uht-recon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    width: 100%;
    margin: 0;
    background: #0b1e4d;
    overflow: hidden;
}
#univga-hometest-portal .uht-recon__panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #f4efe4;
    padding: 36px 48px 36px 44px;
    box-shadow: 24px 0 50px -28px rgba(5, 13, 40, .45);
}
#univga-hometest-portal .uht-recon__panel::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    right: 0;
    width: 5px;
    background: #c9a24a;
}
#univga-hometest-portal .uht-recon__panel::after {
    content: "UNIVGA";
    position: absolute;
    top: 46%;
    left: 48%;
    transform: translate(-50%, -50%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    font-weight: 800;
    color: rgba(11, 30, 77, .05);
    letter-spacing: -.04em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}
#univga-hometest-portal .uht-recon__panel > * {
    position: relative;
    z-index: 1;
}
#univga-hometest-portal .uht-recon__panel h2 {
    max-width: none;
    margin-bottom: 14px;
}
#univga-hometest-portal .uht-recon__panel p {
    max-width: 42em;
}
#univga-hometest-portal .uht-recon__east {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: 100%;
}
#univga-hometest-portal .uht-recon__aside {
    display: grid;
    grid-template-columns: 68px 148px;
    min-height: 100%;
    background: #0d3d38;
}
#univga-hometest-portal .uht-recon__rail,
#univga-hometest-portal .uht-recon__comstech {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
}
#univga-hometest-portal .uht-recon__rail {
    background: #c9a24a;
    color: #0b1e4d;
    font-size: .92rem;
    letter-spacing: .05em;
    text-transform: none;
    padding: 20px 0;
}
#univga-hometest-portal .uht-recon__comstech {
    flex-direction: column;
    gap: .55em;
    background: #0d3d38;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.18rem;
    letter-spacing: .04em;
    text-transform: none;
    padding: 20px 12px;
    white-space: normal;
}
#univga-hometest-portal .uht-recon__comstech span {
    display: block;
}
#univga-hometest-portal .uht-recon__comstech span:first-child {
    white-space: normal;
    line-height: 1.28;
    text-align: center;
}
#univga-hometest-portal .uht-recon__comstech span:last-child {
    color: #e8c56b;
    font-size: 1.05rem;
    letter-spacing: .12em;
    white-space: nowrap;
}
#univga-hometest-portal .uht-recon__media {
    margin: 0;
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #05081a;
}
#univga-hometest-portal .uht-recon__media > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.04);
    animation: uht-ken 22s ease-in-out infinite alternate;
}
#univga-hometest-portal .uht-recon__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 30, 77, .28) 0%, transparent 42%),
        linear-gradient(180deg, transparent 48%, rgba(5, 13, 40, .72) 100%);
    pointer-events: none;
    z-index: 1;
}
#univga-hometest-portal .uht-recon__media .uht-identite__caption {
    left: 28px;
    z-index: 2;
}
#univga-hometest-portal .uht-recon__logo {
    display: block;
    width: min(340px, 70%);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 16px rgba(0, 0, 0, .55));
}

/* Blocs photo + texte */
#univga-hometest-portal .uht-split {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px clamp(20px, 4vw, 64px);
}
#univga-hometest-portal .uht-split--reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}
#univga-hometest-portal .uht-split__copy {
    position: relative;
}
#univga-hometest-portal .uht-split__copy::before {
    content: "UNIVGA";
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 800;
    color: rgba(11, 30, 77, .04);
    letter-spacing: -.04em;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}
#univga-hometest-portal .uht-split__copy > * {
    position: relative;
    z-index: 1;
}
#univga-hometest-portal .uht-split__media {
    margin: 0;
    overflow: hidden;
}
#univga-hometest-portal .uht-split__media img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    object-position: center;
}

/* Chiffres — or sur marine, centrés */
#univga-hometest-portal .uht-figures {
    background:
        radial-gradient(ellipse 70% 120% at 50% 50%, rgba(40, 62, 120, .55) 0%, transparent 70%),
        #0b1e4d;
    padding: 42px 24px;
}
#univga-hometest-portal .uht-figures__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
#univga-hometest-portal .uht-figures__inner div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, .14);
}
#univga-hometest-portal .uht-figures__inner div:first-child { border-left: none; padding-left: 18px; }
#univga-hometest-portal .uht-figures strong {
    display: block;
    width: auto;
    font-size: clamp(1.65rem, 2.6vw, 2.15rem);
    font-weight: 800;
    color: #e0a83a;
    margin: 0 0 8px;
    line-height: 1.1;
    letter-spacing: -.02em;
}
#univga-hometest-portal .uht-figures strong::before,
#univga-hometest-portal .uht-figures strong::after {
    content: none !important;
    display: none !important;
}
#univga-hometest-portal .uht-figures span {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.35;
}

/* Sections texte */
#univga-hometest-portal .uht-block {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px clamp(20px, 4vw, 64px);
}
#univga-hometest-portal .uht-block--soft {
    max-width: none;
    background: var(--paper);
    padding: 72px clamp(20px, 4vw, 64px);
}
#univga-hometest-portal .uht-block--soft .uht-head,
#univga-hometest-portal .uht-block--soft .uht-pair {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
#univga-hometest-portal .uht-head {
    max-width: 720px;
    margin-bottom: 40px;
}

/* Liste de formations — lignes, pas de cartes */
#univga-hometest-portal .uht-list {
    border-top: 1px solid var(--line);
}
#univga-hometest-portal .uht-list article {
    display: grid;
    grid-template-columns: 180px 1fr auto auto;
    gap: 16px 28px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}
#univga-hometest-portal .uht-list span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 6px;
}
#univga-hometest-portal .uht-list p { margin: 0; font-size: 1rem; }
#univga-hometest-portal .uht-list a {
    align-self: center;
    white-space: nowrap;
}

/* Étapes — liste typographique */
#univga-hometest-portal .uht-steps {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}
#univga-hometest-portal .uht-steps li {
    margin: 0 0 10px;
    padding: 0 0 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    color: var(--muted);
}
#univga-hometest-portal .uht-steps li:last-child { border-bottom: none; }
#univga-hometest-portal .uht-steps strong { color: var(--navy); font-weight: 700; }

/* Vie universitaire — deux photos */
#univga-hometest-portal .uht-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
#univga-hometest-portal .uht-pair figure {
    margin: 0 0 22px;
    overflow: hidden;
}
#univga-hometest-portal .uht-pair img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
#univga-hometest-portal .uht-pair p { margin-bottom: 16px; }

/* Confiance */
#univga-hometest-portal .uht-trust {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    align-items: center;
}
#univga-hometest-portal .uht-trust__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 8px 0;
}
#univga-hometest-portal .uht-trust__logos img {
    max-width: 160px;
    height: auto;
    opacity: .85;
}

/* Navigation slides */
#univga-hometest-portal .uht-nav {
    display: flex;
    gap: 6px;
}
#univga-hometest-portal .uht-nav button,
#univga-hometest-portal .uht-dots button,
#univga-hometest-portal .uht-faculty__thumbs button {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    box-shadow: none;
    font-family: inherit;
}
#univga-hometest-portal .uht-nav button {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 146, 42, .45);
    background: transparent;
    color: var(--gold);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s, color .2s;
}
#univga-hometest-portal .uht-nav button:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
#univga-hometest-portal .uht-dots {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
}
#univga-hometest-portal .uht-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    background: #c9a24a;
    transform: rotate(45deg);
    opacity: .28;
    cursor: pointer;
    transition: opacity .25s, transform .25s;
}
#univga-hometest-portal .uht-dots button.is-on {
    opacity: 1;
    transform: rotate(45deg) scale(1.25);
}
#univga-hometest-portal .uht-dots--light button {
    background: #e8c56b;
}

/* Offre — barre photo + 3 cartes accrochées */
#univga-hometest-portal .uht-offre {
    background: #05081a;
    padding: 0;
    overflow: visible;
}
#univga-hometest-portal .uht-offre__bar {
    position: relative;
    overflow: hidden;
    padding: 128px clamp(24px, 4vw, 72px) 370px;
    min-height: 460px;
    background: #05081a;
}
#univga-hometest-portal .uht-offre__bar-photo {
    position: absolute;
    inset: -12px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 46%;
    filter: saturate(.84) brightness(.82);
    opacity: .74;
}
#univga-hometest-portal .uht-offre__bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 58% at 50% 48%, rgba(5, 8, 26, .22) 0%, rgba(5, 8, 26, .18) 62%, rgba(5, 8, 26, .36) 100%),
        linear-gradient(180deg, rgba(5, 8, 26, .1) 0%, transparent 32%, rgba(5, 8, 26, .36) 100%),
        linear-gradient(90deg, rgba(5, 8, 26, .26) 0%, transparent 46%);
    pointer-events: none;
}
#univga-hometest-portal .uht-offre__head {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0;
    padding: 0;
}
#univga-hometest-portal .uht-offre__bar h2 {
    color: #fff;
    margin-bottom: 12px;
}
#univga-hometest-portal .uht-offre__bar p {
    color: rgba(255, 255, 255, .78);
    margin-bottom: 0;
}
#univga-hometest-portal .uht-offre__hook {
    position: relative;
    z-index: 4;
    overflow: visible;
}
#univga-hometest-portal .uht-offre .uht-facts {
    margin-top: -328px;
    max-width: none;
}
#univga-hometest-portal .uht-offre .uht-fact {
    grid-template-columns: 56px 1fr;
    min-height: 220px;
}
#univga-hometest-portal .uht-offre .uht-fact .uht-fact__rail {
    font-size: .58rem;
    letter-spacing: .1em;
}
#univga-hometest-portal .uht-offre .uht-fact__body {
    padding: 20px 24px 22px 22px;
}
#univga-hometest-portal .uht-offre .uht-fact__n {
    font-size: 4.6rem;
    top: 10px;
    right: 16px;
}
#univga-hometest-portal .uht-offre .uht-fact__body p {
    font-size: 1.08rem;
    line-height: 1.55;
}

/* EC-Council — bordeaux + logos certificats */
#univga-hometest-portal .uht-cyber {
    position: relative;
    z-index: 1;
    background: #4a1018;
    overflow: hidden;
    margin-top: -56px;
    padding: 120px 0 0;
}
#univga-hometest-portal .uht-cyber__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 220, 180, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 220, 180, .06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 90% at 28% 45%, #000 18%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 80% 90% at 28% 45%, #000 18%, transparent 78%);
    animation: uht-grid 28s linear infinite;
    pointer-events: none;
    z-index: 1;
}
@keyframes uht-grid {
    from { background-position: 0 0; }
    to { background-position: 72px 72px; }
}
#univga-hometest-portal .uht-cyber__mark {
    display: none;
}
#univga-hometest-portal .uht-cyber__inner {
    position: relative;
    z-index: 2;
    max-width: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0;
    align-items: start;
    min-height: 0;
}
#univga-hometest-portal .uht-cyber__copy {
    padding: 8px clamp(36px, 5.5vw, 88px) 88px clamp(28px, 4vw, 72px);
}
#univga-hometest-portal .uht-cyber h2 {
    color: #fff;
    font-size: clamp(1.85rem, 3.6vw, 2.7rem);
    max-width: 18em;
}
#univga-hometest-portal .uht-cyber p,
#univga-hometest-portal .uht-cyber__copy p {
    color: rgba(255, 255, 255, .78);
    max-width: 40em;
}
#univga-hometest-portal .uht-cyber .uht-links a {
    color: #e8c56b;
    border-bottom-color: rgba(232, 197, 107, .4);
}
#univga-hometest-portal .uht-cyber .uht-links a:hover {
    color: #fff;
    border-bottom-color: #fff;
}
#univga-hometest-portal .uht-cyber__badge {
    display: inline-block;
    margin: 0 0 16px;
    padding: 6px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #c9a24a;
    border-top: 1px solid rgba(201, 162, 74, .4);
    border-bottom: 1px solid rgba(201, 162, 74, .4);
}
#univga-hometest-portal .uht-cyber__meta {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(232, 197, 107, .85) !important;
}
#univga-hometest-portal .uht-cyber__logos {
    padding: 8px clamp(16px, 2.5vw, 40px) 88px 8px;
}
#univga-hometest-portal .uht-cyber__logos .uht-cyber__badge {
    display: block;
    width: fit-content;
    margin: 0 auto 22px;
    text-align: center;
}
#univga-hometest-portal .uht-cyber__logos .uht-links {
    justify-content: flex-end;
    margin-top: 36px;
    padding-right: clamp(8px, 1.5vw, 20px);
}
#univga-hometest-portal .uht-cyber__seals {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 12px;
    justify-items: center;
}
#univga-hometest-portal .uht-cyber__seals a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    padding: 10px 6px 8px;
    text-decoration: none;
    border-radius: 50%;
    border: 2px solid rgba(232, 197, 107, .55);
    box-shadow: inset 0 0 0 4px rgba(74, 16, 24, .9), inset 0 0 0 6px rgba(232, 197, 107, .28);
    background: radial-gradient(circle at 38% 32%, #6a1c28 0%, #2a080c 72%);
    color: #fff;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
#univga-hometest-portal .uht-cyber__seals a:hover {
    border-color: #e8c56b;
    transform: translateY(-4px);
    color: #fff;
    box-shadow: inset 0 0 0 4px rgba(74, 16, 24, .9), inset 0 0 0 6px rgba(232, 197, 107, .5);
}
#univga-hometest-portal .uht-cyber__seals span {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: #e8c56b;
    line-height: 1.1;
}
#univga-hometest-portal .uht-cyber__seals em {
    margin-top: 5px;
    font-style: normal;
    font-size: .52rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .68);
    text-align: center;
    max-width: 7.5em;
}

/* Enseignants + manuels PDF — pleine largeur, deux blocs */
#univga-hometest-portal .uht-faculty {
    background: var(--ivory);
    padding: 0;
}
#univga-hometest-portal .uht-faculty__split {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}
#univga-hometest-portal .uht-faculty__split--two {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
#univga-hometest-portal .uht-faculty__col {
    position: relative;
    padding: 64px clamp(28px, 4vw, 72px) 56px;
    overflow: hidden;
}
#univga-hometest-portal .uht-faculty__col::before {
    content: "UNIVGA";
    position: absolute;
    right: 6%;
    top: 10%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    letter-spacing: -.05em;
    color: rgba(11, 30, 77, .045);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}
#univga-hometest-portal .uht-faculty__head {
    max-width: none;
    margin-bottom: 28px;
}
#univga-hometest-portal .uht-manuals__head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    column-gap: 24px;
    max-width: none;
    margin-bottom: 28px;
}
#univga-hometest-portal .uht-manuals__head .uht-label {
    margin: 0 0 1.2em;
    grid-column: 1;
}
#univga-hometest-portal .uht-faculty__head h2,
#univga-hometest-portal .uht-manuals__head h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.05rem);
}
#univga-hometest-portal .uht-manuals__head h2 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 8px;
}
#univga-hometest-portal .uht-manuals__head > p:not(.uht-label):not(.uht-links) {
    grid-column: 1;
    grid-row: 3;
    margin: 0;
}
#univga-hometest-portal .uht-manuals__head .uht-links {
    margin: 0;
    grid-column: 2;
    grid-row: 3;
}
#univga-hometest-portal .uht-faculty__portraits {
    display: grid;
}
#univga-hometest-portal .uht-faculty__card {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease, visibility .6s;
}
#univga-hometest-portal .uht-faculty__card.is-on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
#univga-hometest-portal .uht-faculty__card figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #0b1e4d;
    box-shadow: 10px 10px 0 0 rgba(201, 162, 74, .35);
}
#univga-hometest-portal .uht-faculty__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
#univga-hometest-portal .uht-faculty__place {
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
}
#univga-hometest-portal .uht-faculty__place img {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(11, 30, 77, .14);
}
#univga-hometest-portal .uht-faculty__bio h3 {
    font-size: clamp(1.28rem, 1.9vw, 1.72rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    overflow-wrap: break-word;
    text-wrap: balance;
}
#univga-hometest-portal .uht-faculty__bio p {
    max-width: 36em;
}
#univga-hometest-portal .uht-faculty__thumbs {
    display: flex;
    gap: 10px;
    margin: 28px 0 8px;
    flex-wrap: wrap;
}
#univga-hometest-portal .uht-faculty__thumbs button {
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid transparent;
    overflow: hidden;
    cursor: pointer;
    opacity: .42;
    background: #0b1e4d;
    transition: opacity .25s, border-color .25s, transform .25s;
}
#univga-hometest-portal .uht-faculty__thumbs button.is-on,
#univga-hometest-portal .uht-faculty__thumbs button:hover {
    opacity: 1;
    border-color: #c9a24a;
    transform: translateY(-2px);
}
#univga-hometest-portal .uht-faculty__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Manuels PDF — carte navy + or, style fiche cours */
#univga-hometest-portal .uht-manuals {
    padding: 64px clamp(24px, 3.5vw, 48px) 56px;
    background: #ece6d8;
    border-left: 1px solid rgba(11, 30, 77, .08);
}
#univga-hometest-portal .uht-manuals__deck {
    display: grid;
    padding-top: 36px;
    overflow: visible;
}
#univga-hometest-portal .uht-manual {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 32px 28px 28px 22px;
    background: linear-gradient(135deg, #0b1a3a 0%, #132a5c 55%, #0b1a3a 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 52px -18px rgba(11, 26, 58, .55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .55s ease, transform .55s ease, visibility .55s;
}
#univga-hometest-portal .uht-manual::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 88% 12%, rgba(212, 175, 106, .18), transparent 55%);
    pointer-events: none;
}
#univga-hometest-portal .uht-manual.is-on {
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
#univga-hometest-portal .uht-manual__cover {
    position: relative;
    z-index: 1;
    align-self: start;
    margin-top: -52px;
    margin-left: -6px;
}
#univga-hometest-portal .uht-manual__cover img {
    width: 200px;
    max-width: 200px;
    height: auto;
    display: block;
    border-radius: 6px;
    transform: rotate(-2.5deg);
    box-shadow: 0 28px 48px -12px rgba(0, 0, 0, .62);
    transition: transform .3s ease;
}
#univga-hometest-portal .uht-manual.is-on:hover .uht-manual__cover img {
    transform: rotate(0deg) scale(1.03);
}
#univga-hometest-portal .uht-manual__body {
    position: relative;
    z-index: 1;
    min-width: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#univga-hometest-portal .uht-manual__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #e8c988;
    line-height: 1.25;
}
#univga-hometest-portal .uht-manual__crown {
    width: 14px;
    height: 11px;
    flex-shrink: 0;
    background:
        linear-gradient(#e8c988, #e8c988) 0 100% / 100% 3px no-repeat,
        radial-gradient(circle at 2px 7px, #e8c988 2px, transparent 2.2px),
        radial-gradient(circle at 7px 2px, #e8c988 2.2px, transparent 2.4px),
        radial-gradient(circle at 12px 7px, #e8c988 2px, transparent 2.2px);
}
#univga-hometest-portal .uht-manual h3 {
    margin: 0 0 8px;
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.3;
    color: #fff;
}
#univga-hometest-portal .uht-manual__desc {
    margin: 0 0 16px;
    font-size: .88rem;
    line-height: 1.6;
    color: #b9c4dd;
}
#univga-hometest-portal .uht-manual__features {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
}
#univga-hometest-portal .uht-manual__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .78rem;
    line-height: 1.45;
    color: #dde3f0;
}
#univga-hometest-portal .uht-manual__features li::before {
    content: "";
    flex-shrink: 0;
    width: 6px;
    height: 10px;
    margin-top: 2px;
    border-right: 2px solid #e8c988;
    border-bottom: 2px solid #e8c988;
    transform: rotate(45deg);
}
#univga-hometest-portal .uht-manual__footer {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
#univga-hometest-portal .uht-manual__price {
    display: flex;
    flex-direction: column;
}
#univga-hometest-portal .uht-manual__price strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
#univga-hometest-portal .uht-manual__price span {
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8ea0c4;
}
#univga-hometest-portal .uht-manual__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e8c988, #c9a35a);
    color: #1a1200 !important;
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
    border: 0 !important;
    box-shadow: 0 10px 22px -8px rgba(201, 163, 90, .55);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
#univga-hometest-portal .uht-manual__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(201, 163, 90, .7);
    color: #1a1200 !important;
}
#univga-hometest-portal .uht-manual__cart {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border: 1.6px solid currentColor;
    border-radius: 2px 2px 3px 3px;
    position: relative;
    margin-top: 1px;
}
#univga-hometest-portal .uht-manual__cart::before {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    top: -5px;
    height: 5px;
    border: 1.6px solid currentColor;
    border-bottom: 0;
    border-radius: 3px 3px 0 0;
}
#univga-hometest-portal .uht-manuals__dots {
    margin-top: 22px;
}
#univga-hometest-portal .uht-manuals .uht-links a {
    color: var(--navy);
}

/* Veille tech — cartes photo, 3 par slide, fond blanc */
#univga-hometest-portal .uht-veille {
    background: #fff;
    padding: 40px 0 36px;
    overflow: hidden;
}
#univga-hometest-portal .uht-veille__inner {
    padding: 0 clamp(24px, 4vw, 72px);
}
#univga-hometest-portal .uht-veille__head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    column-gap: 24px;
    max-width: none;
    margin-bottom: 1.6em;
}
#univga-hometest-portal .uht-veille__head .uht-label {
    margin: 0 0 1.2em;
    grid-column: 1;
}
#univga-hometest-portal .uht-veille__head h2 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 8px;
    max-width: none;
    font-size: clamp(1.4rem, 2.35vw, 2.15rem);
}
#univga-hometest-portal .uht-veille__head > p:not(.uht-label):not(.uht-links) {
    grid-column: 1;
    grid-row: 3;
    max-width: 46em;
    margin: 0;
}
#univga-hometest-portal .uht-veille__head .uht-links {
    margin: 0;
    grid-column: 2;
    grid-row: 3;
}
#univga-hometest-portal .uht-veille__track {
    display: grid;
}
#univga-hometest-portal .uht-veille__slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease, visibility .6s;
}
#univga-hometest-portal .uht-veille__slide.is-on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
#univga-hometest-portal .uht-vcard {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--ivory);
    text-decoration: none;
    color: inherit;
    border: 0;
    overflow: hidden;
    box-shadow: 12px 12px 0 0 rgba(201, 162, 74, .32);
    transition: transform .3s ease, box-shadow .3s ease;
}
#univga-hometest-portal .uht-vcard:hover {
    transform: translateY(-6px);
    box-shadow: 16px 16px 0 0 rgba(201, 162, 74, .42);
    color: inherit;
}
#univga-hometest-portal .uht-vcard figure {
    margin: 0;
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #0b1e4d;
}
#univga-hometest-portal .uht-vcard figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(11, 30, 77, .35) 100%);
    pointer-events: none;
}
#univga-hometest-portal .uht-vcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
#univga-hometest-portal .uht-vcard:hover img {
    transform: scale(1.06);
}
#univga-hometest-portal .uht-vcard__body {
    position: relative;
    padding: 22px 24px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
#univga-hometest-portal .uht-vcard__body::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 4px;
    background: #c9a24a;
}
#univga-hometest-portal .uht-vcard time {
    display: block;
    margin: 0 0 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}
#univga-hometest-portal .uht-vcard h3 {
    margin: 0 0 10px;
    font-size: clamp(1.12rem, 1.8vw, 1.38rem);
    line-height: 1.3;
    color: var(--navy);
}
#univga-hometest-portal .uht-vcard p {
    margin: 0 0 16px;
    font-size: .92rem;
    line-height: 1.55;
    color: var(--muted);
    flex: 1;
}
#univga-hometest-portal .uht-vcard__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    align-self: flex-start;
}
#univga-hometest-portal .uht-vcard__more::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: -1px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
}
#univga-hometest-portal .uht-vcard:hover .uht-vcard__more {
    color: var(--gold);
}
#univga-hometest-portal .uht-veille .uht-dots {
    margin-top: 18px;
}

/* Témoignages — cartes ivoire sur fond vert sombre */
#univga-hometest-portal .uht-voices {
    background: #0d3d38;
    padding: 40px 0 36px;
    position: relative;
    overflow: hidden;
}
#univga-hometest-portal .uht-voices::before {
    content: "UNIVGA";
    position: absolute;
    left: 4%;
    top: 8%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 800;
    letter-spacing: -.05em;
    color: rgba(255, 255, 255, .035);
    line-height: 1;
    pointer-events: none;
}
#univga-hometest-portal .uht-voices__inner {
    position: relative;
    z-index: 1;
    max-width: none;
    padding: 0 clamp(24px, 4vw, 72px);
}
#univga-hometest-portal .uht-voices__head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    column-gap: 24px;
    max-width: none;
    margin-bottom: 1.6em;
}
#univga-hometest-portal .uht-voices__head .uht-label {
    margin: 0 0 1.2em;
    grid-column: 1;
    color: #c9a24a;
}
#univga-hometest-portal .uht-voices__head h2 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 8px;
    color: #fff;
    max-width: none;
    font-size: clamp(1.4rem, 2.35vw, 2.15rem);
}
#univga-hometest-portal .uht-voices__head > p:not(.uht-label):not(.uht-links) {
    grid-column: 1;
    grid-row: 3;
    color: rgba(255, 255, 255, .72);
    max-width: 38em;
    margin: 0;
}
#univga-hometest-portal .uht-voices__head .uht-links {
    margin: 0;
    grid-column: 2;
    grid-row: 3;
}
#univga-hometest-portal .uht-voices__head .uht-links a {
    color: #e8c56b;
    border-bottom-color: rgba(232, 197, 107, .5);
}
#univga-hometest-portal .uht-voices__head .uht-links a:hover {
    color: #fff;
    border-bottom-color: #fff;
}
#univga-hometest-portal .uht-voices__track {
    display: grid;
}
#univga-hometest-portal .uht-voices__slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease, visibility .6s;
}
#univga-hometest-portal .uht-voices__slide.is-on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
#univga-hometest-portal .uht-voice {
    position: relative;
    background: var(--ivory);
    padding: 36px 28px 28px 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    box-shadow: 12px 12px 0 0 rgba(10, 36, 32, .45);
}
#univga-hometest-portal .uht-voice::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 0;
    width: 5px;
    background: #c9a24a;
}
#univga-hometest-portal .uht-voice__mark {
    position: absolute;
    top: 10px;
    right: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.2rem;
    line-height: 1;
    color: rgba(201, 162, 74, .28);
    pointer-events: none;
}
#univga-hometest-portal .uht-voice blockquote {
    margin: 0 0 22px;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--ink);
    flex: 1;
}
#univga-hometest-portal .uht-voice footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
#univga-hometest-portal .uht-voice__avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    overflow: hidden;
    background: #0b1e4d;
    color: #e8c56b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .04em;
}
#univga-hometest-portal .uht-voice__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#univga-hometest-portal .uht-voice footer strong {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .92rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
}
#univga-hometest-portal .uht-voice__stars {
    display: block;
    margin-top: 2px;
    font-size: .72rem;
    letter-spacing: .08em;
    color: #c9a24a;
    line-height: 1;
}
#univga-hometest-portal .uht-voice footer em {
    display: block;
    margin-top: 4px;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .68rem;
    letter-spacing: .04em;
    color: var(--muted);
    max-width: 22em;
}
#univga-hometest-portal .uht-voices .uht-dots {
    margin-top: 18px;
}

#univga-hometest-portal .uht-nl {
    background: #f4efe4;
    padding: 0;
    border-top: 2px solid #c9a24a;
    overflow: hidden;
}
#univga-hometest-portal .uht-nl__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 0;
    min-height: 108px;
}
#univga-hometest-portal .uht-nl__logos {
    min-width: 0;
    overflow: hidden;
    padding: 16px 48px 16px clamp(20px, 3vw, 56px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
}
#univga-hometest-portal .uht-nl__track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: uht-nl-marquee 32s linear infinite;
}
#univga-hometest-portal .uht-nl__logos:hover .uht-nl__track {
    animation-play-state: paused;
}
#univga-hometest-portal .uht-nl__track img {
    display: block;
    height: 64px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0;
}
@keyframes uht-nl-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
#univga-hometest-portal .uht-nl__slash {
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 10px;
    width: 0;
    z-index: 2;
    pointer-events: none;
}
#univga-hometest-portal .uht-nl__slash::before,
#univga-hometest-portal .uht-nl__slash::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: skewX(-22deg);
}
#univga-hometest-portal .uht-nl__slash::before {
    left: -5px;
    background: #c9a24a;
}
#univga-hometest-portal .uht-nl__slash::after {
    left: 3px;
    background: #0b1e4d;
    opacity: .38;
}
#univga-hometest-portal .uht-nl__formwrap {
    min-width: 0;
    padding: 16px clamp(20px, 3vw, 56px) 16px 52px;
}
#univga-hometest-portal .uht-nl__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
#univga-hometest-portal .uht-nl__form {
    position: relative;
    display: flex;
    align-items: stretch;
    background: #0b1e4d;
    padding: 5px;
    box-shadow: 6px 6px 0 0 rgba(201, 162, 74, .32);
}
#univga-hometest-portal .uht-nl__form input[type="email"] {
    flex: 1;
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 1.05rem;
    padding: 13px 18px 13px 20px;
    outline: none;
    box-shadow: none;
    height: 50px;
    line-height: 1.3;
    -webkit-appearance: none;
    appearance: none;
}
#univga-hometest-portal .uht-nl__form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, .48);
    font-style: italic;
}
#univga-hometest-portal .uht-nl__form input[type="email"]:focus {
    outline: none;
}
#univga-hometest-portal .uht-nl__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}
#univga-hometest-portal .uht-nl__form button {
    flex-shrink: 0;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    background: #c9a24a;
    color: #0b1e4d;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 0 26px;
    min-width: 148px;
    -webkit-appearance: none;
    appearance: none;
    transition: background .2s, color .2s;
}
#univga-hometest-portal .uht-nl__form button:hover,
#univga-hometest-portal .uht-nl__form button:focus {
    background: #e8c56b;
    color: #05081a;
}
#univga-hometest-portal .uht-nl__form button:disabled {
    opacity: .7;
    cursor: wait;
}
#univga-hometest-portal .uht-nl__msg {
    margin: 10px 0 0;
    font-size: .88rem;
    line-height: 1.4;
    color: #0b1e4d;
}
#univga-hometest-portal .uht-nl.is-ok .uht-nl__msg {
    color: #0d3d38;
}
#univga-hometest-portal .uht-nl.is-err .uht-nl__msg {
    color: #7a1f28;
}

@media (max-width: 960px) {
    body:has(#univga-hometest-portal) .uvg-hero-root .uht-flagrail {
        display: none;
    }
    #univga-hometest-portal .uht-facts__mark {
        display: none;
    }
    #univga-hometest-portal .uht-facts {
        grid-template-columns: 1fr;
        margin-top: -48px;
    }
    #univga-hometest-portal .uht-fact {
        grid-template-columns: 1fr;
        grid-template-rows: 46px 1fr;
        min-height: 0;
    }
    #univga-hometest-portal .uht-fact__rail {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: .2em;
    }
    #univga-hometest-portal .uht-identite-wrap {
        margin-top: 28px;
    }
    #univga-hometest-portal .uht-suspenders,
    #univga-hometest-portal .uht-identite-wrap::before {
        display: none;
    }
    #univga-hometest-portal .uht-identite {
        grid-template-columns: 1fr;
        min-height: 0;
        margin-top: 0;
    }
    #univga-hometest-portal .uht-identite__media {
        min-height: 280px;
    }
    #univga-hometest-portal .uht-identite__panel {
        padding: 40px 28px 40px 32px;
    }
    #univga-hometest-portal .uht-recon {
        grid-template-columns: 1fr;
    }
    #univga-hometest-portal .uht-recon__panel {
        padding: 40px 28px 40px 32px;
    }
    #univga-hometest-portal .uht-recon__panel::before {
        display: none;
    }
    #univga-hometest-portal .uht-recon__east {
        grid-template-columns: auto 1fr;
    }
    #univga-hometest-portal .uht-recon__aside {
        grid-template-columns: 58px 128px;
        min-height: 420px;
    }
    #univga-hometest-portal .uht-recon__rail,
    #univga-hometest-portal .uht-recon__comstech {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        letter-spacing: .04em;
        padding: 16px 0;
        font-size: .78rem;
    }
    #univga-hometest-portal .uht-recon__comstech {
        padding: 16px 10px;
        font-size: 1.02rem;
        gap: .4em;
    }
    #univga-hometest-portal .uht-recon__media {
        min-height: 280px;
    }
    #univga-hometest-portal .uht-faculty__split--two {
        grid-template-columns: 1fr;
    }
    #univga-hometest-portal .uht-faculty__col,
    #univga-hometest-portal .uht-manuals {
        padding: 48px 24px 40px;
    }
    #univga-hometest-portal .uht-manuals {
        border-left: none;
        border-top: 1px solid rgba(11, 30, 77, .1);
    }
    #univga-hometest-portal .uht-manual {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 20px;
        padding: 28px 22px 24px;
        overflow: hidden;
        border-radius: 20px;
    }
    #univga-hometest-portal .uht-manuals__deck {
        padding-top: 0;
    }
    #univga-hometest-portal .uht-manual__cover {
        margin-top: 0;
        margin-left: 0;
    }
    #univga-hometest-portal .uht-manual__cover img {
        width: 150px;
        max-width: 150px;
    }
    #univga-hometest-portal .uht-voices__slide {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    #univga-hometest-portal .uht-voice {
        min-height: 0;
        box-shadow: 8px 8px 0 0 rgba(10, 36, 32, .45);
    }
    #univga-hometest-portal .uht-split,
    #univga-hometest-portal .uht-split--reverse,
    #univga-hometest-portal .uht-trust,
    #univga-hometest-portal .uht-pair,
    #univga-hometest-portal .uht-cyber__inner,
    #univga-hometest-portal .uht-faculty__card {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    #univga-hometest-portal .uht-offre__bar {
        padding: 80px 24px 280px;
        min-height: 0;
    }
    #univga-hometest-portal .uht-offre .uht-facts {
        margin-top: -248px;
    }
    #univga-hometest-portal .uht-offre .uht-fact {
        min-height: 0;
        grid-template-columns: 1fr;
    }
    #univga-hometest-portal .uht-faculty__portraits {
        min-height: 0;
    }
    #univga-hometest-portal .uht-faculty__card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    #univga-hometest-portal .uht-faculty__card figure {
        height: 280px;
        box-shadow: 8px 8px 0 0 rgba(201, 162, 74, .35);
    }
    #univga-hometest-portal .uht-veille__slide {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    #univga-hometest-portal .uht-veille__head h2,
    #univga-hometest-portal .uht-voices__head h2,
    #univga-hometest-portal .uht-veille__head > p:not(.uht-label):not(.uht-links) {
        white-space: normal;
        padding-right: 0;
    }
    #univga-hometest-portal .uht-vcard {
        box-shadow: 8px 8px 0 0 rgba(201, 162, 74, .32);
    }
    #univga-hometest-portal .uht-vcard figure {
        height: 200px;
    }
    #univga-hometest-portal .uht-cyber {
        margin-top: -36px;
        padding: 80px 0 0;
    }
    #univga-hometest-portal .uht-cyber__copy {
        padding: 0 24px 40px;
    }
    #univga-hometest-portal .uht-cyber__logos {
        padding: 8px 24px 48px;
    }
    #univga-hometest-portal .uht-cyber__seals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    #univga-hometest-portal .uht-split__media img { min-height: 260px; }
    #univga-hometest-portal .uht-list article {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    #univga-hometest-portal .uht-figures__inner {
        grid-template-columns: repeat(3, 1fr);
    }
    #univga-hometest-portal .uht-figures__inner div {
        border-left: none;
        padding: 14px 8px;
    }
    #univga-hometest-portal .uht-nl__inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    #univga-hometest-portal .uht-nl__slash {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: auto;
        height: 0;
        margin: 0 28px;
    }
    #univga-hometest-portal .uht-nl__slash::before,
    #univga-hometest-portal .uht-nl__slash::after {
        top: auto;
        bottom: auto;
        left: 0;
        right: 0;
        width: auto;
        height: 2px;
        transform: skewX(-22deg);
    }
    #univga-hometest-portal .uht-nl__slash::before {
        top: -3px;
        left: 0;
    }
    #univga-hometest-portal .uht-nl__slash::after {
        top: 4px;
        left: 0;
    }
    #univga-hometest-portal .uht-nl__logos {
        padding: 16px 20px 12px;
    }
    #univga-hometest-portal .uht-nl__formwrap {
        padding: 14px 20px 18px;
    }
}
@media (prefers-reduced-motion: reduce) {
    #univga-hometest-portal .uht-cyber__grid {
        animation: none;
    }
    #univga-hometest-portal .uht-nl__track {
        animation: none;
    }
}
@media (max-width: 640px) {
    #univga-hometest-portal .uht-figures__inner { grid-template-columns: 1fr 1fr; }
    #univga-hometest-portal .uht-split,
    #univga-hometest-portal .uht-block,
    #univga-hometest-portal .uht-block--soft,
    #univga-hometest-portal .uht-close,
    #univga-hometest-portal .uht-faculty,
    #univga-hometest-portal .uht-cyber {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    #univga-hometest-portal .uht-voices,
    #univga-hometest-portal .uht-veille {
        padding-top: 32px;
        padding-bottom: 28px;
    }
    #univga-hometest-portal .uht-manual {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px 18px 20px;
    }
    #univga-hometest-portal .uht-manual__cover {
        justify-self: center;
        margin-top: 0;
    }
    #univga-hometest-portal .uht-manual__features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    #univga-hometest-portal .uht-manual__footer {
        justify-content: center;
    }
    #univga-hometest-portal .uht-manual__btn {
        width: 100%;
        justify-content: center;
    }
    #univga-hometest-portal .uht-nl {
        padding: 0;
    }
    #univga-hometest-portal .uht-nl__form {
        flex-direction: column;
        box-shadow: 6px 6px 0 0 rgba(201, 162, 74, .32);
    }
    #univga-hometest-portal .uht-nl__form input[type="email"] {
        height: 48px;
    }
    #univga-hometest-portal .uht-nl__form button {
        height: 46px;
        width: 100%;
        min-width: 0;
    }
}
