/* ============================================================
   MPT – Vanilla PHP replica of Sydney WP theme
   Fonts: Roboto + Roboto Slab (Google Fonts)
   Primary red:  #d83a3a
   Navy header:  #263246
   Footer:       #1d2738
   Blue panel:   #6EC1E4
   Text:         #868990
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

:root {
    --red:    #d83a3a;
    --red2:   #b73d3d;
    --navy:   #263246;
    --navy2:  #233452;
    --navy3:  #00102E;
    --footer: #1d2738;
    --text:   #868990;
    --muted:  #6d7685;
    --blue:   #6EC1E4;
    --blue2:  #4D97B6;
    --orange: #ff6600;
    --light:  #F4F5F7;
    --border: #dbdbdb;
    --white:  #ffffff;
    --header-h: 128px; /* fallback; overwritten by JS */
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.68;
    color: var(--text);
    margin: 0;
    background: #fff;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: #263246;
    line-height: 1.2;
    margin-top: 0;
}
h1 { font-size: 24px; }
h2 { font-size: 16px; }
h3 { font-size: 16px; }
h4 { font-size: 14px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

p { margin: 0 0 1em; }
ul { padding-left: 1.5em; }

img { max-width: 100%; height: auto; }

/* ---- Bootstrap-like grid (minimal) ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { padding: 0 15px; flex: 1; }

.col-md-4  { width: 33.3333%; padding: 0 15px; }
.col-md-6  { width: 50%;      padding: 0 15px; }
.col-md-8  { width: 66.6666%; padding: 0 15px; }
.col-md-12 { width: 100%;     padding: 0 15px; }

.col-70 { width: 70%; padding: 0 15px; }
.col-30 { width: 30%; padding: 0 15px; }

/* ---- Preloader ---- */
.preloader {
    position: fixed; inset: 0;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity .4s;
}
.preloader.done { opacity: 0; pointer-events: none; }
.spinner { position: relative; width: 40px; height: 40px; }
.pre-bounce1, .pre-bounce2 {
    width: 100%; height: 100%;
    border-radius: 50%;
    background-color: var(--red);
    opacity: .6;
    position: absolute; top: 0; left: 0;
    animation: sk-bounce 2s infinite ease-in-out;
}
.pre-bounce2 { animation-delay: -1s; }
@keyframes sk-bounce {
    0%, 100% { transform: scale(0); }
    50% { transform: scale(1); }
}

/* ---- Header ---- */
#masthead {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background-color: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-wrap { padding: 9px 0; }
.header-wrap .row { align-items: center; }

.site-logo { max-width: 110px; height: auto; display: block; }

/* ---- Navigation ---- */
#mainnav { text-align: right; }
#mainnav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: inline-flex; flex-wrap: wrap;
    align-items: center;
}
#mainnav ul li {
    padding: 0 2px;
    margin: 0 12px;
    position: relative;
}
#mainnav ul li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color .2s;
}
#mainnav ul li a:hover,
#mainnav ul li.active > a {
    color: #fff;
}
#mainnav ul li.active {
    border-bottom: 2px solid var(--red);
}

/* Hamburger */
.btn-menu {
    display: none;
    background: none; border: none;
    cursor: pointer; padding: 4px;
    float: right;
}
.btn-menu svg { fill: #fff; width: 22px; height: 22px; }

/* ---- Hero ---- */
.sydney-hero-area {
    position: relative;
    padding-top: var(--header-h);
}

.header-slider {
    position: relative;
    min-height: 365px;
    background: var(--navy);
    overflow: hidden;
}
.slide-item {
    width: 100%; min-height: 365px;
    display: flex; align-items: center;
    position: relative;
}

/* Ken Burns: background layer animat */
.slide-item::before {
    content: '';
    position: absolute; inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    animation: ken-burns 16s ease-in-out infinite alternate;
    will-change: transform;
    z-index: 0;
}

/* Dark overlay */
.slide-item::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1;
}

