:root {
    --red:    #F93F33;
    --yellow: #E9BB59;
    --black:  #000000;
    --gray:   #D8D8D8;
    --white:  #FFFFFF;
    --bg:     #F2F2F2;
    --border: #DFDFDF;
    --text:   #111111;
    --muted:  #888888;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* ── PLACEHOLDER STYLES ── */
.ph-img {
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    width: 100%;
}
.ph-img svg { opacity: .35; }
.ph-line { display: inline-block; background: var(--border); border-radius: 2px; height: 12px; vertical-align: middle; }
.ph-text-wrap { display: flex; flex-direction: column; gap: 7px; }
.ph-text-line { background: var(--border); height: 11px; border-radius: 2px; }
.ph-text-line.w-100p { width: 100%; }
.ph-text-line.w-90  { width: 90%; }
.ph-text-line.w-80  { width: 80%; }
.ph-text-line.w-75  { width: 75%; }
.ph-text-line.w-60  { width: 60%; }
.ph-text-line.w-50  { width: 50%; }
.ph-text-line.w-40  { width: 40%; }
.ph-date { background: #e0e0e0; height: 9px; border-radius: 2px; width: 80px; }
.ph-sm-img { background: var(--bg); border: 1px solid var(--border); width: 72px; height: 60px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* ── TOPBAR ── */
.topbar { background: var(--black); padding: 7px 0; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .8px; text-transform: uppercase; }
.topbar a { color: #b3b3b3; text-decoration: none; transition: color .15s; }
.topbar a:hover { color: var(--white); }
.t-pill { border: 1px solid #2a2a2a; padding: 1px 9px; font-size: 10px; transition: all .15s; }
.t-pill.on { background: var(--red); border-color: var(--red); color: var(--white) !important; }
.t-pill:hover:not(.on) { border-color: var(--red); color: var(--red) !important; }

/* ── HEADER ── */
.site-header { background: var(--white); border-bottom: 2px solid var(--black); position: sticky; top: 0; z-index: 1050; }
.hw { display: flex; align-items: stretch; min-height: 64px; }
.logo-stripe { width: 5px; background: var(--red); flex-shrink: 0; }
.logo-area { display: flex; align-items: center; gap: clamp(8px, 1vw, 14px); padding: 0 clamp(14px, 1.6vw, 28px) 0 16px; border-right: 1px solid var(--border); text-decoration: none; flex-shrink: 0; }
.header-logo { height: 10vh; width: auto; max-width: 320px; object-fit: contain; }
.ln { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--black); white-space: nowrap; }
.ls { font-size: 9px; color: #aaa; letter-spacing: 1.5px; text-transform: uppercase; font-family: 'Jost', sans-serif; white-space: nowrap; }
.nav-area { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; justify-content: flex-end; padding-left: 4px; }
.nav-area .navbar-nav { flex-wrap: nowrap; }
.h-cta { display: none; }

/* Desktop nav: full menu inline above 1750px */
@media (min-width: 1750px) {
    .navbar-toggler { display: none !important; }
    .collapse.navbar-collapse { display: flex !important; justify-content: flex-end; }
    .nav-area .navbar-nav { flex-direction: row; }
    .h-cta { display: flex; }
    /* Bootstrap only makes .navbar-nav .dropdown-menu absolute via the
       .navbar-expand-* class, which we don't use. Restore it manually.
       !important guards against a legacy global .dropdown-menu{position:static}
       rule elsewhere on the page overriding this. */
    .navbar-nav .dropdown-menu { position: absolute !important; }
}

/* ── SUBNAV (тематическое меню: Университет / Образование / Наука / Контакты) ── */
.subnav { display: none; background: var(--bg); border-bottom: 1px solid var(--border); }
.mnav-secondary--mobile { display: none; }
@media (min-width: 1750px) {
    .subnav { display: block; }
    .subnav .navbar-nav { flex-direction: row; width: 100%; }
    .subnav .navbar-nav > li { flex: 1 1 0; text-align: center; }
    .subnav .navbar-nav > li > .nav-link { display: block; }
    .subnav .mnav .nav-link { padding-top: 16px !important; padding-bottom: 16px !important; }
    .subnav .dropdown-menu { text-align: left; left: 50%; transform: translateX(-50%); }
}
@media (max-width: 1749.98px) {
    .nav-area nav.navbar { flex-direction: column; align-items: stretch; }
    .mnav-secondary--mobile { display: flex; flex-direction: column; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 8px; }
}
.mnav .nav-link { font-family: 'Jost', sans-serif; font-size: clamp(12px, 0.98vw, 14.4px); font-weight: 600; letter-spacing: clamp(.46px, .14vw, 1.5px); text-transform: uppercase; color: var(--black) !important; padding: 23px clamp(7px, 0.75vw, 16px) !important; transition: color .15s; position: relative; white-space: nowrap; }
.mnav .nav-link::after { content: ''; position: absolute; bottom: 0; left: 14px; right: 14px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .2s; }
.mnav .nav-link:hover { color: var(--red) !important; }
.mnav .nav-link:hover::after { transform: scaleX(1); }
.mnav .dropdown-menu { background: var(--white) !important; border: 0 !important; border-top: 2px solid var(--red) !important; border-radius: 0 !important; min-width: 230px; padding: 8px 0 !important; box-shadow: 0 12px 40px rgba(0,0,0,.12) !important; z-index: 2000 !important; }
.mnav .dropdown-item { font-size: 12px; color: #555 !important; background: transparent !important; padding: 8px 20px !important; border: 0 !important; }
.mnav .dropdown-item:hover { background: var(--bg) !important; color: var(--red) !important; }
.h-cta { display: flex; align-items: center; flex-shrink: 0; background: var(--red); color: var(--white) !important; font-family: 'Jost', sans-serif; font-size: clamp(10.5px, 0.85vw, 12.5px); font-weight: 700; letter-spacing: clamp(.6px, .15vw, 2px); text-transform: uppercase; white-space: nowrap; padding: 0 clamp(14px, 2vw, 28px); text-decoration: none; transition: background .15s; }
.h-cta:hover { background: #d93329; }

@media (max-width: 420px) {
    .header-logo { max-width: 200px; }
    .logo-area { padding: 0 10px 0 12px; }
}

/* ── MOBILE NAV (below xl breakpoint) ── */
@media (max-width: 1749.98px) {
    .navbar-toggler {
        border: 1px solid var(--black) !important;
        border-radius: 4px;
        padding: 9px 11px;
        background: var(--white);
        position: relative;
        z-index: 1070;
    }
    .navbar-toggler:focus { box-shadow: none; }
    .navbar-toggler-icon {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--black);
        box-shadow: 0 -6px 0 var(--black), 0 6px 0 var(--black);
    }

    .nav-area { position: static; }
    #mn3.collapsing { transition: none !important; }
    .collapse.navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        background: var(--white);
        border-top: 2px solid var(--red);
        box-shadow: 0 16px 40px rgba(0,0,0,.15);
        padding: 8px 20px 20px;
        z-index: 1060;
    }
    .mnav .nav-link { font-size: 14px; font-weight: 600; letter-spacing: .3px; padding: 13px 4px !important; white-space: normal; }
    .mnav .nav-link::after { display: none; }
    .mnav .dropdown-menu { position: static !important; box-shadow: none; border-top: 0; border-left: 2px solid var(--border); margin: 2px 0 6px 6px; padding: 2px 0; min-width: 0; }
    .mnav .dropdown-item { padding: 9px 12px; white-space: normal; }
}


/* ── HERO ── */
/* ── ГЛАВНЫЙ СЛАЙДЕР (2 баннера под шапкой) ── */
.hero-slider { background: var(--black); }
.hero-slide { height: 460px; display: flex; align-items: center; background: linear-gradient(120deg, var(--black) 0%, #2a2a2a 100%); overflow: hidden; }
.hero-slide--2 { background: linear-gradient(120deg, #1a1a1a 0%, var(--red) 160%); }
.hero-slide-content { max-width: 620px; padding: 60px 0; }
.slabel--light { color: rgba(255,255,255,.65); }
.hero-slide-title { font-family: 'Jost', sans-serif; font-size: 52px; font-weight: 900; text-transform: uppercase; line-height: .98; color: var(--white); letter-spacing: -1.5px; margin: 14px 0 18px; }
.hero-slide-title .r { color: var(--red); }
.hero-slide-text { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.6; margin-bottom: 28px; max-width: 480px; }
.btn-out--light { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-out--light:hover { background: var(--white); color: var(--black); }
.btn-solid.btn-solid--accent { background: var(--red); border-color: var(--red); }
.btn-solid.btn-solid--accent:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.hero-slider .carousel-indicators { margin-bottom: 20px; }
.hero-slider .carousel-indicators button { width: 32px; height: 3px; border-radius: 0; background: rgba(255,255,255,.4); opacity: 1; }
.hero-slider .carousel-indicators button.active { background: var(--red); }
.hero-slider .carousel-control-prev, .hero-slider .carousel-control-next { width: 56px; opacity: .8; }
@media (max-width: 768px) {
    .hero-slide { height: 380px; }
    .hero-slide-title { font-size: 30px; }
    .hero-slide-content { padding: 30px 0; }
}
.hero-body { padding: 0; }
.hero-left { padding: 64px 56px 56px 0; }
.h-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--black); font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; margin-bottom: 24px; }
.hero h1 { font-family: 'Jost', sans-serif; font-size: 66px; font-weight: 900; text-transform: uppercase; line-height: .95; color: var(--black); margin-bottom: 24px; letter-spacing: -2px; }
.hero h1 .r { color: var(--red); }
.hero-desc { font-size: 14px; line-height: 1.85; color: var(--muted); max-width: 420px; margin-bottom: 32px; }
.btn-solid { display: inline-flex; align-items: center; gap: 8px; background: var(--black); color: var(--white); font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 13px 28px; text-decoration: none; border: 1px solid var(--black); transition: all .2s; }
.btn-solid:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-out { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--black); font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 12px 28px; text-decoration: none; border: 1px solid #ccc; transition: all .2s; }
.btn-out:hover { border-color: var(--black); }
.hero-right { display: flex; flex-direction: column; height: 100%; }
.hblock-red { background: var(--red); padding: 28px 32px; display: flex; justify-content: space-between; align-items: flex-end; }
.hbr-label { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hbr-val { font-family: 'Jost', sans-serif; font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -2px; }
.stat-bar { background: var(--gray); border-top: 1px solid #ccc; }
.sstat { text-align: center; padding: 20px 16px; border-right: 1px solid #ccc; }
.sstat:last-child { border-right: 0; }
.sv { font-family: 'Jost', sans-serif; font-size: 38px; font-weight: 900; color: var(--black); line-height: 1; letter-spacing: -1px; }
.sv .r { color: var(--red); }
.sl { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-top: 4px; }

/* ── QUICK LINKS ── */
.qbar { background: var(--white); border-bottom: 1px solid var(--border); }
.ql { display: flex; align-items: center; gap: 8px; padding: 14px 20px; font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #888; text-decoration: none; border-right: 1px solid var(--border); transition: all .15s; }
.ql:last-child { border-right: 0; }
.ql:hover { background: var(--bg); color: var(--red); }
.ql-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── SECTION UTILS ── */
.slabel { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.slabel::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.stitle { font-family: 'Jost', sans-serif; font-size: 34px; font-weight: 900; text-transform: uppercase; line-height: 1.05; color: var(--black); letter-spacing: -1px; }
.stitle .r { color: var(--red); }
.alink { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); text-decoration: none; }
.alink:hover { color: var(--black); }

/* ── NEWS ── */
.news-s { padding: 72px 0; background: var(--white); }
.news-main { display: block; text-decoration: none; border: 1px solid var(--border); height: 100%; transition: all .25s; }
.news-main:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.nm-body { padding: 24px; }
.nm-tag { display: inline-block; background: var(--red); color: var(--white); font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; margin-bottom: 12px; }
.nm-title { font-family: 'Jost', sans-serif; font-size: 19px; font-weight: 700; line-height: 1.3; color: var(--black); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-sm { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.news-sm:last-child { border-bottom: 0; }
.ns-tag { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 7px; }
.ns-title { font-size: 13px; line-height: 1.4; color: var(--black); font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.y-promo { background: var(--yellow); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; height: 100%; border: 1px solid var(--yellow); }
.yp-label { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,.35); margin-bottom: 8px; }
.yp-title { font-family: 'Jost', sans-serif; font-size: 20px; font-weight: 900; text-transform: uppercase; line-height: 1.2; color: var(--black); letter-spacing: -.3px; margin-bottom: 14px; }
.yp-link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--black); text-decoration: none; border-bottom: 1px solid var(--black); padding-bottom: 2px; }

/* ── EDU ── */
.edu-s { padding: 72px 0; background: var(--bg); }
.edu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); }
.ec { padding: 32px 24px; display: flex; flex-direction: column; text-decoration: none; border-right: 1px solid var(--border); transition: all .2s; position: relative; overflow: hidden; }
.ec:last-child { border-right: 0; }
.ec:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.12); z-index: 2; }
.ec-1 { background: var(--red); } .ec-2 { background: var(--black); } .ec-3 { background: var(--yellow); } .ec-4 { background: var(--white); }
.ec-num { font-family: 'Jost', sans-serif; font-size: 84px; font-weight: 900; position: absolute; right: -4px; bottom: -10px; opacity: .08; letter-spacing: -4px; line-height: 1; }
.ec-1 .ec-num, .ec-3 .ec-num { color: var(--black); } .ec-2 .ec-num { color: var(--white); } .ec-4 .ec-num { color: var(--red); }
.ec-title { font-family: 'Jost', sans-serif; font-size: 16px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; line-height: 1.15; letter-spacing: -.2px; }
.ec-1 .ec-title, .ec-3 .ec-title { color: var(--black); } .ec-2 .ec-title { color: var(--white); } .ec-4 .ec-title { color: var(--black); }
.ec-sub { font-size: 12px; flex: 1; line-height: 1.6; margin-bottom: 18px; }
.ec-1 .ec-sub, .ec-3 .ec-sub { color: rgba(0,0,0,.45); } .ec-2 .ec-sub { color: #666; } .ec-4 .ec-sub { color: #888; }
.ec-arr { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.ec-1 .ec-arr, .ec-3 .ec-arr { color: rgba(0,0,0,.45); } .ec-2 .ec-arr { color: var(--red); } .ec-4 .ec-arr { color: var(--red); }

/* ── NUMBERS ── */
.nums-s { padding: 0; background: var(--black); }
.nb { text-align: center; padding: 52px 24px; border-right: 1px solid #1a1a1a; }
.nb:last-child { border-right: 0; }
.nv { font-family: 'Jost', sans-serif; font-size: 64px; font-weight: 900; line-height: 1; color: var(--white); letter-spacing: -2px; }
.nv .r { color: var(--red); }
.nl-line { width: 28px; height: 2px; background: var(--red); margin: 12px auto; }
.nl { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #3a3a3a; }

/* ── INSTITUTES ── */
.inst-s { padding: 72px 0; background: var(--white); }
.icard { padding: 20px; border: 1px solid var(--border); display: block; text-decoration: none; height: 100%; transition: all .2s; position: relative; overflow: hidden; }
.icard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .2s; }
.icard:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.icard:hover::before { transform: scaleX(1); }
.i-abbr { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }

/* ── ПРИЁМНАЯ КОМИССИЯ (admission committee cards) ── */
.pk-s { padding: 72px 0; background: var(--white); }
.pk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pk-card { padding: 28px 24px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; transition: all .2s; }
.pk-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .2s; }
.pk-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.pk-card:hover::before { transform: scaleX(1); }
.pk-eyebrow { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); }
.pk-abbr { font-family: 'Jost', sans-serif; font-size: 26px; font-weight: 900; letter-spacing: .5px; text-transform: uppercase; color: var(--black); }
.pk-desc { font-size: 14px; line-height: 1.65; color: var(--muted); }
@media (max-width: 992px) { .pk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .pk-grid { grid-template-columns: 1fr; } }

/* ── НОВОСТИ: компактная полоса под слайдером (bitrix:news.list / bootstrap_v4 — CSS-рескин, PHP-шаблон не менялся) ── */
.news-strip { padding: 32px 0 44px; background: var(--white); border-bottom: 1px solid var(--border); }
.news-strip-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.news-strip-title { font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--black); line-height: 1; }
.news-strip-more { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); text-decoration: none; line-height: 1; }
.news-strip-more:hover { text-decoration: underline; }

.news-strip .recent-post { background: transparent; }
.news-strip .info-block { display: none; } /* заголовок "Новости" из шаблона скрыт — уже есть свой .news-strip-title */
.news-strip .row.row-cols-md-3 { --bs-gutter-x: 14px; --bs-gutter-y: 14px; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; }
.news-strip .row.row-cols-md-3::-webkit-scrollbar { display: none; }
/* 6 карточек видно сразу, остальные — прокруткой (не проценты, а фиксированная ширина) */
.news-strip .row.row-cols-md-3 > * { flex: 0 0 16.6666% !important; width: 16.6666% !important; scroll-snap-align: start; }

.news-strip-viewport { position: relative; }
.news-strip-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 34px; height: 34px; border: 1px solid var(--border); background: var(--white);
    font-size: 18px; line-height: 1; color: var(--black); cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.news-strip-arrow:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-50%); }
.news-strip-arrow--prev { left: -17px; }
.news-strip-arrow--next { right: -17px; }
@media (max-width: 992px) { .news-strip .row.row-cols-md-3 > * { flex-basis: 33.333% !important; width: 33.333% !important; } }
@media (max-width: 576px) {
    .news-strip .row.row-cols-md-3 > * { flex-basis: 62% !important; width: 62% !important; }
    .news-strip-arrow { display: none; }
}

.news-strip .card.news-main { border: 1px solid var(--border) !important; border-radius: 0 !important; position: relative; overflow: hidden; transition: all .2s; }
.news-strip .card.news-main::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .2s; z-index: 2; }
.news-strip .card.news-main:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.news-strip .card.news-main:hover::before { transform: scaleX(1); }

.news-strip .img-wrap { position: relative; overflow: hidden; }
.news-strip .img-wrap img.card-img-top { border-radius: 0 !important; aspect-ratio: 4 / 3; height: auto; object-fit: cover; width: 100%; display: block; }
.news-strip .img-wrap p {
    position: absolute; top: 6px; left: 6px; margin: 0;
    background: var(--red); color: #fff;
    font-family: 'Jost', sans-serif; font-size: 8px; font-weight: 700;
    letter-spacing: .5px; text-transform: uppercase;
    padding: 3px 6px;
}
.news-strip .card-body { padding: 0.85rem 0.85rem 1rem; }
.news-strip .card-title { font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 700; line-height: 1.35; margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.news-strip .card-title a { color: var(--black) !important; text-decoration: none !important; }
.news-strip .card-title a:hover { color: var(--red) !important; }
.news-strip small.text-muted { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--red) !important; }
.news-strip small.text-muted .fas { display: none; }
.news-strip .news-pager { margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--border); font-family: 'Jost', sans-serif; font-size: 11px; color: var(--muted); text-align: center; }
.news-strip .news-pager a { color: var(--black); text-decoration: none; font-weight: 600; padding: 3px 6px; }
.news-strip .news-pager a:hover { color: var(--red); }


/* ── EVENTS ── */
.events-s { padding: 72px 0; background: var(--bg); }
.ev-card { display: flex; gap: 16px; padding: 18px; background: var(--white); border: 1px solid var(--border); text-decoration: none; transition: all .2s; margin-bottom: 10px; }
.ev-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); border-color: var(--red); }
.ev-date { flex-shrink: 0; width: 48px; height: 48px; background: var(--black); display: flex; flex-direction: column; align-items: center; justify-content: center; transition: background .15s; }
.ev-card:hover .ev-date { background: var(--red); }
.ev-day { font-family: 'Jost', sans-serif; font-size: 20px; font-weight: 900; color: var(--white); line-height: 1; }
.ev-mon { font-family: 'Jost', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.ev-tag { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 7px; }
.cnt-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border); }
.cc { padding: 18px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cc:nth-child(2n) { border-right: 0; }
.cc:nth-last-child(-n+2) { border-bottom: 0; }
.cc-l { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #bbb; margin-bottom: 6px; }
.cc-v { font-size: 13px; font-weight: 600; color: var(--black); }
.cc-v.r { color: var(--red); }

/* ── FOOTER ── */
.site-footer { background: var(--black); }
.ft { padding: 56px 0 40px; }
.fl-name { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--white); }
.fl-sub { font-size: 9px; color: #999; letter-spacing: 1.5px; text-transform: uppercase; font-family: 'Jost', sans-serif; }
.fh { font-family: 'Jost', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #bbb; margin-bottom: 16px; }
.fl-links { list-style: none; padding: 0; }
.fl-links li { margin-bottom: 8px; }
.fl-links a { font-size: 12px; color: #aaa; text-decoration: none; }
.fl-links a:hover { color: var(--red); }
.fb { border-top: 1px solid #2a2a2a; padding: 16px 0; font-size: 11px; color: #999; font-family: 'Jost', sans-serif; letter-spacing: .5px; }
.soc { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border: 1px solid #444; font-family: 'Jost', sans-serif; font-size: 8px; font-weight: 700; letter-spacing: 1px; color: #bbb; text-decoration: none; transition: all .15s; }
.soc:hover { border-color: var(--red); color: var(--red); }

@media (max-width: 992px) {
    .hero h1 { font-size: 48px; }
    .edu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .hero h1 { font-size: 36px; letter-spacing: -1px; }
    .edu-grid { grid-template-columns: 1fr; }
    .cnt-grid { grid-template-columns: 1fr; }
}

/* ── LARGE DESKTOP SCALE-UP (≥1600px, e.g. 27" monitors) ── */
@media (min-width: 1750px) {
    .container { max-width: 1560px; }

    .hero h1 { font-size: 82px; }
    .hero-desc { font-size: 16px; max-width: 480px; }
    .h-chip { font-size: 10px; padding: 6px 16px; }
    .btn-solid, .btn-out { font-size: 12px; padding: 15px 32px; }
    .hbr-val { font-size: 60px; }
    .sv { font-size: 44px; }
    .sl { font-size: 10px; }

    .stitle { font-size: 40px; }
    .slabel { font-size: 10px; }
    .alink { font-size: 11px; }

    .nm-body { padding: 30px; }
    .nm-tag, .ns-tag { font-size: 10px; }
    .yp-title { font-size: 24px; }

    .ec-title { font-size: 18px; }
    .ec-sub { font-size: 13px; }
    .ec-num { font-size: 96px; }

    .nv { font-size: 74px; }
    .nl { font-size: 10px; }

    .i-abbr { font-size: 11px; }
    .pk-abbr { font-size: 30px; }
    .pk-desc { font-size: 15px; }
    .pk-eyebrow { font-size: 13px; }

    .ev-tag { font-size: 10px; }
    .cc-v { font-size: 15px; }
    .cc-l { font-size: 10px; }

    .fl-name { font-size: 15px; }
    .fh { font-size: 10px; }
    .fl-links a { font-size: 13px; }
}
@media (min-width: 2000px) {
    .container { max-width: 1760px; }
}