@keyframes ken-burns {
    0%   { transform: scale(1)    translateX(0)     translateY(0); }
    100% { transform: scale(1.08) translateX(-1.5%) translateY(-1%); }
}

.slide-inner {
    position: relative; z-index: 2;
    width: 100%; max-width: 1140px;
    margin: 0 auto;
    padding: 60px 15px 80px;
    display: flex; flex-direction: column;
    align-items: flex-start;
}
.text-slider { margin-bottom: 30px; }
.text-slider .maintitle {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    max-width: 680px;
}
.text-slider .subtitle {
    color: #fff;
    font-size: 16px;
    max-width: 620px;
    margin: 0;
    opacity: .92;
}
.mobile-slide { display: none; }

/* Hero button */
.roll-button.button-slider {
    display: inline-flex;
    align-items: center;
    background: var(--red);
    color: #fff;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    border: 2px solid var(--red);
    text-decoration: none;
    transition: background .2s, border-color .2s;
    border-radius: 0;
    margin-top: 10px;
}
.roll-button.button-slider:hover {
    background: var(--red2);
    border-color: var(--red2);
    color: #fff;
    text-decoration: none;
}

/* ---- Page Wrap ---- */
#content.page-wrap {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* ---- Elementor-style sections ---- */
.e-section {
    width: 100%;
    padding: 60px 0;
}
.e-section.dark {
    background: var(--navy);
    color: #fff;
}
.e-section.dark h1, .e-section.dark h2,
.e-section.dark h3, .e-section.dark h4,
.e-section.dark h5, .e-section.dark h6 {
    color: #fff;
}
.e-section.dark p, .e-section.dark li { color: #fff; }
.e-section.dark a { color: var(--blue); }

.e-section.dark .roll-button {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* Two-column inner layout for inner pages */
.inner-layout {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 0;
}
.inner-layout .main-col { width: 63%; padding-right: 30px; }
.inner-layout .side-col { width: 37%; }
.content-block + .content-block {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #dde0e6;
}

/* ---- Buttons ---- */
.roll-button, .btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--red);
    color: #fff;
    padding: 12px 35px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    border: 2px solid var(--red);
    text-decoration: none;
    transition: background .2s;
    border-radius: 0;
    cursor: pointer;
}
.roll-button:hover, .btn-primary:hover {
    background: var(--red2);
    border-color: var(--red2);
    color: #fff;
    text-decoration: none;
}
.btn-blue {
    display: block;
    width: 100%;
    background: var(--blue2);
    color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    text-align: center;
    text-decoration: none;
    transition: background .2s;
    border-radius: 0;
    margin-top: 12px;
    cursor: pointer;
}
.btn-blue:hover { background: #3a7a93; color: #fff; text-decoration: none; }

.btn-icon { margin-right: 8px; }

/* ---- Blue info panel (admitere, contact) ---- */
.info-panel {
    background: var(--blue);
    color: #fff;
    padding: 20px;
}
.info-panel h3, .info-panel strong { color: #fff; }
.info-panel p, .info-panel li { color: #fff; line-height: 1.4; }
.info-panel table { width: 100%; border-collapse: collapse; }
.info-panel table td { padding: 5px 4px; color: #fff; font-size: 13px; line-height: 1.4; }
.info-panel table td:first-child { font-weight: 600; white-space: nowrap; padding-right: 10px; }
.info-panel .panel-inner { padding: 13px 6px 0 4px; }

/* ---- Section "Ce vei invata" dark bg ---- */
.section-dark-bg {
    background: var(--blue);
    padding: 80px 0;
}
.section-dark-bg * { color: #fff; }
.section-dark-bg .roll-button { color: #fff; }

/* ---- Icon boxes (cariere) ---- */
.icon-box {
    display: flex;
    align-items: flex-start;
    background: #fff;
    box-shadow: 0 0 13px 0 rgba(132,132,132,.5);
    padding: 10px 8px;
    margin: 12px;
}
.icon-box .icon-wrap {
    flex-shrink: 0;
    font-size: 19px;
    color: var(--red);
    margin-right: 10px;
    padding-top: 2px;
}
.icon-box .icon-text { font-size: 14px; line-height: 1.5; color: var(--text); }

/* ---- Statistics (cariere right col) ---- */
.stat-block {
    background: #fff;
    box-shadow: 0 0 62px -34px rgba(9,7,7,.5);
    margin: 16px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.stat-number {
    color: #6C0000;
    font-size: 25px;
    font-weight: 700;
    width: 25%;
    flex-shrink: 0;
    line-height: 1.2;
}
.stat-number a { color: #6C0000; }
.stat-desc {
    font-size: 0.9em;
    line-height: 1.3em;
    background: #fff;
    width: 75%;
    padding: 0 0 0 8px;
    color: var(--text);
}

/* ---- Toggle accordion (discipline) ---- */
.toggle-semester {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 20px;
}
.semester-label {
    width: 10%;
    padding: 10px 0 0;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.semester-label-inner {
    background: var(--blue);
    display: inline-block;
    padding: 4px 10px;
    color: #fff;
    font-weight: 600;
}
.toggle-list { width: 90%; }

.toggle-item { border-bottom: 1px solid var(--border); }
.toggle-title {
    display: flex; align-items: center;
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--navy2);
    user-select: none;
}
.toggle-title:hover { color: var(--red); }
.toggle-icon {
    margin-right: 10px;
    font-size: 12px;
    color: var(--red);
    width: 12px;
    display: inline-block;
    transition: transform .2s;
}
.toggle-item.open .toggle-icon { transform: rotate(90deg); }
.toggle-title a { color: inherit; text-decoration: none; }
.toggle-title a:hover { color: var(--red); }
.toggle-content {
    display: none;
    padding: 8px 0 16px 22px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text);
}
.toggle-content p { margin: 0 0 .5em; }
.toggle-content ul { margin: .3em 0; }
.toggle-item.open .toggle-content { display: block; }


/* ---- Contact icons ---- */
.contact-panel { background: var(--blue); padding: 20px; color: #fff; }
.contact-item { display: flex; align-items: center; margin-bottom: 12px; color: #fff; }
.contact-item i { margin-right: 12px; font-size: 18px; color: #fff; }
.contact-item span { color: #fff; font-size: 14px; }
.social-icons { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.social-icons span { color: #fff; margin-right: 4px; font-size: 13px; }
.social-icons a { color: #fff; font-size: 18px; transition: opacity .2s; }
.social-icons a:hover { opacity: .7; text-decoration: none; }

/* ---- Site footer ---- */
#colophon {
    background: var(--footer);
    padding: 28px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-dept {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}
.contact-address {
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
}
.contact-address svg { fill: var(--red); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-right {
    color: var(--text);
    font-size: 13px;
    text-align: right;
    white-space: nowrap;
}

/* ---- Go to top (in footer) ---- */
.go-top {
    flex-shrink: 0;
    background: var(--red);
    color: #fff;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}
.go-top:hover { background: var(--red2); text-decoration: none; }
.go-top svg { stroke: #fff; width: 16px; height: 16px; }

/* ---- Front page section heading style ---- */
.e-section .section-text { font-size: 14px; line-height: 1.68; }

/* ---- Heading margin override ---- */
.page-content h1 { margin-bottom: 20px; }
.page-content .sub-section { margin-bottom: 30px; }
.page-content .sub-section.blue-bg {
    background: var(--navy);
    padding: 24px;
    margin-bottom: 20px;
}

/* ---- De ce MPT – right info box ---- */
.why-panel {
    background: var(--navy2);
    padding: 24px;
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
}
.why-panel p { color: #fff; }
.why-panel ul, .why-panel li { color: #fff; }

/* ---- Outcomes & competencies lists (discipline side panel) ---- */
.outcomes-list {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: outcome;
}
.outcomes-list li {
    counter-increment: outcome;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.45;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
    color: #fff;
}
.outcomes-list li:last-child { border-bottom: none; }
.outcomes-list li::before {
    content: counter(outcome);
    flex-shrink: 0;
    width: 20px; height: 20px;
    background: rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.competente-list {
    margin: 8px 0 0;
    padding: 0 0 0 16px;
}
.competente-list li {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,.9);
    padding: 3px 0;
}
.panel-section-title {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 10px;
    display: block;
}
.panel-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: .75;
    margin-top: 2px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .header-wrap { padding: 9px 0; }
    #masthead { background: var(--navy); }
    .site-logo { max-width: 65px; }

    .btn-menu { display: block; }
    #mainnav {
        display: none;
        text-align: left;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--navy);
        padding: 80px 30px 30px;
        overflow-y: auto;
        z-index: 9998;
    }
    #mainnav.open { display: block; }
    #mainnav ul { flex-direction: column; align-items: flex-start; }
    #mainnav ul li { margin: 0; padding: 0; width: 100%; border-bottom: none; }
    #mainnav ul li.active { border-bottom: none; }
    #mainnav ul li a { padding: 10px 0; font-size: 18px; }

    .header-slider, .slide-item { min-height: auto; height: auto; }
    .slide-item { background-image: none !important; }
    .mobile-slide { display: block; width: 100%; }
    .slide-inner { padding: 40px 15px; }
    .text-slider .maintitle { font-size: 28px; }

    .col-md-4, .col-md-6, .col-md-8 { width: 100%; }

    #content.page-wrap { padding-top: 60px; padding-bottom: 60px; }

    .inner-layout .main-col { width: 100%; padding-right: 0; margin-bottom: 30px; }
    .inner-layout .side-col  { width: 100%; }
    .col-70, .col-30 { width: 100%; }

    .toggle-semester { flex-direction: column; }
    .semester-label { width: 100%; margin-bottom: 8px; }
    .toggle-list { width: 100%; }


    .stat-block { flex-direction: column; }
    .stat-number { width: 100%; }
    .stat-desc { width: 100%; padding: 8px 0 0; }
}

@media (max-width: 767px) {
    body { font-size: 16px; }
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    .text-slider .maintitle { font-size: 24px; }

    .inner-layout .main-col,
    .inner-layout .side-col,
    .col-70, .col-30,
    .col-md-4, .col-md-6, .col-md-8 { width: 100%; }
}

/* ---- Impact page: shared titles ---- */
.page-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.page-section-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 36px;
}

/* ---- Timeline evolutie program ---- */
.tl-section {
    background: #fff;
    padding: 50px 0 60px;
}
.tl-scroll-wrap {
    overflow-x: auto;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}
.tl-grid {
    display: flex;
    position: relative;
    min-width: 680px;
}
/* Linia orizontală punctată prin dots */
.tl-grid::before {
    content: '';
    position: absolute;
    top: 135px; /* 130px (tl-above) + 5px (jumătate dot) */
    left:  calc(100% / 14);
    right: calc(100% / 14);
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--navy) 0, var(--navy) 5px,
        transparent 5px, transparent 11px
    );
    opacity: .2;
    pointer-events: none;
    z-index: 0;
}
.tl-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tl-above {
    height: 130px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 4px 14px;
}
.tl-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--navy);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    opacity: .3;
}
.tl-dot-ms  { opacity: .65; }
.tl-dot-red {
    background: var(--red);
    width: 14px; height: 14px;
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(216,58,58,.18);
}
.tl-below {
    padding: 14px 4px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Chip-uri milestone */
.tl-chip {
    border-radius: 3px;
    padding: 6px 8px;
    text-align: center;
    max-width: 112px;
}
.tl-chip-gray { background: var(--muted);  color: #fff; }
.tl-chip-red  { background: var(--red);    color: #fff; }
.tl-chip-year {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    margin-bottom: 3px;
}
.tl-chip-text {
    display: block;
    font-size: 10.5px;
    line-height: 1.35;
    opacity: .93;
}

/* Casete cohorte */
.tl-cohort {
    background: var(--navy);
    color: #fff;
    border-radius: 3px;
    padding: 8px 10px 10px;
    text-align: center;
    max-width: 112px;
    width: 100%;
}
.tl-cohort-year {
    font-size: 11px;
    color: rgba(255,255,255,.5);
    margin-bottom: 5px;
}
.tl-admitted {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}
.tl-num {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.tl-alabel {
    font-size: 10px;
    line-height: 1.3;
    color: rgba(255,255,255,.72);
    text-align: left;
}
.tl-badges {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.tl-badge {
    display: block;
    background: var(--blue);
    color: var(--navy);
    font-size: 10.5px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 2px;
}

/* ---- Impact bubbles (hanging circles) ---- */
.bubbles-section {
    background: var(--light);
    padding: 50px 0 70px;
}
.bubbles-track {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}
/* Bara orizontală din care agata bilele — desktop only */
@media (min-width: 768px) {
    .bubbles-track::before {
        content: '';
        position: absolute;
        top: 0;
        left: calc(100% / 10);
        right: calc(100% / 10);
        height: 1px;
        background: var(--muted);
        opacity: .3;
    }
}
.bubble-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}
.bubble-string {
    width: 1px;
    height: 44px;
    background: var(--muted);
    opacity: .3;
    flex-shrink: 0;
}
/* Bila principală (strategic partnership) — usor mai mare */
.bubble-item-lead .bubble {
    width: 178px;
    height: 178px;
    background: var(--blue2);
}
.bubble {
    width: 158px;
    height: 158px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    text-align: center;
    gap: 5px;
    transition: transform .2s;
}
.bubble:hover { transform: translateY(-4px); }
.bubble-icon {
    font-size: 17px;
    color: rgba(255,255,255,.6);
    flex-shrink: 0;
}
.bubble-metric {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.bubble-desc {
    font-size: 10px;
    line-height: 1.4;
    color: rgba(255,255,255,.85);
}
/* Pe mobile: ascundem bara și scurtam sfoara */
@media (max-width: 767px) {
    .bubble-string { height: 20px; }
    .bubble, .bubble-item-lead .bubble { width: 140px; height: 140px; }
}

/* ---- Hero: two-button row ---- */
.slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}
.btn-play {
    background: transparent;
    border-color: rgba(255,255,255,.65);
    color: #fff;
    cursor: pointer;
}
.btn-play:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

/* ---- Video lightbox modal ---- */
.video-modal {
    position: fixed; inset: 0;
    z-index: 9500;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
}
.video-modal.open { opacity: 1; pointer-events: auto; }
.video-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.88);
}
.video-modal-box {
    position: relative; z-index: 1;
    width: 90%; max-width: 960px;
}
.video-modal-close {
    position: absolute;
    top: -44px; right: 0;
    background: none; border: none;
    color: #fff; font-size: 38px; line-height: 1;
    cursor: pointer; padding: 4px 8px;
    opacity: .75; transition: opacity .2s;
}
.video-modal-close:hover { opacity: 1; }
.video-modal-box video {
    width: 100%; display: block;
    max-height: 80vh; background: #000;
}

/* ---- Testimoniale video inline ---- */
.inline-video-wrap { margin: 18px 0 28px; }
.inline-video-label {
    font-size: 12px; color: var(--muted);
    margin-bottom: 8px; font-style: italic;
}
.inline-video-wrap video { width: 100%; display: block; background: #000; }

/* ---- Misc ---- */
.screen-reader-text {
    border: 0; clip-path: inset(50%); height: 1px;
    margin: -1px; overflow: hidden; padding: 0;
    position: absolute; width: 1px; word-wrap: normal !important;
}
.section-spacer { height: 16px; }
