[hidden]{display:none!important}
.kau-modal[hidden]{display:none!important}

@font-face {
  font-family: "TT Hoves";
  src: url("../fonts/TTHoves-Regular.woff2") format("woff2"),
       url("../fonts/TTHoves-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Hoves";
  src: url("../fonts/TTHoves-Medium.woff2") format("woff2"),
       url("../fonts/TTHoves-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Hoves";
  src: url("../fonts/TTHoves-Bold.woff2") format("woff2"),
       url("../fonts/TTHoves-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --kau-container: min(1440px, 92vw);
}

:root{
  --kau-text:#0f172a;
  --kau-white:#fff;
  --kau-blue:#1f6fff;
  --kau-radius: 18px;
}
*{box-sizing:border-box}
body{margin:0;font-family: "TT Hoves", Arial, sans-serif; color:var(--kau-text)}
a{color:inherit;text-decoration:none}
html.kau-lock, body.kau-lock{overflow:hidden}

/* HEADER */
.kau-header{
  position:fixed; left:0; top:0; width:100%;
  z-index:50;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
  background: transparent;
	background:#003369;
}
.kau-header.is-scrolled{
  background: #003369;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.kau-header__inner{
  width: var(--kau-container);
  margin: 0 auto;

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

  padding:14px 0; /* ВАЖНО: без боковых паддингов */
}
.kau-iconbtn{
  appearance:none; border:0; background:transparent; cursor:pointer;
  color:var(--kau-white); font-size:18px;
  width:42px; height:42px; display:grid; place-items:center;
  border-radius:999px;
}
.kau-iconbtn:hover{background: rgba(255,255,255,.12)}
.kau-header__brand{display:flex; align-items:center}
.kau-header__brand .custom-logo,
.kau-logo-img{
  max-height:52px;
  width:auto;
}

/* Burger icon */
.kau-burger{width:18px;height:2px;background:var(--kau-white);position:relative;display:block}
.kau-burger:before,.kau-burger:after{content:"";position:absolute;left:0;width:18px;height:2px;background:var(--kau-white)}
.kau-burger:before{top:-6px}
.kau-burger:after{top:6px}

/* BACKDROP */
.kau-backdrop{position:fixed; inset:0; background: rgba(2,6,23,.45); z-index:60}

/* OFFCANVAS */
.kau-offcanvas{
  position:fixed; top:0; left:0; height:100vh; width:min(360px,86vw);
  background:#0b1220; color:#fff; z-index:70;
  transform: translateX(-102%);
  transition: transform .25s ease;
  padding:18px;
}
.kau-offcanvas.is-open{transform: translateX(0)}
.kau-offcanvas__top{display:flex; align-items:center; justify-content:space-between; margin-bottom:18px}
.kau-menu--mobile{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.kau-menu--mobile a{display:block; padding:12px; border-radius:12px; background: rgba(255,255,255,.06)}

/* SEARCH */
.kau-search{
  position:fixed; inset:0; z-index:10000;
  background: rgba(2,6,23,.75);
  display:grid; place-items:center;
}
.kau-search__inner{width:min(960px,92vw)}
.kau-search__form{
  display:grid; grid-template-columns: 1fr auto auto; gap:10px;
  background: rgba(255,255,255,.08);
  padding:14px; border-radius:999px;
  backdrop-filter: blur(10px);
}
.kau-search__input{border:0; outline:none; background:transparent; color:#fff; font-size:18px; padding:10px 14px}
.kau-search__btn{border:0; cursor:pointer; padding:10px 18px; border-radius:999px; background: var(--kau-blue); color:#fff; font-weight:700}
.kau-search__close{border:0; cursor:pointer; padding:10px 16px; border-radius:999px; background: rgba(255,255,255,.12); color:#fff; font-weight:700}

.kau-ic{display:block}

.kau-header__right { display:flex; }

/* HERO */
.kau-hero{
  position:relative; min-height:78vh;
  padding-top:76px;
  display:flex; align-items:flex-end;
  overflow:hidden;
}
.kau-hero__bg{position:absolute; inset:0; background-size:cover; background-position:center; filter:saturate(1.05)}
.kau-hero__bg:after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg,
      rgba(5, 22, 45, .82) 0%,
      rgba(5, 22, 45, .62) 40%,
      rgba(5, 22, 45, .10) 100%
    );
}
.kau-hero__content{position:relative; width:min(1440px,92vw); margin:0 auto; padding:52px 0 56px; color:#fff}
.kau-hero__title{margin:0 0 24px; font-size:70px; font-weight:700; line-height:1.02; width:50%;}
.kau-hero__subtitle{margin:0 0 34px; font-size:22px; opacity:.9}

.kau-btn{border:0; cursor:pointer; display:inline-flex; align-items:center; gap:10px; padding:12px 18px; border-radius:14px; font-weight:800}
.kau-btn--pill{
  border-radius:999px;
  background:#fff;
  color:#0b1220;
  padding:10px 14px;
  gap:12px;
}

.kau-btn__icon{
  width:32px;
  height:32px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: var(--kau-blue);
  color:#fff; /* SVG будет белым */
}

.kau-btn__text { font-weight: 500; font-size:16px; }

/* MODAL */
.kau-modal{position:fixed; inset:0; z-index:90; display:grid; place-items:center; background: rgba(2,6,23,.65)}
.kau-modal__dialog{width:min(560px,92vw); background:#fff; border-radius:var(--kau-radius); box-shadow:0 20px 70px rgba(0,0,0,.25); padding:16px}
.kau-modal__top{display:flex; align-items:center; justify-content:space-between; margin-bottom:12px}
.kau-modal__title{font-weight:900; font-size:18px}
.kau-modal .kau-iconbtn{color:#0b1220}
.kau-modal .kau-iconbtn:hover{background: rgba(15,23,42,.06)}
.kau-form__grid{display:grid; gap:10px; margin-bottom:12px}
.kau-input,.kau-textarea{width:100%; padding:12px 14px; border-radius:14px; border:1px solid rgba(15,23,42,.12); outline:none}
.kau-btn--primary{width:100%; background: var(--kau-blue); color:#fff; border-radius:14px; padding:14px 18px}
.kau-note{margin:10px 0 0; font-size:12px; color: rgba(15,23,42,.65)}

/* FOOTER */
.kau-footer{padding:24px 0; background:#1E3563; color:#fff}
.kau-footer__inner{width:min(1440px,92vw); margin:0 auto; opacity:.85; font-size:14px}



.kau-header__left{display:flex; align-items:center; gap:14px}
.kau-access{
  appearance:none;
  -webkit-appearance:none;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08);
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:8px 14px;
  border-radius:999px;
  cursor:pointer;
  font-family:"TT Hoves", Arial, sans-serif;
  font-size:14px;
  font-weight:500;
  line-height:1;
  opacity:1;
  transition:
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease,
    box-shadow .25s ease,
    transform .2s ease;
}

.kau-access:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.2);
}

.kau-access:active{
  transform:translateY(1px);
}

.kau-access:focus-visible{
  outline:2px solid #8db7ff;
  outline-offset:3px;
}

.kau-access__icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 22px;
}

.kau-access__icon svg{
  width:18px;
  height:18px;
  display:block;
}

.kau-access.is-active{
  background:#3259FB;
  border-color:#3259FB;
  color:#fff;
  box-shadow:0 0 0 4px rgba(50,89,251,.18);
}

.kau-access .vision{
  white-space:nowrap;
}

@media (max-width: 700px){
  .kau-access{
    min-height:38px;
    padding:8px 12px;
    font-size:13px;
  }

  .kau-access__icon{
    width:20px;
    height:20px;
    flex-basis:20px;
  }
}

.kau-lang{
  display:flex; align-items:center; gap:6px;
  border:0; cursor:pointer;
  background: transparent;
  color:#fff;
  font-weight:700;
  padding:8px 10px;
  border-radius:999px;
}
.kau-lang:hover{background: rgba(255,255,255,.12)}



.kau-langwrap{position:relative; display:flex; align-items:center}

.kau-lang{
  display:flex; align-items:center; gap:6px;
  border:0; cursor:pointer;
  background: transparent;
  color:#fff;
  font-weight:700;
  padding:8px 10px;
  border-radius:999px;
}
.kau-lang:hover{background: rgba(255,255,255,.12)}
.kau-lang__code{text-transform:uppercase; letter-spacing:.02em}

.kau-langdd{
  position:absolute;
  top: calc(100% + 10px);
  right:0;
  min-width: 84px;
  background: rgba(11,18,32,.92);
  color:#fff;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.kau-langitem{
  display:flex;
  padding:10px 12px;
  border-radius: 12px;
  color:#fff;
  text-transform:uppercase;
  font-weight:700;
}
.kau-langitem:hover{background: rgba(255,255,255,.10)}
.kau-langitem.is-active{background: rgba(255,255,255,.14)}


/* NEWS */
.kau-wrap{width:var(--kau-container); margin:0 auto}
.kau-news{padding:54px 0 20px; background:#fff}
.kau-news__top{display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:18px}
.kau-h2{margin:0; font-size:50px; letter-spacing:.02em; font-weight:700}
.kau-link{color:var(--kau-blue); font-weight:700}

.kau-news__grid{display:grid; grid-template-columns: 1.1fr .95fr; gap:22px}
@media (max-width: 980px){ .kau-news__grid{grid-template-columns:1fr; } }

.kau-newsbig{
  border-radius:24px;
  overflow:hidden;
  position:relative;
  box-shadow: 0 18px 55px rgba(15,23,42,.10);
  background:#0b1220;
	min-height:450px;
}
.kau-newsbig__media{display:block; position:relative; height: 360px}
.kau-newsbig__media img{width:100%; height:100%; object-fit:cover; display:block; filter: saturate(1.05)}
.kau-newsbig__media:after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,.05) 0%, rgba(2,6,23,.70) 72%, rgba(2,6,23,.85) 100%);
}
.kau-date{
  position:absolute; top:16px; left:16px;
  background: rgba(255,255,255,.22);
  color:#fff; font-weight:500; font-size:16px;
  padding:14px 20px; border-radius:999px;
  backdrop-filter: blur(8px);
  z-index:2;
}
.kau-newsbig__content{
  position:absolute; left:40px; right:40px; bottom:40px;
  color:#fff; z-index:2;
	
}
.kau-newsbig__title{margin:0 0 8px; font-size:22px; font-weight:900; line-height:1.1; margin-bottom:20px;}
.kau-newsbig__excerpt{margin:0 0 10px; opacity:.92; font-size:14px; line-height:1.35; margin-bottom:20px;}

.kau-more{color:var(--kau-blue); font-weight:500; font-size:16px;}
.kau-newsbig .kau-more{color:#0059FF}

.kau-newslist{display:grid; gap:16px}
.kau-newscard{
  display:grid; grid-template-columns: 170px 1fr;
  gap:14px; 
}
.kau-newscard__img{
  border-radius:18px; overflow:hidden; display:block;
}
.kau-newscard__img img{width:100%; height:100%; object-fit:cover; display:block}

.kau-newscard__title{margin:0 0 6px; font-size:18px; font-weight:500; line-height:1.2}
.kau-newscard__excerpt{margin:0 0 10px; font-size:14px; color: rgba(15,23,42,.70); line-height:1.3}
.kau-newscard__meta{display:flex; align-items:center; justify-content:flex-start; gap:10px}
.kau-newscard__date{font-size:12px; color: rgba(15,23,42,.55); font-weight:700}

.kau-empty{
  padding:18px;
  border-radius:16px;
  background: rgba(15,23,42,.04);
}


/* PROGRAMS */
.kau-prog{padding:90px 0 90px; background:#fff}
.kau-prog__top{display:flex; gap:16px; align-items:flex-start; justify-content:space-between; margin-bottom:18px; flex-direction: column}

.kau-tabs{display:flex; gap:10px; background: rgba(15,23,42,.04); padding:6px; border-radius:999px}
.kau-tab{
  border:0; cursor:pointer;
  padding:10px 14px;
  border-radius:999px;
  font-weight:500;
  background: transparent;
	font-size:20px;
}
.kau-tab.is-active{background: var(--kau-blue); color:#fff}

.kau-prog__group{margin-top:18px}
.kau-prog__group-title{font-weight:500; margin:24px 0 15px; color: rgba(15,23,42,.85); font-size:20px;}

.kau-prog__grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:14px;
}
@media (max-width: 1200px){ .kau-prog__grid{grid-template-columns: repeat(3, 1fr);} }
@media (max-width: 700px){ .kau-prog__grid{grid-template-columns: repeat(1, 1fr);} .kau-h2{font-size:30px; max-width:50%;} .kau-hero__title{font-size:45px;} .vision{display:none;}}

.kau-card{
  border-radius:22px;
  overflow:hidden;
  border:2px solid rgba(15,23,42,.10);
  background:#fff;
  transition: .18s ease;
}
.kau-card:hover{transform: translateY(-2px); border-color: rgba(31,111,255,.35)}

.kau-card__img{position:relative; height:120px; background:#f4f6fb}
.kau-card__img img{width:100%; height:100%; object-fit:cover; display:block}

.kau-chip{
  position:absolute; top:10px; left:10px;
  background: var(--kau-blue);
  color:#fff;
  font-weight:500;
  font-size:14px;
  padding:8px 14px;
  border-radius:999px;
}
.kau-arrow{
  position:absolute; top:10px; right:10px;
  width:28px; height:28px;
  border-radius:999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.90);
  color:#111827;
  font-weight:900;
}
.kau-card__body{padding:12px 12px 14px}
.kau-card__title{font-weight:500; font-size:18px; line-height:1.2; margin-bottom:8px}
.kau-card__meta{font-size:14px; color: #858480; font-weight:400}

/* CARD (program) — как на макете */
.kau-card{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  background:#fff;
  border:2px solid rgba(15,23,42,.10);
  transition:.18s ease;
	min-width:260px;
}

/* картинка занимает примерно верхнюю половину */
.kau-card__img{
  position:relative;
  height:140px;
  background:#f4f6fb;
}
.kau-card__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* плавный белый градиент снизу картинки */
.kau-card__fade{
  position:absolute;
  left:0; right:0; bottom:0;
  height:64px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.92) 78%, rgba(255,255,255,1) 100%);
  pointer-events:none;
  z-index:2;
}

/* белый блок текста “наезжает” на картинку */
.kau-card__body{
  position:relative;
  z-index:3;
  margin-top:-22px;          /* вот этот “наезд” */
  margin-left:5px;
  margin-right:5px;
	margin-bottom:5px;
  padding:19px 18px;
  border-radius:26px;        /* ВСЕ углы со скруглением */
  background:#fff;
  box-shadow: 0 10px 28px rgba(15,23,42,.08);
	min-height:120px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.kau-card__title{
  font-weight:500;
  font-size:18px;
  line-height:1.2;
  margin-bottom:8px;
}
.kau-card__meta{
  font-size:14px;
  color: rgba(15,23,42,.55);
  font-weight:400;
}

/* code chip + стрелка */


.kau-arrow{
  position:absolute; top:10px; right:10px;
  width:28px; height:28px;
  border-radius:999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.92);
  color:#111827;
  font-weight:900;
  z-index:4;
}

/* СИНИЙ overlay при hover — на картинку */
.kau-card__ov{
  position:absolute;
  inset:0;
  background: rgba(31,111,255,.28);
  opacity:0;
  transition:.18s ease;
  z-index:3;
  pointer-events:none;
}

/* СИНИЙ overlay при hover — на белый блок */
.kau-card__ov2{
  position:absolute;
  left:8px; right:8px;
  bottom:8px;
  height:calc(100% - 126px);   /* примерно зона текста */
  border-radius:18px;
  background: rgba(31,111,255,.14);
  opacity:0;
  transition:.18s ease;
  pointer-events:none;
  z-index:4; /* поверх белого блока, но текст остаётся читаемым */
  mix-blend-mode: multiply;
}

/* hover эффекты */
.kau-card:hover{
  transform: translateY(-2px);
  border-color: rgba(31,111,255,.35);
}
.kau-card:hover .kau-card__ov{ opacity:1; }
.kau-card:hover .kau-card__ov2{ opacity:1; }
.kau-card:hover .kau-card__body{
  border-color: rgba(31,111,255,.35);
}


/* LEAD */
.kau-lead{padding:56px 0 70px; background:#fff}
.kau-lead__grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap:22px;

}
@media (max-width: 980px){
  .kau-lead__grid{grid-template-columns:1fr}
}

.kau-lead__h{
  margin:0 0 10px;
  font-weight:700;
  font-size:50px;
  line-height:1.02;
  letter-spacing:.02em;
}
@media (max-width: 520px){ .kau-lead__h{font-size:34px;} }

.kau-lead__p{
  margin:0;
  max-width:420px;
  color: rgba(15,23,42,.70);
  font-size:14px;
  line-height:1.5;
}

.kau-lead__card{
  background: var(--kau-blue);
  border-radius:26px;
  padding:26px;
}

.kau-leadform__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 520px){
  .kau-leadform__grid{grid-template-columns:1fr}
}

.kau-inp{
  width:100%;
  border:0;
  border-radius:999px;
  padding:14px 16px;
  outline:none;
  background: rgba(255,255,255,.95);
  color:#9A9A9A;
  font-weight:500;
}
.kau-inp::placeholder{color: rgba(15,23,42,.45); font-weight:500}

.kau-ta{
  grid-column: 1 / -1;
  border-radius:20px;
  min-height:110px;
  resize:vertical;
  padding-top:14px;
}

.kau-leadform__bottom{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.kau-leadform__status{
  color: rgba(255,255,255,.92);
  font-weight:700;
  font-size:13px;
  min-height:18px;
}

.kau-send{
  display:flex;
  align-items:center;
  gap:12px;
  border:0;
  cursor:pointer;
  background:#fff;
  color:#0b1220;
  font-weight:500;
  padding:15px 20px;
  border-radius:999px;
	font-size:18px;
}
.kau-send__ic{
  width:32px; height:32px;
  border-radius:999px;
  display:grid; place-items:center;
  background: var(--kau-blue);
  color:#fff;
  font-weight:900;
}


/* FOOTER */
.kau-footer{padding:90px 0 30px;background:#1E3563;}
.kau-footer__grid{
  display:grid;
  grid-template-columns:0.7fr 3fr 1.3fr 1.2fr;
  gap:30px;
}
@media(max-width:980px){
  .kau-footer__grid{grid-template-columns:1fr}
}

.kau-footer h4{
  margin:0 0 12px;
  font-size:16px;
  font-weight:500;
  color:#fff;
  text-transform:uppercase;
}

.kau-footer__logo img{max-width:140px}

.kau-footermenu{list-style:none;padding:0;margin:0;}
.kau-footermenu li{margin:0 0 8px}
.kau-footermenu a{color:#8E9AB1;font-weight:400;text-decoration:none}
.kau-footermenu a:hover{color:var(--kau-blue)}

.kau-footer__contacts a{display:block;margin-top:10px;color:#8E9AB1;}
.kau-footer__contacts a:hover{color:var(--kau-blue)}

.kau-socials{display:flex;gap:10px}
.kau-socials a{
  width:36px;height:36px;
  border-radius:999px;
  background:var(--kau-blue);
  display:grid;place-items:center;
  color:#fff;
  font-weight:900;
}

.kau-footer__bottom{
  margin-top:40px;
  font-size:12px;
  color:#64748b;
}

.kau-footer__nav {
	display: flex;
	gap:50px;
	 text-transform: uppercase;
}

.kau-footer__contacts {
	color:#8E9AB1;
	font-size:16px;
	font-weight:500;
}

/* FULLSCREEN TOP MENU */
#kauOffcanvas.kau-menu-overlay{
  position:fixed;
  inset:0;
  background:#0b0b0b;
  color:#fff;
  z-index:9999;

  transform:translateY(-100%);
  transition:transform .5s cubic-bezier(.77,0,.18,1);
}

#kauOffcanvas.kau-menu-overlay.is-open{
  transform:translateY(0);
}

.kau-menu-inner{
  height:100%;
  padding:40px 60px;
  display:flex;
  flex-direction:column;
}

.kau-menu-close{
  position:absolute;
  top:30px;
  left:30px;
  background:none;
  border:0;
  color:#fff;
  font-size:32px;
  cursor:pointer;
}

.kau-menu-nav{margin-top:110px}

.kau-menu-list{list-style:none;padding:0;margin:0}
.kau-menu-list li{margin:0 0 26px}
.kau-menu-list a{
  font-size:38px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
}
.kau-menu-list a:hover{color:#1F6FFF}

.kau-menu-bottom{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}

.kau-menu-langs{
  display:flex;
  gap:18px;
  align-items:center;
}
.kau-langcode{
  color:#9aa3ad;
  font-weight:800;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.02em;
}
.kau-langcode.is-active{
  color:#1F6FFF; /* активный как у MNU */
}
.kau-langcode:hover{
  color:#fff;
}


/* Mega menu (как на скрине) */
.kau-mega{
  position:fixed; inset:0;
  background:#233a60; /* сине-ночной */
  color:#fff;
  z-index:9999;
  transform:translateY(-100%);
  transition:transform .45s cubic-bezier(.77,0,.18,1);
}
.kau-mega.is-open{transform:translateY(0)}
.kau-mega__inner{height:100%; position:relative; padding:28px 36px}

.kau-mega__close{
  position:absolute; left:28px; top:20px;
  border:0; background:none; color:#fff;
  font-size:34px; cursor:pointer; opacity:.9;
}

.kau-mega__top{height:56px}
.kau-mega__topright{
  position:absolute; right:32px; top:18px;
  display:flex; align-items:center; gap:16px;
}
.kau-mega__lang{display:flex; align-items:center; gap:8px; opacity:.95}
.kau-mega__langcode{font-weight:700; letter-spacing:.04em}
.kau-mega__chev{opacity:.8}

.kau-mega__grid{
  height:calc(100% - 56px);
  display:grid;
  grid-template-columns: 360px 1fr 520px;
  gap:0;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:18px;
}

/* vertical separators like figma */
.kau-mega__left, .kau-mega__mid{
  border-right:0px solid rgba(255,255,255,.08);
}

.kau-mega__left{padding:42px 26px}
.kau-mega__mid{padding:42px 36px}
.kau-mega__right{display:flex; align-items:center; justify-content:center}

.kau-mega-main{list-style:none; margin:0; padding:0}
.kau-mega-mainitem{margin:0 0 26px}
.kau-mega-mainlink{
  font-size:22px; font-weight:700;
  color:#fff; text-decoration:none;
  display:flex; align-items:center; gap:14px;
  opacity:.95;
}
.kau-mega-mainlink.is-active{
  color:#6ea0ff;
  position:relative;
}
.kau-mega-mainlink.is-active::before{
  content:"";
  width:4px; height:24px;
  background:#6ea0ff;
  border-radius:999px;
  display:inline-block;
}

/* middle list */
.kau-mega__midtitle{font-size:18px; font-weight:700; opacity:.65; margin-bottom:18px}
.kau-mega__midlist a{
  display:block;
  color:#cfe0ff;
  text-decoration:none;
  font-size:18px;
  margin:0 0 16px;
  opacity:.7;
}
.kau-mega__midlist a:hover{opacity:1}

/* right card */
.kau-mega-card{
  width:360px;
  height:520px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:22px;
}
.kau-mega-card__logo img{min-width:170px; height:auto}
.kau-mega-card__cap{font-size:12px; letter-spacing:.12em; opacity:.8}

.kau-mega-card__socials{display:flex; gap:12px}
.kau-mega-soc{
  width:34px; height:34px;
  border-radius:999px;
  background:#2c60ff;
  display:grid; place-items:center;
  text-decoration:none;
}
.kau-mega-soc__dot{
  width:8px; height:8px;
  background:#fff; border-radius:999px; opacity:.95;
}


/* В ЛЕВОЙ колонке скрываем вложенные UL, чтобы не было буллетов */
.kau-mega__left ul.kau-mega-sub,
.kau-mega__left ul.sub-menu {
  display: none !important;
}

.kau-mega-empty{
  opacity:.45;
  font-size:16px;
}

.kau-mega__midtitle{
  opacity:.45;
  font-weight:600;
}

.kau-mega-midlink{
  display:block;
  text-decoration:none;
  color:rgba(255,255,255,.45);
  font-size:18px;
  margin:0 0 14px;
  transition:color .2s ease, opacity .2s ease;
}

.kau-mega-midlink:hover{
  color:#6ea0ff;
  opacity:1;
}

/* PAGE: Mission & Vision */
.kau-pagehero{
  position:relative;
  min-height:430px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  padding:140px 0 78px;
}

.kau-pagehero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(16,34,64,.45) 0%, rgba(16,34,64,.7) 100%);
}

.kau-pagehero__content{
  position:relative;
  z-index:2;
}

.kau-pagehero__badge{
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background:#2f5cff;
  color:#fff;
  font-size:14px;
  font-weight:700;
  margin-bottom:16px;
}

.kau-pagehero__title{
  margin-bottom:30px;
	margin-top:0;
  color:#fff;
  font-size:50px;
  line-height:1.25;
  font-weight:700;
	font-family: "TT Hoves";
}



.kau-mission-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-28px;
}

.kau-mission-section__shell{
  width:100%;

  background:#fff;
  border-radius:36px 36px 0 0;
  padding:44px 0 60px;
  overflow:hidden;
}

.kau-mission-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:10px;
  position:relative;
  z-index:3;
}

.kau-info-card{
  background:#F6F8FF;
  border-radius:30px;
  padding:30px 32px;

}

.kau-info-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:40px;
}

.kau-info-card__head h2{
  margin:0;
  font-size:30px;
  line-height:1;
  font-weight:700;
  color:#121826;
}

.kau-info-card__icon{
  color:#6f89d9;
  display:inline-flex;
}

.kau-info-card__body p{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.65;
  color:#3a4458;
}

.kau-info-card__body p:last-child{
  margin-bottom:0;
}

.kau-values{
  margin-top:48px;
}

.kau-values__title{
  margin:0 0 8px;
  font-size:45px;
  line-height:1;
  font-weight:600;
  color:#1A150A;
	font-family: "Verdana";
}

.kau-values__subtitle{
  margin:0 0 28px;
  color:#495164;
  font-size:16px;
}

.kau-values__grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:16px;
}

.kau-value-card{
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.kau-value-card__icon{
  color:#6f89d9;
  display:inline-flex;
  margin-bottom:24px;
}

.kau-value-card__icon img{
  max-width:24px;
  height:auto;
  display:block;
}

.kau-value-card h3{
  margin:0;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#20283a;
}

@media (max-width: 1200px){
  .kau-values__grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width: 900px){
  .kau-pagehero{
    min-height:340px;
    padding:120px 0 36px;
  }

  .kau-pagehero__title{
    font-size:42px;
  }

  .kau-mission-grid{
    grid-template-columns:1fr;
  }

  .kau-values__grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .kau-pagehero__title{
    font-size:34px;
  }

  .kau-values__title{
    font-size:34px;
  }

  .kau-values__grid{
    grid-template-columns:1fr;
  }

  .kau-info-card,
  .kau-value-card{
    padding:20px;
  }
	
	.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
		width:100% !important;
	}
}


.kau-value-card{
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kau-value-card.is-link{
  text-decoration:none;
  color:inherit;
}

.kau-value-card.is-link:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(20,35,80,.10);
  background:#e8edf8;
}

.kau-value-card__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.55;
  color:#4b5568;
}

.kau-values-slider{
  position:relative;
  overflow:hidden;
}

.kau-values-slider .swiper-wrapper{
  align-items:stretch;
}

.kau-values-slider .swiper-slide{
  height:auto;
}

.kau-value-card{
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kau-value-card.is-link:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(20,35,80,.10);
  background:#e8edf8;
}

.kau-value-card__icon{
  color:#6f89d9;
  display:inline-flex;
  margin-bottom:24px;
}

.kau-value-card__icon img{
  max-width:24px;
  height:auto;
  display:block;
}

.kau-value-card h3{
  margin:0;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#20283a;
}

.kau-value-card__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.55;
  color:#4b5568;
}

.kau-values-slider__nav{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:18px;
}

.kau-values-slider__prev,
.kau-values-slider__next{
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  cursor:pointer;
  background:#2f5cff;
  color:#fff;
  font-size:22px;
  line-height:1;
  display:grid;
  place-items:center;
}

.kau-values-slider__prev.swiper-button-disabled,
.kau-values-slider__next.swiper-button-disabled{
  opacity:.45;
  cursor:default;
}

.kau-values-slider{
  position:relative;
  overflow:hidden;
}

.kau-values-slider .swiper-wrapper{
  align-items:stretch;
}

.kau-values-slider .swiper-slide{
  height:auto;
}

.kau-value-card{
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kau-value-card.is-link:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(20,35,80,.10);
  background:#e8edf8;
}

.kau-value-card__icon{
  color:#6f89d9;
  display:inline-flex;
  margin-bottom:24px;
}

.kau-value-card__icon img{
  max-width:24px;
  height:auto;
  display:block;
}

.kau-value-card__icon svg{
  width:30px;
  height:30px;
  display:block;
}

.kau-value-card h3{
  margin:0;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#20283a;
}

.kau-value-card__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.55;
  color:#4b5568;
}

.kau-values-slider__nav{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:18px;
}

.kau-values-slider__prev,
.kau-values-slider__next{
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  cursor:pointer;
  background:#2f5cff;
  color:#fff;
  font-size:22px;
  line-height:1;
  display:grid;
  place-items:center;
}

.kau-values-slider__prev.swiper-button-disabled,
.kau-values-slider__next.swiper-button-disabled{
  opacity:.45;
  cursor:default;
}

.kau-values-slider{
  position:relative;
  overflow:hidden;
}

.kau-values-slider .swiper-wrapper{
  align-items:stretch;
}

.kau-values-slider .swiper-slide{
  height:auto;
  display:flex;
}

.kau-value-card{
  width:100%;
  height:100%;
  min-height:190px;
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kau-value-card.is-link:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(20,35,80,.10);
  background:#e8edf8;
}

.kau-value-card__icon{
  color:#6f89d9;
  display:inline-flex;
  margin-bottom:24px;
}

.kau-value-card__icon img{
  max-width:24px;
  height:auto;
  display:block;
}

.kau-value-card__icon svg{
  width:24px;
  height:24px;
  display:block;
}

.kau-value-card h3{
  margin:0;
  font-size:18px;
  line-height:1.25;
  font-weight:700;
  color:#20283a;
}

.kau-value-card__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.5;
  color:#4b5568;
}

/* Центрированная навигация */
.kau-values-slider__controls{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.kau-values-slider__prev,
.kau-values-slider__next{
  width:36px;
  height:36px;
  border:0;
  background:transparent;
  color:#4c6fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  padding:0;
  font-size:28px;
  line-height:1;
}

.kau-values-slider__prev.swiper-button-disabled,
.kau-values-slider__next.swiper-button-disabled{
  opacity:.35;
  cursor:default;
}

.kau-values-slider__pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-width:90px;
}

.kau-values-bullet{
  width:12px;
  height:12px;
  border-radius:999px;
  border:0;
  background:#d8ddea;
  padding:0;
  cursor:pointer;
}

.kau-values-bullet.is-active{
  background:#4c6fff;
}

.kau-values-slider{
  position:relative;
  overflow:hidden;
}

.kau-values-slider .swiper-wrapper{
  align-items:stretch;
}

.kau-values-slider .swiper-slide{
  height:auto;
  display:flex;
}

.kau-value-card{
  width:100%;
  height:100%;
  min-height:190px;
  background:#eef1f8;
  border-radius:18px;
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.kau-value-card.is-link:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(20,35,80,.10);
  background:#e8edf8;
}

.kau-value-card__icon{
  color:#6f89d9;
  display:inline-flex;
  margin-bottom:24px;
}

.kau-value-card__icon img{
  max-width:24px;
  height:auto;
  display:block;
}

.kau-value-card__icon svg{
  width:30px;
  height:30px;
  display:block;
}

.kau-value-card h3{
  margin:0;
  font-size:18px;
  line-height:1.25;
  font-weight:700;
  color:#20283a;
}

.kau-value-card__desc{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.5;
  color:#4b5568;
}

.kau-values-slider__controls{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.kau-values-slider__prev,
.kau-values-slider__next{
  width:36px;
  height:36px;
  border:0;
  background:transparent;
  color:#4c6fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  padding:0;
  font-size:28px;
  line-height:1;
}

.kau-values-slider__prev.swiper-button-disabled,
.kau-values-slider__next.swiper-button-disabled{
  opacity:.35;
  cursor:default;
}

.kau-values-slider__pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  min-width:90px;
}

.kau-values-bullet{
  width:12px;
  height:12px;
  border-radius:999px;
  border:0;
  background:#d8ddea;
  padding:0;
  cursor:pointer;
}

.kau-values-bullet.is-active{
  background:#4c6fff;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
	width:30%;
}


.kau-info-card__icon{
  color:#6f89d9;
  display:inline-flex;
  flex:0 0 auto;
  margin-left:16px;
}

.kau-info-card__icon svg{
  width:30px;
  height:30px;
  display:block;
}

.kau-info-card__icon img{
  width:26px;
  height:26px;
  object-fit:contain;
  display:block;
}


/* HISTORY PAGE */
.kau-history-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-history-section__shell{
  width:100%;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:34px 0 72px;
  overflow:hidden;
}

.kau-history-intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
	background: #F6F8FF;
	border-radius: 30px;
}

.kau-history-intro-card{
  background:#F6F8FF;
  border-radius:30px;
  padding:30px 34px;
}

.kau-history-intro-card p{
  margin:0 0 16px;
  font-size:18px;
  line-height:1.65;
  color:#1A150A;
  font-family:"TT Hoves", sans-serif;
  font-weight:400;
}

.kau-history-intro-card p:last-child{
  margin-bottom:0;
}

.kau-history-years{
  margin:14px 0 72px;
  overflow:hidden;
  background:#F6F8FF;
  border-radius:30px;
}

.kau-history-years .swiper-wrapper{
  align-items:center;
  padding:24px 30px;
}

.kau-history-year-pill{
  width:auto !important;
  border:0;
  background:#fff;
  color:#3259FB;
  border-radius:999px;
  padding:18px 26px;
  font-weight:500;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  transition:.6s ease;
  box-shadow:0 1px 0 rgba(15,23,42,.04);
  font-family:"TT Hoves", sans-serif;
}

.kau-history-year-pill:hover {
	background:#2753ff;
  color:#fff;
  box-shadow:0 0 1px 5px rgba(39,83,255,.22);
}

.kau-history-year-pill.is-past,
.kau-history-year-pill.is-active{
  background:#2753ff;
  color:#fff;
  box-shadow:0 0 1px 5px rgba(39,83,255,.22);
}



.kau-history-title{
  margin:0 0 74px;
  text-align:center;
  font-size:50px;
  line-height:1;
  font-weight:700;
  color:#1A150A;
	font-family:"TT Hoves", sans-serif;
}

/* TIMELINE */
.kau-history-timeline{
  position:relative;
  margin-top:10px;
}

/* светлый трек */
.kau-history-timeline::before{
  content:"";
  position:absolute;
  left:71px;
  top:0;
  bottom:0;
  width:4px;
  background:#DCE5FF;
  border-radius:999px;
  z-index:0;
}

/* синий прогресс */
.kau-history-timeline__progress{
  position:absolute;
  left:71px;
  top:0;
  width:4px;
  height:0;
  background:#2753ff;
  border-radius:999px;
  z-index:1;
  transition:height .7s ease;
}

.kau-history-row{
  position:relative;
  display:grid;
  grid-template-columns:142px 1fr;
  gap:28px;
  padding-bottom:30px;
}

.kau-history-row:last-child{
  padding-bottom:0;
}

.kau-history-row__year{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.kau-history-row__year span{
  min-width:72px;
  height:40px;
  padding:0 18px;
  border-radius:999px;
  background:#fff;
  color:#2753ff;
  font-size:18px;
  font-weight:500;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid #2753ff;
  box-shadow:0 2px 10px rgba(15,23,42,.06);
  font-family:"TT Hoves", Arial, sans-serif;
  transition:background .6s ease, color .6s ease, border-color .6s ease, box-shadow .6s ease;
}

/* пройденные и активный */
.kau-history-row.is-past .kau-history-row__year span,
.kau-history-row.is-active .kau-history-row__year span{
  background:#2753ff;
  color:#fff;
  border-color:#2753ff;
  box-shadow:0 0 1px 5px rgba(39,83,255,.16);
}

.kau-history-row__body{
  padding-bottom:22px;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.kau-history-row:last-child .kau-history-row__body{
  border-bottom:0;
  padding-bottom:0;
}

.kau-history-row__title{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#121826;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-history-row__text p{
  margin:0 0 14px;
  font-size:20px;
  line-height:1.65;
  color:#1A150A;
  font-family:"TT Hoves", sans-serif;
	font-weight:400;
}

.kau-history-row__text p:last-child{
  margin-bottom:0;
}

.kau-history-row__gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:16px;
  max-width:760px;
}

.kau-history-row__img img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
  border-radius:18px;
}

@media (max-width: 980px){
  .kau-history-intro-grid{
    grid-template-columns:1fr;
  }

  .kau-history-title{
    font-size:36px;
  }

  .kau-history-row{
    grid-template-columns:120px 1fr;
    gap:22px;
  }

  .kau-history-timeline::before,
  .kau-history-timeline__progress{
    left:59px;
  }

  .kau-history-row__gallery{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .kau-history-section{
    margin-top:-18px;
  }

  .kau-history-section__shell{
    border-radius:22px 22px 0 0;
    padding:24px 0 48px;
  }

  .kau-history-intro-card{
    border-radius:22px;
    padding:20px;
  }

  .kau-history-intro-card p{
    font-size:15px;
  }

  .kau-history-years{
    border-radius:22px;
  }

  .kau-history-years .swiper-wrapper{
    padding:16px 18px;
  }

  .kau-history-year-pill{
    padding:14px 18px;
    font-size:14px;
  }

  .kau-history-title{
    font-size:32px;
    margin-bottom:26px;
  }

  .kau-history-timeline::before,
  .kau-history-timeline__progress{
    left:27px;
  }

  .kau-history-row{
    grid-template-columns:56px 1fr;
    gap:14px;
    padding-bottom:22px;
  }

  .kau-history-row__year span{
    min-width:54px;
    height:34px;
    font-size:12px;
    padding:0 10px;
    border-width:2px;
  }

  .kau-history-row__gallery{
    grid-template-columns:1fr;
  }

  .kau-history-row__img img{
    height:180px;
  }
}



/* Версия для слабовидящих */

/* =========================================
   Версия для слабовидящих / автоматический dark mode
========================================= */

html.kau-a11y,
html.kau-a11y body,
body.kau-a11y{
  background:#0b1220;
  color:#f3f7ff;
  line-height:1.7;
}

/* Плавность */
html.kau-a11y body,
html.kau-a11y .kau-header,
html.kau-a11y .kau-news,
html.kau-a11y .kau-prog,
html.kau-a11y .kau-lead,
html.kau-a11y .kau-footer,
html.kau-a11y .kau-card,
html.kau-a11y .kau-value-card,
html.kau-a11y .kau-info-card,
html.kau-a11y .kau-history-intro-card,
html.kau-a11y .kau-history-years,
html.kau-a11y .kau-history-section__shell,
html.kau-a11y .kau-mission-section__shell,
html.kau-a11y .kau-modal__dialog,
html.kau-a11y .kau-search__form,
html.kau-a11y .kau-langdd,
html.kau-a11y .kau-input,
html.kau-a11y .kau-textarea,
html.kau-a11y .kau-inp,
html.kau-a11y .kau-ta,
html.kau-a11y .kau-search__input{
  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

/* Ссылки */
html.kau-a11y a{
  color:#8db7ff;
}
html.kau-a11y a:hover{
  color:#b7d1ff;
}

/* Основные секции */
html.kau-a11y .kau-news,
html.kau-a11y .kau-prog,
html.kau-a11y .kau-lead,
html.kau-a11y .kau-history-section,
html.kau-a11y .kau-mission-section{
  background:#0b1220 !important;
  color:#f3f7ff !important;
}

/* Контейнеры */
html.kau-a11y .kau-history-section__shell,
html.kau-a11y .kau-mission-section__shell,
html.kau-a11y .kau-modal__dialog{
  background:#10192b !important;
  color:#f3f7ff !important;
}

/* Карточки и светлые блоки */
html.kau-a11y .kau-history-intro-card,
html.kau-a11y .kau-info-card,
html.kau-a11y .kau-value-card,
html.kau-a11y .kau-card,
html.kau-a11y .kau-history-years,
html.kau-a11y .kau-history-intro-grid,
html.kau-a11y .kau-lead__card,
html.kau-a11y .kau-empty,
html.kau-a11y .kau-card__body{
  background:#162238 !important;
  color:#f3f7ff !important;
  border-color:rgba(141,183,255,.22) !important;
  box-shadow:none !important;
}

/* Картинка карточки */
html.kau-a11y .kau-card__img{
  background:#0f1728 !important;
}
html.kau-a11y .kau-card__fade{
  background:linear-gradient(180deg, rgba(16,25,43,0) 0%, rgba(16,25,43,.92) 78%, rgba(16,25,43,1) 100%) !important;
}

/* Заголовки */
html.kau-a11y .kau-h2,
html.kau-a11y .kau-lead__h,
html.kau-a11y .kau-values__title,
html.kau-a11y .kau-pagehero__title,
html.kau-a11y .kau-history-title,
html.kau-a11y .kau-info-card__head h2,
html.kau-a11y .kau-card__title,
html.kau-a11y .kau-newsbig__title,
html.kau-a11y .kau-newscard__title,
html.kau-a11y .kau-history-row__title,
html.kau-a11y .kau-value-card h3,
html.kau-a11y .kau-prog__group-title{
  color:#ffffff !important;
}

/* Вторичный текст */
html.kau-a11y .kau-info-card__body p,
html.kau-a11y .kau-history-intro-card p,
html.kau-a11y .kau-history-row__text p,
html.kau-a11y .kau-value-card__desc,
html.kau-a11y .kau-newscard__excerpt,
html.kau-a11y .kau-card__meta,
html.kau-a11y .kau-lead__p,
html.kau-a11y .kau-values__subtitle,
html.kau-a11y .kau-note,
html.kau-a11y .kau-footer__contacts,
html.kau-a11y .kau-footermenu a,
html.kau-a11y .kau-footer__bottom,
html.kau-a11y .kau-newscard__date,
html.kau-a11y .kau-mega__midtitle{
  color:#c8d7f0 !important;
}

/* Увеличим читаемость длинных текстов */
html.kau-a11y .kau-history-row__text p,
html.kau-a11y .kau-history-intro-card p,
html.kau-a11y .kau-info-card__body p{
  font-size:20px !important;
  line-height:1.75 !important;
}

/* Шапка */
html.kau-a11y .kau-header{
  background:rgba(7,12,22,.92) !important;
  backdrop-filter:blur(10px);
}
html.kau-a11y .kau-header.is-scrolled{
  background:rgba(7,12,22,.96) !important;
  box-shadow:0 8px 30px rgba(0,0,0,.35);
}

/* Кнопка переключения Для Слабовидящих */
html.kau-a11y .kau-access{
  background:#1d2a44 !important;
  color:#fff !important;
  border:1px solid rgba(141,183,255,.28) !important;
  box-shadow:none !important;
}

html.kau-a11y .kau-access:hover{
  background:#243454 !important;
}

html.kau-a11y .kau-access.is-active{
  background:#2d6cff !important;
  border-color:#8db7ff !important;
  color:#fff !important;
  box-shadow:0 0 0 4px rgba(76,135,255,.18) !important;
}

/* Языки и иконки */
html.kau-a11y .kau-lang,
html.kau-a11y .kau-iconbtn,
html.kau-a11y .kau-search__close,
html.kau-a11y .kau-langitem{
  color:#fff !important;
}
html.kau-a11y .kau-langdd,
html.kau-a11y .kau-search__form{
  background:#10192b !important;
  border:1px solid rgba(141,183,255,.18);
}

/* Поля форм */
html.kau-a11y .kau-input,
html.kau-a11y .kau-textarea,
html.kau-a11y .kau-inp,
html.kau-a11y .kau-ta,
html.kau-a11y .kau-search__input{
  background:#0b1220 !important;
  color:#fff !important;
  border:1px solid rgba(141,183,255,.22) !important;
}
html.kau-a11y .kau-input::placeholder,
html.kau-a11y .kau-textarea::placeholder,
html.kau-a11y .kau-inp::placeholder,
html.kau-a11y .kau-ta::placeholder,
html.kau-a11y .kau-search__input::placeholder{
  color:#9fb4d8 !important;
}

/* Кнопки */
html.kau-a11y .kau-btn--pill,
html.kau-a11y .kau-send,
html.kau-a11y .kau-search__btn,
html.kau-a11y .kau-btn--primary{
  background:#2d6cff !important;
  color:#fff !important;
}
html.kau-a11y .kau-btn__icon,
html.kau-a11y .kau-send__ic,
html.kau-a11y .kau-arrow{
  background:#fff !important;
  color:#2d6cff !important;
}

/* Табуляция */
html.kau-a11y .kau-tabs{
  background:#162238 !important;
}
html.kau-a11y .kau-tab{
  color:#dbe8ff !important;
}
html.kau-a11y .kau-tab.is-active{
  background:#2d6cff !important;
  color:#fff !important;
}

/* Новости */
html.kau-a11y .kau-newsbig{
  background:#10192b !important;
}
html.kau-a11y .kau-newsbig__content,
html.kau-a11y .kau-date{
  color:#fff !important;
}
html.kau-a11y .kau-newscard{
  background:transparent !important;
}
html.kau-a11y .kau-more,
html.kau-a11y .kau-link{
  color:#8db7ff !important;
}

/* История */
html.kau-a11y .kau-history-title{
  color:#fff !important;
}
html.kau-a11y .kau-history-timeline::before{
  background:#24344f !important;
}
html.kau-a11y .kau-history-timeline__progress{
  background:#4c87ff !important;
}
html.kau-a11y .kau-history-row__body{
  border-bottom:1px solid rgba(255,255,255,.08) !important;
}
html.kau-a11y .kau-history-year-pill{
  background:#162238 !important;
  color:#aecdff !important;
  box-shadow:none !important;
}
html.kau-a11y .kau-history-year-pill:hover,
html.kau-a11y .kau-history-year-pill.is-past,
html.kau-a11y .kau-history-year-pill.is-active{
  background:#2d6cff !important;
  color:#fff !important;
  box-shadow:0 0 0 4px rgba(76,135,255,.18) !important;
}
html.kau-a11y .kau-history-row__year span{
  background:#162238 !important;
  color:#aecdff !important;
  border-color:#4c87ff !important;
}
html.kau-a11y .kau-history-row.is-past .kau-history-row__year span,
html.kau-a11y .kau-history-row.is-active .kau-history-row__year span{
  background:#2d6cff !important;
  color:#fff !important;
}

/* Мега меню */
html.kau-a11y .kau-mega{
  background:#08101d !important;
}
html.kau-a11y .kau-mega-card{
  background:#10192b !important;
  border-color:rgba(141,183,255,.18) !important;
}
html.kau-a11y .kau-mega__midlist a,
html.kau-a11y .kau-mega-midlink{
  color:#c8d7f0 !important;
}
html.kau-a11y .kau-mega-mainlink.is-active,
html.kau-a11y .kau-mega-midlink:hover{
  color:#8db7ff !important;
}

/* Футер */
html.kau-a11y .kau-footer{
  background:#08101d !important;
  color:#f3f7ff !important;
}
html.kau-a11y .kau-socials a,
html.kau-a11y .kau-mega-soc{
  background:#2d6cff !important;
}

/* Фокус клавиатурой */
html.kau-a11y a:focus-visible,
html.kau-a11y button:focus-visible,
html.kau-a11y input:focus-visible,
html.kau-a11y textarea:focus-visible{
  outline:2px solid #8db7ff;
  outline-offset:3px;
}



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

.kau-hero-slider{
  position:relative;
  padding:0 0 34px;
  background:#fff;
  z-index:2;
}

.kau-hero-swiper{
  overflow:hidden;
}

.kau-hero-card{
  background:var(--kau-hero-bg, #f3f4f6);
  border-radius:0 0 28px 28px;
  overflow:hidden;
  position:relative;
}

.kau-hero-card__inner{
  min-height:620px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(380px, 540px);
  gap:24px;
  align-items:end;
  padding:54px 34px 0px;
}

.kau-hero-card__content{
  align-self:center;
  max-width:760px;
  padding-right:10px;
}

.kau-hero-card__title{
  margin:0 0 22px;
  color:#004b97;
  font-size:clamp(38px, 5vw, 74px);
  line-height:0.95;
  font-weight:800;
  letter-spacing:-0.02em;
  text-transform:uppercase;
}

.kau-hero-card__text{
  margin:0 0 26px;
  max-width:760px;
  color:#305c8b;
  font-size:20px;
  line-height:1.65;
}

.kau-hero-card__text p{
  margin:0 0 14px;
}

.kau-hero-card__text p:last-child{
  margin-bottom:0;
}

.kau-hero-card__actions{
  margin-bottom:34px;
}

.kau-hero-card .kau-btn{
  background:#fff;
  border-color:#f7931d;
  color:#1A150A;
}

.kau-hero-card .kau-btn:hover{
  background:#ea860d;
  border-color:#ea860d;
	color:#fff;
}

.kau-hero-card__stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  max-width:900px;
}

.kau-hero-stat{
  display:grid;
  grid-template-columns:40px 1fr;
  gap:14px;
  align-items:start;
}

.kau-hero-stat__icon{
  color:#7c858f;
  line-height:1;
  margin-top:4px;
}

.kau-hero-stat__value{
  font-size:26px;
  line-height:1;
  font-weight:800;
  color:#004b97;
  margin-bottom:8px;
}

.kau-hero-stat__label{
  font-size:16px;
  line-height:1.35;
  color:#305c8b;
}

.kau-hero-card__media{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  height:100%;
}

.kau-hero-card__media img{
  display:block;
  width:auto;
  max-width:100%;
  max-height:600px;
  object-fit:contain;
}

.kau-hero-slider__pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:18px;
}

.kau-hero-slider__pagination .swiper-pagination-bullet{
  width:13px;
  height:13px;
  margin:0 !important;
  background:#cfd4da;
  opacity:1;
  transition:all .25s ease;
}

.kau-hero-slider__pagination .swiper-pagination-bullet-active{
  background:#f7931d;
  transform:scale(1.08);
}

@media (max-width: 1200px){
  .kau-hero-card__inner{
    min-height:560px;
    grid-template-columns:minmax(0, 1fr) minmax(300px, 430px);
  }

  .kau-hero-card__text{
    font-size:18px;
  }
}

@media (max-width: 991px){
  .kau-hero-card__inner{
    min-height:auto;
    grid-template-columns:1fr;
    gap:12px;
    padding:34px 22px 18px;
  }

  .kau-hero-card__content{
    max-width:none;
    padding-right:0;
  }

  .kau-hero-card__title{
    font-size:clamp(30px, 7.8vw, 52px);
    margin-bottom:16px;
  }

  .kau-hero-card__text{
    font-size:16px;
    margin-bottom:18px;
  }

  .kau-hero-card__actions{
    margin-bottom:22px;
  }

  .kau-hero-card__stats{
    grid-template-columns:1fr;
    gap:16px;
  }

  .kau-hero-card__media{
    justify-content:center;
  }

  .kau-hero-card__media img{
    max-height:420px;
  }
}

@media (max-width: 575px){
  .kau-hero-slider{
    padding-bottom:24px;
  }

  .kau-hero-card{
    border-radius:0 0 20px 20px;
  }

  .kau-hero-card__inner{
    padding:26px 16px 16px;
  }

  .kau-hero-card__title{
    font-size:clamp(26px, 9vw, 42px);
  }

  .kau-hero-stat{
    grid-template-columns:34px 1fr;
    gap:12px;
  }

  .kau-hero-stat__value{
    font-size:22px;
  }

  .kau-hero-stat__label{
    font-size:15px;
  }

  .kau-hero-slider__pagination .swiper-pagination-bullet{
    width:11px;
    height:11px;
  }
}


/* ACADEMIC STAFF PAGE */
.kau-staff-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-staff-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:34px 0 72px;
  overflow:hidden;
}

.kau-staff-intro{
  background:#F6F8FF;
  border-radius:24px;
  padding:22px 30px;
  margin-bottom:28px;
}

.kau-staff-intro p{
  margin:0;
  font-size:20px;
  line-height:1.6;
  color:#1A150A;
  font-family:"TT Hoves", sans-serif;
  font-weight:400;
}

.kau-staff-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:34px 22px;
}

.kau-staff-card{
  display:flex;
  flex-direction:column;
}

.kau-staff-card__photo{
  background:#EDF3F8;
  border-radius:30px;
  overflow:hidden;
  aspect-ratio: 1 / 0;
  margin-bottom:16px;
}

.kau-staff-card__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-staff-card__photo-placeholder{
  width:100%;
  height:100%;
  background:#EDF3F8;
}

.kau-staff-card__content{
  text-align:center;
}

.kau-staff-card__name{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.2;
  font-weight:500;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-staff-card__position{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.4;
  font-weight:500;
  color:#3259FB;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-staff-card__facts{
  margin:0;
  padding:0;
  list-style:none;
  text-align:left;
}

.kau-staff-card__facts li{
  position:relative;
  margin:0 0 8px;
  padding-left:14px;
  font-size:12px;
  line-height:1.55;
  color:#6B7280;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-staff-card__facts li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#6B7280;
}

.kau-staff-card__facts li:last-child{
  margin-bottom:0;
}

@media (max-width: 1200px){
  .kau-staff-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .kau-staff-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .kau-staff-section{
    margin-top:-18px;
  }

  .kau-staff-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:24px 0 48px;
  }

  .kau-staff-intro{
    border-radius:18px;
    padding:18px 18px;
    margin-bottom:22px;
  }

  .kau-staff-intro p{
    font-size:15px;
  }

  .kau-staff-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .kau-staff-card__name{
    font-size:18px;
  }
}

.kau-staff-card__details-wrap{
  margin-top:6px;
}

.kau-staff-card__details{
  position:relative;
  overflow:hidden;
}

.kau-staff-card__details.is-collapsed{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp:2;
  overflow:hidden;
}

.kau-staff-card__details.is-expanded{
  display:block;
}

.kau-staff-card__text p{
  margin:0 0 10px;
  font-size:12px;
  line-height:1.55;
  color:#6B7280;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-staff-card__text p:last-child{
  margin-bottom:10px;
}

.kau-staff-card__facts{
  margin:0;
  padding:0;
  list-style:none;
  text-align:left;
}

.kau-staff-card__facts li{
  position:relative;
  margin:0 0 8px;
  padding-left:14px;
  font-size:12px;
  line-height:1.55;
  color:#6B7280;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-staff-card__facts li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#6B7280;
}

.kau-staff-card__facts li:last-child{
  margin-bottom:0;
}

.kau-staff-card__more{
  margin-top:8px;
  padding:0;
  border:0;
  background:transparent;
  color:#3259FB;
  font-size:12px;
  line-height:1.3;
  font-weight:500;
  cursor:pointer;
  font-family:"TT Hoves", Arial, sans-serif;
}


/* INTERNATIONAL COOPERATION PAGE */
.kau-ic-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-ic-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:34px 0 72px;
  overflow:hidden;
}

.kau-ic-topbox{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  background:#F6F8FF;
  border-radius:24px;
  padding:24px 28px;
  margin-bottom:40px;
}

.kau-ic-topbox__text p{
  margin:0;
  font-size:18px;
  line-height:1.6;

  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ic-topbox__action{
  display:flex;
  justify-content:flex-end;
}

.kau-ic-btn{
  min-width:260px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:18px 24px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  text-decoration:none;
  font-family:"TT Hoves", Arial, sans-serif;
  font-size:18px;
  font-weight:500;
}

.kau-ic-btn__icon{
  width:24px;
  height:24px;
  border-radius:999px;
  background:#fff;
  color:#3259FB;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  line-height:1;
}

.kau-ic-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:44px;
  align-items:start;
}

.kau-ic-sidebar__inner{
  background:#3259FB;
  border-radius:30px;
  padding:28px 26px;
}

.kau-ic-tab{
  display:block;
  width:100%;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.58);
  text-align:left;
  cursor:pointer;
  padding:10px 0;
  font-family:"TT Hoves", Arial, sans-serif;
  font-size:18px;
  line-height:1.3;
  font-weight:400;
  transition:.2s ease;
}

.kau-ic-tab.is-active{
  color:#fff;
  font-weight:500;
}

.kau-ic-panel{
  display:none;
}

.kau-ic-panel.is-active{
  display:block;
}

.kau-ic-panel__line{
  width:100%;
  height:3px;
  background:#3259FB;
  margin-bottom:28px;
}

.kau-ic-panel__title{
  margin:0 0 24px;
  font-size:40px;
  line-height:0.95;
  font-weight:700;
  color:#1A150A;
}

.kau-ic-panel__subtitle{
  margin:28px 0 16px;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ic-panel__text p{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.65;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ic-panel__text p:last-child{
  margin-bottom:0;
}

.kau-ic-iconlist{
  margin:0 0 18px;
  padding:0;
  list-style:none;
}

.kau-ic-iconlist li{
  position:relative;
  margin:0 0 14px;
  padding-left:34px;
  font-size:18px;
  line-height:1.6;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ic-iconlist li{
  position:relative;
  margin:0 0 14px;
  padding-left:38px;
  font-size:18px;
  line-height:1.6;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ic-iconlist li::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:24px;
  height:24px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:24px 24px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M7.75 12L10.58 14.83L16.25 9.16998' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-ic-iconlist li::after{
  content:none;
}

.kau-ic-iconlist li:last-child{
  margin-bottom:0;
}

@media (max-width: 1100px){
  .kau-ic-layout{
    grid-template-columns:1fr;
    gap:24px;
  }

  .kau-ic-sidebar__inner{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px 18px;
  }

  .kau-ic-panel__title{
    font-size:42px;
  }
}

@media (max-width: 640px){
  .kau-ic-section{
    margin-top:-18px;
  }

  .kau-ic-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:24px 0 48px;
  }

  .kau-ic-topbox{
    grid-template-columns:1fr;
    border-radius:18px;
    padding:18px;
  }

  .kau-ic-topbox__text p,
  .kau-ic-panel__text p,
  .kau-ic-iconlist li{
    font-size:15px;
  }

  .kau-ic-btn{
    min-width:100%;
    font-size:15px;
    padding:16px 18px;
  }

  .kau-ic-sidebar__inner{
    grid-template-columns:1fr;
    border-radius:20px;
    padding:18px;
  }

  .kau-ic-tab{
    font-size:15px;
  }

  .kau-ic-panel__title{
    font-size:32px;
  }

  .kau-ic-panel__subtitle{
    font-size:16px;
  }
}


.kau-ic-item-row{
  margin-bottom:12px;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
  background:#fff;
}

.kau-ic-item-editor{
  margin-bottom:10px;
}

.kau-ic-item-editor .wp-editor-wrap{
  width:100%;
}

.kau-ic-item-editor .wp-editor-container textarea{
  width:100%;
}

.kau-ic-iconlist__content p{
  margin:0 0 8px;
}

.kau-ic-iconlist__content p:last-child{
  margin-bottom:0;
}

.kau-ic-iconlist__content br{
  display:block;
}



/* DOCUMENTS GRID PAGE */
.kau-docs-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-docs-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:34px 0 72px;
  overflow:hidden;
}

.kau-docs-topbox{
  background:#F6F8FF;
  border-radius:24px;
  padding:24px 30px;
  margin-bottom:20px;
}

.kau-docs-topbox__text p{
  margin:0;
  font-size:18px;
  line-height:1.6;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-docs-search{
  position:relative;
  margin-bottom:28px;
}

.kau-docs-search__icon{
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.kau-docs-search__input{
  width:100%;
  height:64px;
  border:1px solid #D9DDE8;
  border-radius:999px;
  padding:0 22px 0 56px;
  font-size:18px;
  color:#1A150A;
  background:#fff;
  font-family:"TT Hoves", Arial, sans-serif;
  outline:none;
}

.kau-docs-search__input::placeholder{
  color:#A3A3A3;
}

.kau-docs-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}

.kau-docs-card{
  min-height:260px;
  background:#F6F8FF;
  border-radius:24px;
  padding:26px 24px 22px;
  display:flex;
  flex-direction:column;
}

.kau-docs-card__icon{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  margin-bottom:22px;
}

.kau-docs-card__title{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.35;
  font-weight:500;
  color:#3A3A3A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-docs-card__actions{
  margin-top:auto;
}

.kau-docs-card__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  min-height:44px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  color:#3A3A3A;
  text-decoration:none;
  font-size:16px;
  line-height:1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
  transition:.2s ease;
}

.kau-docs-card__btn:hover{
  background:#3259FB;
  color:#fff;
}

.kau-docs-empty{
  margin-top:24px;
  padding:18px 20px;
  border-radius:18px;
  background:#F6F8FF;
  color:#3A3A3A;
  font-size:16px;
  font-family:"TT Hoves", Arial, sans-serif;
}

@media (max-width: 1200px){
  .kau-docs-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .kau-docs-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .kau-docs-section{
    margin-top:-18px;
  }

  .kau-docs-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:24px 0 48px;
  }

  .kau-docs-topbox{
    border-radius:18px;
    padding:18px;
  }

  .kau-docs-topbox__text p{
    font-size:15px;
  }

  .kau-docs-search__input{
    height:54px;
    font-size:15px;
  }

  .kau-docs-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .kau-docs-card{
    min-height:220px;
    border-radius:20px;
    padding:20px;
  }

  .kau-docs-card__title{
    font-size:16px;
  }

  .kau-docs-card__btn{
    font-size:14px;
    min-height:40px;
  }
}


/* DOCUMENTS MODAL GRID PAGE */
.kau-docs-modal-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-docs-modal-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:34px 0 72px;
  overflow:hidden;
}

.kau-docs-modal-topbox{
  background:#F6F8FF;
  border-radius:24px;
  padding:24px 30px;
  margin-bottom:22px;
}

.kau-docs-modal-topbox__text p{
  margin:0;
  font-size:18px;
  line-height:1.6;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-docs-modal-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.kau-docs-modal-card{
  min-height:260px;
  background:#F6F8FF;
  border-radius:30px;
  padding:28px 30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}

.kau-docs-modal-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(15,23,42,.08);
}

.kau-docs-modal-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}

.kau-docs-modal-card__logo{
  color:#3259FB;
  font-size:22px;
  font-weight:700;
  line-height:1;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-docs-modal-card__icon{
  width:40px;
  height:40px;
  border:0;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:19px;
  line-height:1;
  cursor:pointer;
}

.kau-docs-modal-card__title{
  margin:0;
  color:#1A150A;
  font-size:33px;
  line-height:1.4;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  max-width:90%;
	text-transform: uppercase;
}

/* modal */
.kau-docs-modal[hidden]{
  display:none !important;
}

.kau-docs-modal{
  position:fixed;
  inset:0;
  z-index:9999;
}

.kau-docs-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(16,24,40,.45);
  backdrop-filter:blur(6px);
}

.kau-docs-modal__dialog{
  position:relative;
  z-index:2;
  width:min(760px, calc(100% - 32px));
  margin:8vh auto 0;
  background:#fff;
  border-radius:28px;
  padding:34px 34px 30px;
  box-shadow:0 24px 60px rgba(15,23,42,.18);
}

.kau-docs-modal__close{
  position:absolute;
  top:14px;
  right:16px;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:#F6F8FF;
  color:#1A150A;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.kau-docs-modal__title{
  margin:0 0 18px;
  font-size:34px;
  line-height:1.1;
  font-weight:700;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-docs-modal__text{
  color:#3A3A3A;
}

.kau-docs-modal__text p{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.65;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-docs-modal__text p:last-child{
  margin-bottom:0;
}

.kau-docs-modal__actions{
  margin-top:28px;
}

.kau-docs-modal__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  min-height:52px;
  padding:14px 22px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  text-decoration:none;
  font-size:16px;
  line-height:1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

@media (max-width: 900px){
  .kau-docs-modal-grid{
    grid-template-columns:1fr;
  }

  .kau-docs-modal-card__title{
    font-size:28px;
  }
}

@media (max-width: 640px){
  .kau-docs-modal-section{
    margin-top:-18px;
  }

  .kau-docs-modal-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:24px 0 48px;
  }

  .kau-docs-modal-topbox{
    border-radius:18px;
    padding:18px;
  }

  .kau-docs-modal-topbox__text p,
  .kau-docs-modal__text p{
    font-size:15px;
  }

  .kau-docs-modal-card{
    min-height:220px;
    border-radius:22px;
    padding:22px;
  }

  .kau-docs-modal-card__title{
    font-size:20px;
    max-width:100%;
  }

  .kau-docs-modal-card__icon{
    width:50px;
    height:50px;
    font-size:22px;
  }

  .kau-docs-modal__dialog{
    width:min(100% - 16px, calc(100% - 16px));
    margin:5vh auto 0;
    border-radius:22px;
    padding:24px 18px 20px;
  }

  .kau-docs-modal__title{
    font-size:24px;
  }

  .kau-docs-modal__btn{
    width:100%;
    min-width:100%;
  }
}


/* PRESIDENT BLOG PAGE */
.kau-president-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-president-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:30px 0 72px;
  overflow:hidden;
}

.kau-president-head{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:46px;
  align-items:start;
  margin-bottom:58px;
}

.kau-president-head__photo{
  border-radius:30px;
  overflow:hidden;
  background:#3259FB;
  aspect-ratio:1 / 1.15;
}

.kau-president-head__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-president-head__photo-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.35);
  font-size:28px;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-president-head__line{
  width:100%;
  height:3px;
  background:#3259FB;
  margin-bottom:28px;
}

.kau-president-head__fio{
  margin:0 0 10px;
  color:#1A150A;
  font-size:58px;
  line-height:.95;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-president-head__position{
  margin:0 0 28px;
  color:#3259FB;
  font-size:20px;
  line-height:1.3;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}


.kau-president-head__text p{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.7;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-president-head__text p:last-child{
  margin-bottom:0;
}

.kau-president-head__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:34px;
}

.kau-president-btn{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 22px;
  border-radius:999px;
  text-decoration:none;
  font-size:18px;
  line-height:1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
  cursor:pointer;
}

.kau-president-btn--light{
  background:#F6F8FF;
  color:#1A150A;
  border:0;
}

.kau-president-btn--outline{
  background:#fff;
  color:#1A150A;
  border:2px solid #1A150A;
}

.kau-president-btn__icon{
  width:28px;
  height:28px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  line-height:1;
}

.kau-president-posts__title{
	display:none;
  margin:0 0 26px;
  color:#1A150A;
  font-size:64px;
  line-height:.95;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-president-post-card__inner{
  display:block;
  background:#F6F8FF;
  border-radius:24px;
  overflow:hidden;
  text-decoration:none;
  height:100%;
}

.kau-president-post-card__image{
  height:280px;
  background:#fff;
}

.kau-president-post-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-president-post-card__placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#D5D5D5;
  font-size:26px;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-president-post-card__body{
  padding:18px 22px 22px;
}

.kau-president-post-card__date{
  margin-bottom:12px;
  color:#9A9A9A;
  font-size:14px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-president-post-card__title{
  margin:0 0 18px;
  color:#3A3A3A;
  font-size:18px;
  line-height:1.25;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-president-post-card__more{
  color:#3259FB;
  font-size:16px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-president-posts__nav{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}

.kau-president-posts__arrow{
  border:0;
  background:transparent;
  color:#3259FB;
  font-size:34px;
  line-height:1;
  cursor:pointer;
}

.kau-president-posts__pagination{
  display:flex;
  align-items:center;
  justify-content:center;
}

.kau-president-posts__pagination .swiper-pagination-bullet{
  width:10px;
  height:10px;
  margin:0 6px !important;
  background:#D9DDE8;
  opacity:1;
}

.kau-president-posts__pagination .swiper-pagination-bullet-active{
  background:#3259FB;
}

/* modal */
.kau-president-modal[hidden]{
  display:none !important;
}

.kau-president-modal{
  position:fixed;
  inset:0;
  z-index:9999;
}

.kau-president-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(16,24,40,.5);
}

.kau-president-modal__dialog{
  position:relative;
  z-index:2;
  width:min(760px, calc(100% - 32px));
  margin:8vh auto 0;
  background:#fff;
  border-radius:0;
  padding:42px 38px 34px;
}

.kau-president-modal__close{
  position:absolute;
  top:12px;
  right:14px;
  width:38px;
  height:38px;
  border:0;
  background:transparent;
  color:#1A150A;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.kau-president-modal__title{
  margin:0 0 24px;
  text-align:center;
  color:#3259FB;
  font-size:36px;
  line-height:.95;
  font-weight:600;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-president-modal__text{
  text-align:center;
  color:#1A150A;
}

.kau-president-modal__text p{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-president-modal__text strong{
  font-weight:700;
}

.kau-president-modal__actions{
  margin-top:26px;
  display:flex;
  justify-content:center;
}

.kau-president-modal__btn{
  min-width:380px;
  min-height:66px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border:2px solid #1A150A;
  border-radius:999px;
  background:#fff;
  color:#1A150A;
  text-decoration:none;
  font-size:18px;
  line-height:1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

@media (max-width: 1100px){
  .kau-president-head{
    grid-template-columns:280px 1fr;
    gap:28px;
  }

  .kau-president-head__fio,
  .kau-president-posts__title{
    font-size:46px;
  }
}

@media (max-width: 767px){
  .kau-president-section{
    margin-top:-18px;
  }

  .kau-president-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:24px 0 48px;
  }

  .kau-president-head{
    grid-template-columns:1fr;
    gap:24px;
    margin-bottom:38px;
  }

  .kau-president-head__photo{
    max-width:360px;
  }

  .kau-president-head__fio,
  .kau-president-posts__title{
    font-size:34px;
  }

  .kau-president-head__position{
    font-size:18px;
  }

  .kau-president-head__text p{
    font-size:15px;
  }

  .kau-president-btn{
    width:100%;
    font-size:15px;
  }

  .kau-president-post-card__image{
    height:220px;
  }

  .kau-president-modal__dialog{
    width:min(100% - 16px, calc(100% - 16px));
    margin:5vh auto 0;
    padding:28px 18px 22px;
  }

  .kau-president-modal__title{
    font-size:34px;
  }

  .kau-president-modal__text p{
    font-size:15px;
  }

  .kau-president-modal__btn{
    min-width:100%;
    width:100%;
    min-height:56px;
    font-size:15px;
  }
}


/* MBA PROGRAM PAGE */
.kau-mba-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-mba-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:28px 0 72px;
  overflow:hidden;
}

.kau-mba-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:34px;
}

.kau-mba-top__card{
  background:#F6F8FF;
  border-radius:24px;
  padding:28px 28px 26px;
}

.kau-mba-top__title{
  margin:0 0 20px;
  color:#1A150A;
  font-size:24px;
  line-height:1.1;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}



.kau-mba-top__text p{
  margin:0 0 16px;
  font-size:20px;
  line-height:1.6;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-mba-top__text p:last-child{
  margin-bottom:0;
}

.kau-mba-top__text a{
  color:#3259FB;
  text-decoration:none;
  font-weight:500;
}

.kau-mba-top__text--small p{
  font-size:20px;
  line-height:1.55;
}

.kau-mba-facts{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px 18px;
  background:#fff;
  border-radius:20px;
  padding:18px 20px;
  margin-bottom:20px;
}

.kau-mba-facts__label{
  margin-bottom:6px;
  color:#3259FB;
  font-size:15px;
  line-height:1.2;
  font-weight:600;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-mba-facts__value{
  color:#1A150A;
  font-size:16px;
  line-height:1.4;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-mba-content{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:30px;
  align-items:stretch;
}

.kau-mba-content__main{
  min-width:0;
	 align-self:start;
}

.kau-mba-block{
  border-top:3px solid #3259FB;
  padding-top:20px;
}



.kau-mba-block__title{
  margin:0 0 22px;
  color:#1A150A;
  font-size:40px;
  line-height:.95;
  font-weight:600;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-mba-block__content{
  color:#1A150A;
}

.kau-mba-block__content p{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.65;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-mba-block__content p:last-child{
  margin-bottom:0;
}

.kau-mba-block__content a{
  color:#3259FB;
  text-decoration:none;
  font-weight:500;
}

.kau-mba-block__lead{
  margin:22px 0 18px;
  color:#1A150A;
  font-size:18px;
  line-height:1.45;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-mba-block__checklist{
  list-style:none;
  padding:0;
  margin:0;
  max-width:900px;
}

.kau-mba-block__checklist li{
  position:relative;
  padding-left:28px;
  margin:0 0 14px;
  font-size:18px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
  color:#1A150A;
}

.kau-mba-block__checklist li:last-child{
  margin-bottom:0;
}

.kau-mba-block__checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:24px;
  height:24px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:24px 24px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M7.75 12L10.58 14.83L16.25 9.16998' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>"); 
}

.kau-mba-block__actions{
  margin-top:32px;
}

.kau-mba-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:12px 22px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  text-decoration:none;
  font-size:16px;
  line-height:1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-mba-tabs{
  position:relative;
}

.kau-mba-tabs__inner{
  position:sticky;
  top:110px;
  background:#3259FB;
  border-radius:24px;
  padding:36px 37px;
  display:flex;
  flex-direction:column;
  gap:18px;
	height: 100%;
}

.kau-mba-tabs__btn{
  border:0;
  background:transparent;
  color:rgba(255,255,255,.55);
  text-align:right;
  padding:0;
  cursor:pointer;
  font-size:16px;
  line-height:1.25;
  font-weight:400;
  font-family:"TT Hoves", Arial, sans-serif;
  transition:.2s ease;
}

.kau-mba-tabs__btn.is-active{
  color:#fff;
  font-weight:700;
}

@media (max-width: 1100px){
  .kau-mba-block__title{
    font-size:38px;
  }
}

@media (max-width: 900px){
  .kau-mba-top{
    grid-template-columns:1fr;
  }

  .kau-mba-content{
    grid-template-columns:1fr;
  }

  .kau-mba-tabs__inner{
    position:static;
  }
}

@media (max-width: 640px){
  .kau-mba-section{
    margin-top:-18px;
  }

  .kau-mba-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:22px 0 48px;
  }

  .kau-mba-top{
    gap:16px;
    margin-bottom:24px;
  }

  .kau-mba-top__card{
    border-radius:18px;
    padding:18px;
  }

  .kau-mba-top__title{
    font-size:18px;
    margin-bottom:16px;
  }

  .kau-mba-top__text p,
  .kau-mba-block__content p,
  .kau-mba-block__lead,
  .kau-mba-block__checklist li{
    font-size:15px;
  }

  .kau-mba-facts{
    grid-template-columns:1fr;
    border-radius:16px;
    padding:16px;
    margin-bottom:16px;
  }

  .kau-mba-facts__label,
  .kau-mba-facts__value{
    font-size:14px;
  }

  .kau-mba-block{
    padding-top:16px;
  }

  .kau-mba-block + .kau-mba-block{
    margin-top:34px;
  }

  .kau-mba-block__title{
    font-size:24px;
    margin-bottom:16px;
  }

  .kau-mba-tabs__inner{
    border-radius:18px;
    padding:18px;
    gap:12px;
  }

  .kau-mba-tabs__btn{
    font-size:14px;
  }

  .kau-mba-btn{
    width:100%;
  }
}


.kau-mba-block[hidden]{
  display:none !important;
}

.kau-mba-block__lead{
  margin:22px 0 18px;
  color:#1A150A;
  font-size:18px;
  line-height:1.45;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-mba-block__checklist{
  list-style:none;
  padding:0;
  margin:0;
  max-width:900px;
}

.kau-mba-block__checklist li{
  position:relative;
  padding-left:38px;
  margin:0 0 16px;
  min-height:24px;
  font-size:18px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
  color:#1A150A;
}

.kau-mba-block__checklist li:last-child{
  margin-bottom:0;
}

.kau-mba-block__checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:24px;
  height:24px;
  background-repeat:no-repeat;
  background-size:24px 24px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M7.75 12L10.58 14.83L16.25 9.17004' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

@media (max-width: 640px){
  .kau-mba-block__lead,
  .kau-mba-block__checklist li{
    font-size:15px;
  }

  .kau-mba-block__checklist li{
    padding-left:34px;
  }

  .kau-mba-block__checklist li::before{
    top:1px;
    width:22px;
    height:22px;
    background-size:22px 22px;
  }
}




/* ADMISSION TABS PAGE */
.kau-adm-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-adm-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:28px 0 72px;
  overflow:hidden;
}

.kau-adm-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:30px;
}

.kau-adm-top__card{
  background:#F6F8FF;
  border-radius:20px;
  padding:22px 20px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kau-adm-top__title{
  margin:0 0 14px;
  color:#1A150A;
  font-size:24px;
  line-height:1.1;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-adm-top__text p{
  margin:0 0 14px;
  color:#1A150A;
  font-size:17px;
  line-height:1.6;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-adm-top__text p:last-child{
  margin-bottom:0;
}

.kau-adm-content{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:30px;
  align-items:start;
	height:10%%;
}

.kau-adm-content__main{
  align-self:start;
  min-width:0;
}

.kau-adm-block{
  border-top:3px solid #3259FB;
  padding-top:18px;
}

.kau-adm-block[hidden]{
  display:none !important;
}

.kau-adm-block__title{
  margin:0 0 24px;
  color:#1A150A;
  font-size:42px;
  line-height:1;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-adm-textblock + .kau-adm-textblock,
.kau-adm-textblock + .kau-adm-iconlist-block,
.kau-adm-textblock + .kau-adm-notice,
.kau-adm-iconlist-block + .kau-adm-textblock,
.kau-adm-iconlist-block + .kau-adm-notice,
.kau-adm-notice + .kau-adm-textblock,
.kau-adm-notice + .kau-adm-iconlist-block,
.kau-adm-notice + .kau-adm-notice{
  margin-top:18px;
}

.kau-adm-textblock__title,
.kau-adm-iconlist-block__title,
.kau-adm-notice__title{
  margin:0 0 12px;
  font-size:20px;
  line-height:1.3;
  font-weight:600;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-adm-textblock__content p,
.kau-adm-notice__text p{
  margin:0 0 14px;
  color:#1A150A;
  font-size:18px;
  line-height:1.65;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-adm-textblock__content p:last-child,
.kau-adm-notice__text p:last-child{
  margin-bottom:0;
}

.kau-adm-iconlist{
  list-style:none;
  padding:0;
  margin:0;
}

.kau-adm-iconlist li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin:0 0 14px;
}

.kau-adm-iconlist li:last-child{
  margin-bottom:0;
}

.kau-adm-iconlist__icon{
  width:24px;
  height:24px;
  flex:0 0 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:2px;
}

.kau-adm-iconlist__icon svg{
  width:24px;
  height:24px;
  display:block;
}

.kau-adm-iconlist__text{
  color:#1A150A;
  font-size:18px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-adm-notice{
  position:relative;
  border-radius:14px;
  padding:14px 16px 14px 44px;
}

.kau-adm-notice::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:24px;
  height:24px;
  background-repeat:no-repeat;
  background-size:24px 24px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M7.75 12L10.58 14.83L16.25 9.17004' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-adm-notice--success{
  background:#EEF9EE;
}



.kau-adm-notice--warning{
  background:#FFF5E8;
}

.kau-adm-notice--warning::before{
  background:#F0A74B;
}

.kau-adm-notice--info{
  background:#EAF3FF;
}

.kau-adm-notice--info::before{
  background:#3259FB;
}

.kau-adm-tabs{
  position:relative;
	height: 100%;
}

.kau-adm-tabs__inner{
  position:sticky;
  top:110px;
  background:#3259FB;
  border-radius:24px;
  padding:36px 37px;
  display:flex;
  flex-direction:column;
  gap:14px;
	height:100%;
}

.kau-adm-tabs__btn{
  border:0;
  background:transparent;
  color:rgba(255,255,255,.58);
  text-align:right;
  padding:0;
  cursor:pointer;
  font-size:18px;
  line-height:1.25;
  font-weight:400;
  font-family:"TT Hoves", sans-serif;
  transition:.2s ease;
}

.kau-adm-tabs__btn.is-active{
  color:#fff;
  font-weight:600;
}

@media (max-width: 900px){
  .kau-adm-top{
    grid-template-columns:1fr;
  }

  .kau-adm-content{
    grid-template-columns:1fr;
  }

  .kau-adm-tabs__inner{
    position:static;
  }
}

@media (max-width: 640px){
  .kau-adm-section{
    margin-top:-18px;
  }

  .kau-adm-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:22px 0 48px;
  }

  .kau-adm-top{
    gap:16px;
    margin-bottom:22px;
  }

  .kau-adm-top__card{
    border-radius:18px;
    padding:18px;
  }

  .kau-adm-top__title{
    font-size:18px;
  }

  .kau-adm-top__text p,
  .kau-adm-textblock__content p,
  .kau-adm-notice__text p,
  .kau-adm-iconlist__text{
    font-size:15px;
  }

  .kau-adm-block__title{
    font-size:26px;
    margin-bottom:18px;
  }

  .kau-adm-textblock__title,
  .kau-adm-iconlist-block__title,
  .kau-adm-notice__title{
    font-size:17px;
  }

  .kau-adm-tabs__inner{
    border-radius:18px;
    padding:18px;
    gap:10px;
  }

  .kau-adm-tabs__btn{
    font-size:14px;
  }

  .kau-adm-iconlist__icon,
  .kau-adm-iconlist__icon svg{
    width:20px;
    height:20px;
  }

  .kau-adm-notice{
    padding:12px 14px 12px 38px;
  }

  .kau-adm-notice::before{
    left:14px;
    top:16px;
    width:12px;
    height:12px;
  }
}


.kau-adm-top__actions{
  margin-top:18px;
}

.kau-adm-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 20px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  line-height:1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

@media (max-width: 640px){
  .kau-adm-btn{
    width:100%;
  }
}


.kau-adm-notice{
  position:relative;
  border-radius:14px;
  padding:14px 16px 14px 52px;
}

.kau-adm-notice::before{
  content:"";
  position:absolute;
  left:16px;
  top:50%;
  width:24px;
  height:24px;
  background-repeat:no-repeat;
  background-size:24px 24px;
	transform:translateY(-50%);
}

.kau-adm-notice--success{
  background:#EEF9EE;
}

.kau-adm-notice--success::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z' stroke='%2335BC16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 8V13' stroke='%2335BC16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M11.9941 16H12.0031' stroke='%2335BC16' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-adm-notice--warning{
  background:#FFF5E8;
}

.kau-adm-notice--warning::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z' stroke='%23F0A74B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 8V13' stroke='%23F0A74B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M11.9941 16H12.0031' stroke='%23F0A74B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-adm-notice--info{
  background:#EAF3FF;
}

.kau-adm-notice--info::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 8V13' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M11.9941 16H12.0031' stroke='%233259FB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-adm-notice__title{
  margin:0 0 8px;
}

.kau-adm-notice__text p:last-child{
  margin-bottom:0;
}

@media (max-width: 640px){
  .kau-adm-notice{
    padding:12px 14px 12px 46px;
  }

  .kau-adm-notice::before{
    left:14px;
    top:12px;
    width:22px;
    height:22px;
    background-size:22px 22px;
  }
}

.kau-adm-iconlist-block {
	margin-top:40px;
}


/* BACHELOR PROGRAMS PAGE */
.kau-bp-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-bp-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:30px 0 72px;
  overflow:hidden;
}

.kau-bp-topbox{
  background:#F6F8FF;
  border-radius:24px;
  padding:24px 26px;
  margin-bottom:28px;
}

.kau-bp-topbox p{
  margin:0;
  font-size:18px;
  line-height:1.6;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-layout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:22px;
  align-items:start;
}

.kau-bp-filter__inner{
  background:#3259FB;
  border-radius:30px;
  padding:26px 22px;
  color:#fff;
  position:sticky;
  top:110px;
}

.kau-bp-filter__group + .kau-bp-filter__group{
  margin-top:28px;
}

.kau-bp-filter__title{
  margin:0 0 16px;
  font-size:18px;
  line-height:1.2;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  color:#fff;
}

.kau-bp-filter__list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.kau-bp-check{
  display:flex;
  align-items:flex-start;
  gap:12px;
  cursor:pointer;
}

.kau-bp-check input{
  display:none;
}

.kau-bp-check__box{
  width:18px;
  height:18px;
  border-radius:5px;
  background:#fff;
  border:2px solid #fff;
  flex:0 0 18px;
  margin-top:2px;
  position:relative;
}

.kau-bp-check input:checked + .kau-bp-check__box{
  background:#49D949;
  border-color:#fff;
}

.kau-bp-check--light input:checked + .kau-bp-check__box{
  background:#49D949;
  border-color:#fff;
}

.kau-bp-check__text{
  color:#fff;
  font-size:16px;
  line-height:1.35;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  align-items:start;
}

.kau-bp-card{
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
  outline:none;
}

.kau-bp-card[hidden]{
  display:none !important;
}

.kau-bp-card__summary{
  position:relative;
  overflow:hidden;
  min-height:210px;
  background:#F6F8FF;
  border-radius:24px;
  padding:18px 20px 18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:.25s ease;
}

.kau-bp-card__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transition:.25s ease;
  z-index:0;
}

.kau-bp-card__overlay{
  position:absolute;
  inset:0;
  opacity:0;
  transition:.25s ease;
  z-index:1;
  background:linear-gradient(
    180deg,
    rgba(50, 89, 251, 0.28) 0%,
    rgba(50, 89, 251, 0.58) 42%,
    rgba(50, 89, 251, 0.94) 100%
  );
}

.kau-bp-card__top,
.kau-bp-card__body{
  position:relative;
  z-index:2;
}

.kau-bp-card:hover .kau-bp-card__summary{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

.kau-bp-card.is-open .kau-bp-card__summary{
  border-radius:24px 24px 0 0;
  color:#fff;
  box-shadow:none;
  transform:none;
  background:#3259FB;
}

.kau-bp-card.is-open .kau-bp-card__summary.has-image{
  background:transparent;
}

.kau-bp-card.is-open .kau-bp-card__bg,
.kau-bp-card.is-open .kau-bp-card__overlay{
  opacity:1;
}

.kau-bp-card__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
}

.kau-bp-card__school{
  color:#3259FB;
  font-size:14px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-card.is-open .kau-bp-card__school,
.kau-bp-card.is-open .kau-bp-card__title,
.kau-bp-card.is-open .kau-bp-card__subjects{
  color:#fff;
}

.kau-bp-card__icon{
  width:36px;
  height:36px;
  border-radius:999px;
  background:#fff;
  color:#3259FB;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  line-height:1;
  flex:0 0 36px;
}

.kau-bp-card__body{
  margin-top:10px;
}

.kau-bp-card__title{
  margin:0 0 10px;
  color:#3A3A3A;
  font-size:20px;
  line-height:1.2;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-card__subjects{
  color:#6E6E6E;
  font-size:15px;
  line-height:1.35;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-card__expand{
  display:none;
}

.kau-bp-card.is-open .kau-bp-card__expand{
  display:block;
}

.kau-bp-card__expand-inner{
  background:#fff;
  border:2px solid #3259FB;
  border-top:0;
  border-radius:0 0 24px 24px;
  padding:18px 18px 16px;
}

.kau-bp-card__text,
.kau-bp-card__career,
.kau-bp-card__career-text{
  color:#3A3A3A;
}

.kau-bp-card__text p,
.kau-bp-card__career-text p{
  margin:0 0 10px;
  font-size:15px;
  line-height:1.5;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-card__text p:last-child,
.kau-bp-card__career-text p:last-child{
  margin-bottom:0;
}

.kau-bp-card__career{
  margin-top:12px;
}

.kau-bp-card__career strong{
  display:block;
  margin-bottom:8px;
  color:#1A150A;
  font-size:16px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-card__more{
  margin-top:18px;
  padding:0;
  border:0;
  background:transparent;
  color:#3259FB;
  font-size:15px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
  cursor:pointer;
}

.kau-bp-empty{
  margin-top:18px;
  background:#F6F8FF;
  border-radius:20px;
  padding:18px 20px;
  color:#3A3A3A;
  font-size:16px;
  font-family:"TT Hoves", Arial, sans-serif;
}

/* modal */
.kau-bp-modal[hidden]{
  display:none !important;
}

.kau-bp-modal{
  position:fixed;
  inset:0;
  z-index:9999;
}

.kau-bp-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(16,24,40,.48);
  backdrop-filter:blur(6px);
}

.kau-bp-modal__dialog{
  position:relative;
  z-index:2;
  width:min(860px, calc(100% - 32px));
  margin:6vh auto 0;
  background:#fff;
  border-radius:28px;
  padding:30px 30px 26px;
  box-shadow:0 24px 60px rgba(15,23,42,.18);
  max-height:88vh;
  overflow:auto;
}

.kau-bp-modal__close{
  position:absolute;
  top:14px;
  right:16px;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:#F6F8FF;
  color:#1A150A;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.kau-bp-modal__line{
  width:100%;
  height:3px;
  background:#3259FB;
  margin-bottom:24px;
}

.kau-bp-modal__title{
  margin:0 0 10px;
  color:#1A150A;
  font-size:40px;
  line-height:1;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-modal__meta{
  margin:0 0 22px;
  color:#3259FB;
  font-size:16px;
  line-height:1.45;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-modal__section + .kau-bp-modal__section{
  margin-top:22px;
}

.kau-bp-modal__subtitle{
  margin:0 0 10px;
  color:#1A150A;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-modal__text{
  color:#3A3A3A;
}

.kau-bp-modal__text p{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.65;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-bp-modal__text p:last-child{
  margin-bottom:0;
}

.kau-bp-modal__actions{
  margin-top:28px;
}

.kau-bp-modal__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  text-decoration:none;
  font-size:16px;
  line-height:1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

@media (max-width: 1100px){
  .kau-bp-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .kau-bp-layout{
    grid-template-columns:1fr;
  }

  .kau-bp-filter__inner{
    position:static;
  }
}

@media (max-width: 640px){
  .kau-bp-section{
    margin-top:-18px;
  }

  .kau-bp-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:24px 0 48px;
  }

  .kau-bp-topbox{
    border-radius:18px;
    padding:18px;
    margin-bottom:20px;
  }

  .kau-bp-topbox p{
    font-size:15px;
  }

  .kau-bp-filter__inner{
    border-radius:22px;
    padding:18px;
  }

  .kau-bp-check__text{
    font-size:15px;
  }

  .kau-bp-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .kau-bp-card__summary{
    min-height:190px;
    border-radius:20px;
    padding:16px;
  }

  .kau-bp-card.is-open .kau-bp-card__summary{
    border-radius:20px 20px 0 0;
  }

  .kau-bp-card__expand-inner{
    border-radius:0 0 20px 20px;
    padding:16px;
  }

  .kau-bp-card__title{
    font-size:18px;
  }

  .kau-bp-card__subjects,
  .kau-bp-card__text p,
  .kau-bp-card__career-text p{
    font-size:14px;
  }

  .kau-bp-modal__dialog{
    width:min(100% - 16px, calc(100% - 16px));
    margin:4vh auto 0;
    border-radius:22px;
    padding:24px 18px 22px;
  }

  .kau-bp-modal__title{
    font-size:28px;
  }

  .kau-bp-modal__meta,
  .kau-bp-modal__text p{
    font-size:15px;
  }

  .kau-bp-modal__btn{
    width:100%;
  }
}

html.kau-lock,
body.kau-lock{
  overflow:hidden;
}


/* ADMISSION OPPORTUNITIES PAGE */
.kau-ao-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-ao-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:28px 0 72px;
  overflow:hidden;
}

.kau-ao-intro{
  background:#F6F8FF;
  border-radius:22px;
  padding:22px 28px;
  margin-bottom:20px;
}

.kau-ao-intro p{
  margin:0;
  color:#1A150A;
  font-size:18px;
  line-height:1.6;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ao-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}

.kau-ao-card{
  display:block;
  text-decoration:none;
  border-radius:28px;
  padding:28px 28px 24px;
  min-height:240px;
  transition:transform .2s ease, box-shadow .2s ease;
}

.kau-ao-card.is-link:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(15,23,42,.08);
}

.kau-ao-card--default{
  background:#F6F8FF;
}

.kau-ao-card--soft{
  background:#FCF9EF;
}

.kau-ao-card--full{
  grid-column:1 / -1;
  min-height:210px;
}

.kau-ao-card__icon{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:28px;
}

.kau-ao-card__icon svg{
  width:28px;
  height:28px;
  display:block;
}

.kau-ao-card__title{
  margin:0 0 22px;
  color:#1A150A;
  font-size:28px;
  line-height:1.05;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
  max-width:760px;
}

.kau-ao-card__text{
  color:#3A3A3A;
  font-size:18px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
  max-width:820px;
}

@media (max-width: 900px){
  .kau-ao-grid{
    grid-template-columns:1fr;
  }

  .kau-ao-card--full{
    grid-column:auto;
  }
}

@media (max-width: 640px){
  .kau-ao-section{
    margin-top:-18px;
  }

  .kau-ao-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:22px 0 48px;
  }

  .kau-ao-intro{
    border-radius:18px;
    padding:18px;
    margin-bottom:16px;
  }

  .kau-ao-intro p{
    font-size:15px;
  }

  .kau-ao-grid{
    gap:16px;
  }

  .kau-ao-card{
    border-radius:22px;
    padding:20px 18px 18px;
    min-height:auto;
  }

  .kau-ao-card__icon{
    width:24px;
    height:24px;
    margin-bottom:20px;
  }

  .kau-ao-card__icon svg{
    width:24px;
    height:24px;
  }

  .kau-ao-card__title{
    font-size:22px;
    margin-bottom:16px;
  }

  .kau-ao-card__text{
    font-size:15px;
  }
}


/* YOUTH POLICY PAGE */
.kau-youth-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-youth-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:28px 0 72px;
  overflow:hidden;
}

.kau-youth-intro{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:42px;
}

.kau-youth-intro__card{
  background:#F6F8FF;
  border-radius:20px;
  padding:24px 26px;
}

.kau-youth-intro__card p{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.65;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-youth-intro__card p:last-child{
  margin-bottom:0;
}

.kau-youth-block + .kau-youth-block{
  margin-top:68px;
}

.kau-youth-title{
  margin:0 0 34px;
  font-size:52px;
  line-height:.95;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-youth-text{
  max-width:1120px;
}

.kau-youth-text p{
  margin:0 0 14px;
  color:#3A3A3A;
  font-size:18px;
  line-height:1.65;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-youth-text p:last-child{
  margin-bottom:0;
}

.kau-youth-text--mb{
  margin-bottom:26px;
}

.kau-youth-community-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.kau-youth-community-card{
  min-height:230px;
  background:#F6F8FF;
  border-radius:24px;
  padding:24px 24px 22px;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease;
}

.kau-youth-community-card.is-link:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

.kau-youth-community-card__icon{
  width:26px;
  height:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:26px;
  color:#3259FB;
}

.kau-youth-community-card__icon svg{
  width:26px;
  height:26px;
  display:block;
}

.kau-youth-community-card__title{
  margin:0 0 18px;
  color:#1A150A;
  font-size:26px;
  line-height:1.05;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-youth-community-card__text{
  color:#3A3A3A;
  font-size:17px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-youth-label{
  margin:26px 0 18px;
  font-size:22px;
  line-height:1.35;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-youth-project-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.kau-youth-project-card{
  min-height:150px;
  background:#EDF4EC;
  border-radius:18px;
  padding:22px 20px 18px;
}

.kau-youth-project-card__title{
  position:relative;
  margin:0 0 14px;
  padding-left:14px;
  color:#1A150A;
  font-size:22px;
  line-height:1.15;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-youth-project-card__title::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:3px;
  height:90%;
  border-radius:999px;
  background:#3259FB;
}

.kau-youth-project-card__text{
  color:#3A3A3A;
  font-size:16px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-youth-text--after{
  margin-top:26px;
  max-width:1100px;
}

.kau-youth-banner{
  margin-top:54px;
  background:#3259FB;
  border-radius:24px;
  padding:54px 48px 44px 37px;
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:24px;
  align-items:center;
}

.kau-youth-banner__title{
  margin:0 0 16px;
  color:#fff;
  font-size:48px;
  line-height:1.25;
  font-weight:600;
  font-family:"TT Hoves", sans-serif;
  text-transform:uppercase;
}

.kau-youth-banner__text p{
  margin:0 0 14px;
  color:rgba(255,255,255,.92);
  font-size:18px;
  line-height:1.6;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-youth-banner__text p:last-child{
  margin-bottom:0;
}

.kau-youth-banner__list{
  list-style:none;
  padding:0;
  margin:20px 0 0;
}

.kau-youth-banner__list li{
  position:relative;
  padding-left:32px;
  margin:0 0 12px;
  color:#fff;
  font-size:17px;
  line-height:1.5;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-youth-banner__list li:last-child{
  margin-bottom:0;
}

.kau-youth-banner__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:22px;
  height:22px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:22px 22px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M7.75 12L10.58 14.83L16.25 9.17004' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-youth-banner__media{
  border-radius:18px;
  overflow:hidden;
  min-height:320px;
  background:rgba(255,255,255,.15);
}

.kau-youth-banner__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-youth-block--news{
  margin-top:58px;
}

.kau-youth-news-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.kau-youth-news-card{
  background:#F6F8FF;
  border-radius:18px;
  overflow:hidden;
}

.kau-youth-news-card__image{
  display:block;
  height:170px;
  background:#e8edf8;
}

.kau-youth-news-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-youth-news-card__placeholder{
  display:block;
  width:100%;
  height:100%;
  background:#E6ECF8;
}

.kau-youth-news-card__body{
  padding:14px 14px 18px;
}

.kau-youth-news-card__date{
  margin-bottom:10px;
  color:#9A9A9A;
  font-size:14px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-youth-news-card__title{
  margin:0 0 14px;
  color:#3A3A3A;
  font-size:18px;
  line-height:1.3;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-youth-news-card__title a{
  color:inherit;
  text-decoration:none;
}

.kau-youth-news-card__more{
  color:#3259FB;
  font-size:15px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
  text-decoration:none;
}

@media (max-width: 1100px){
  .kau-youth-community-grid,
  .kau-youth-project-grid,
  .kau-youth-news-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .kau-youth-banner{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .kau-youth-section{
    margin-top:-18px;
  }

  .kau-youth-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:24px 0 48px;
  }

  .kau-youth-intro{
    grid-template-columns:1fr;
    gap:16px;
    margin-bottom:32px;
  }

  .kau-youth-intro__card{
    border-radius:18px;
    padding:18px;
  }

  .kau-youth-intro__card p,
  .kau-youth-text p,
  .kau-youth-community-card__text,
  .kau-youth-project-card__text,
  .kau-youth-banner__text p,
  .kau-youth-banner__list li{
    font-size:15px;
  }

  .kau-youth-title{
    font-size:32px;
  }

  .kau-youth-community-grid,
  .kau-youth-project-grid,
  .kau-youth-news-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .kau-youth-community-card{
    min-height:auto;
    border-radius:20px;
    padding:20px;
  }

  .kau-youth-community-card__title{
    font-size:24px;
  }

  .kau-youth-project-card{
    min-height:auto;
  }

  .kau-youth-project-card__title{
    font-size:18px;
  }

  .kau-youth-banner{
    margin-top:38px;
    border-radius:20px;
    padding:18px;
    gap:18px;
  }

  .kau-youth-banner__title{
    font-size:32px;
  }

  .kau-youth-banner__media{
    min-height:220px;
  }

  .kau-youth-news-card__image{
    height:190px;
  }

  .kau-youth-news-card__title{
    font-size:16px;
  }
}


/* CAREER CENTER PAGE */
.kau-cc-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-cc-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:28px 0 72px;
  overflow:hidden;
}

.kau-cc-intro{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:18px;
  align-items:start;
  background:#F6F8FF;
  border-radius:18px;
  padding:32px 30px;
  margin-bottom:52px;
}

.kau-cc-intro__title{
  font-size:28px;
  line-height:1.05;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-cc-intro__text p{
  margin:0;
  color:#3A3A3A;
  font-size:17px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-tabs-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 330px;
  gap:28px;
  align-items:start;
}

.kau-cc-tabs-layout__main{
  min-width:0;
}

.kau-cc-block{
  border-top:3px solid #3259FB;
  padding-top:20px;
  min-height:320px;
}

.kau-cc-block[hidden]{
  display:none !important;
}

.kau-cc-block__title{
  margin:0 0 26px;
  color:#1A150A;
  font-size:40px;
  line-height:.95;
  font-weight:700;
  font-family:"TT Hoves", sans-serif;
  text-transform:uppercase;
}

.kau-cc-block__content p{
  margin:0 0 16px;
  color:#3A3A3A;
  font-size:18px;
  line-height:1.65;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-block__lead{
  margin:24px 0 18px;
  color:#1A150A;
  font-size:22px;
  line-height:1.35;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-checklist{
  list-style:none;
  padding:0;
  margin:0;
  max-width:900px;
}

.kau-cc-checklist li{
  position:relative;
  padding-left:34px;
  margin:0 0 14px;
  color:#1A150A;
  font-size:18px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-checklist li:last-child{
  margin-bottom:0;
}

.kau-cc-checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:24px;
  height:24px;
  background-repeat:no-repeat;
  background-size:24px 24px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M7.75 12L10.58 14.83L16.25 9.17004' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-cc-notice{
  position:relative;
  margin-top:22px;
  border-radius:12px;
  padding:14px 16px 14px 52px;

}

.kau-cc-notice::before{
  content:"";
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  width:24px;
  height:24px;
  background-repeat:no-repeat;
  background-size:24px 24px;
}

.kau-cc-notice--success{
  background:#EEF9EE;
}

.kau-cc-notice--success::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z' stroke='%2335BC16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 8V13' stroke='%2335BC16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M11.9941 16H12.0031' stroke='%2335BC16' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-cc-notice--warning{
  background:#FFF5E8;
}

.kau-cc-notice--warning::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z' stroke='%23F0A74B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 8V13' stroke='%23F0A74B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M11.9941 16H12.0031' stroke='%23F0A74B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-cc-notice--info{
  background:#EAF3FF;
}

.kau-cc-notice--info::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 8V13' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M11.9941 16H12.0031' stroke='%233259FB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-cc-notice__text p{
  margin:0;
  color:#3A3A3A;
  font-size:16px;
  line-height:1.5;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-tabs{
  position:sticky;
  top:110px;
  background:#3259FB;
  border-radius:24px;
  padding:24px 18px;
  display:flex;
  flex-direction:column;
  gap:18px;
	height:100%;
}

.kau-cc-tabs-layout__side {
	height:100%;
}

.kau-cc-tabs__btn{
  border:0;
  background:transparent;
  color:rgba(255,255,255,.58);
  text-align:right;
  cursor:pointer;
  padding:0;
  font-size:18px;
  line-height:1.25;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-tabs__btn.is-active{
  color:#fff;
  font-weight:700;
}

.kau-cc-alumni{
  margin-top:96px;
}

.kau-cc-alumni__title{
  margin:0 0 22px;
  color:#1A150A;
  font-size:50px;
  line-height:.95;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-cc-alumni__top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:center;
  background:#F6F8FF;
  border-radius:18px;
  padding:18px 20px;
  margin-bottom:22px;
}

.kau-cc-alumni__intro p{
  margin:0;
  color:#3A3A3A;
  font-size:17px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-alumni__cta{
  display:inline-flex;
  align-items:center;
  gap:15px;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  text-decoration:none;
  font-size:18px;
  line-height:1;
  font-family:"TT Hoves", sans-serif;
}

.kau-cc-people-slider{
  overflow:hidden;
}



.kau-cc-person__image{
  height:220px;
  border-radius:18px;
  overflow:hidden;
  background:#EEF2F8;
}

.kau-cc-person__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-cc-person__body{
  padding:12px 4px 0;
}

.kau-cc-person__name{
  margin:0 0 8px;
  color:#1A150A;
  font-size:26px;
  line-height:1.1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-person__role{
  margin-bottom:12px;
  color:#6B6B6B;
  font-size:15px;
  line-height:1.45;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-person__tag{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:6px 14px;
  border-radius:999px;
  background:#EEF2FF;
  color:#3259FB;
  text-decoration:none;
  font-size:14px;
  line-height:1;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-slider-wrap{
  position:relative;
}

.kau-cc-slider-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:18px;
}

.kau-cc-slider-nav__arrow{
  width:28px;
  height:28px;
  border:0;
  background:transparent;
  color:#3259FB;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.kau-cc-slider-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.kau-cc-slider-pagination .swiper-pagination-bullet{
  width:8px;
  height:8px;
  background:#D8DCE7;
  opacity:1;
}

.kau-cc-slider-pagination .swiper-pagination-bullet-active{
  background:#3259FB;
}

.kau-cc-news{
  margin-top:62px;
}

.kau-cc-news__title{
  margin:0 0 24px;
  color:#1A150A;
  font-size:52px;
  line-height:.95;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-cc-news-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.kau-cc-news-card{
  background:#F6F8FF;
  border-radius:18px;
  overflow:hidden;
}

.kau-cc-news-card__image{
  display:block;
  height:220px;
  background:#E6ECF8;
}

.kau-cc-news-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-cc-news-card__placeholder{
  display:block;
  width:100%;
  height:100%;
  background:#E6ECF8;
}

.kau-cc-news-card__body{
  padding:14px 14px 18px;
}

.kau-cc-news-card__date{
  margin-bottom:10px;
  color:#9A9A9A;
  font-size:14px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-news-card__title{
  margin:0 0 14px;
  color:#3A3A3A;
  font-size:20px;
  line-height:1.3;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-cc-news-card__title a{
  color:inherit;
  text-decoration:none;
}

.kau-cc-news-card__more{
  color:#3259FB;
  text-decoration:none;
  font-size:15px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
}

@media (max-width: 1100px){
  .kau-cc-news-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .kau-cc-intro{
    grid-template-columns:1fr;
  }

  .kau-cc-tabs-layout{
    grid-template-columns:1fr;
  }

  .kau-cc-tabs{
    position:static;
  }

  .kau-cc-alumni__top{
    grid-template-columns:1fr;
    align-items:start;
  }
}

@media (max-width: 640px){
  .kau-cc-section{
    margin-top:-18px;
  }

  .kau-cc-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:22px 0 48px;
  }

  .kau-cc-intro{
    gap:14px;
    border-radius:16px;
    padding:16px;
  }

  .kau-cc-intro__title{
    font-size:18px;
  }

  .kau-cc-intro__text p,
  .kau-cc-block__content p,
  .kau-cc-block__lead,
  .kau-cc-checklist li,
  .kau-cc-notice__text p,
  .kau-cc-alumni__intro p{
    font-size:15px;
  }

  .kau-cc-block__title,
  .kau-cc-alumni__title,
  .kau-cc-news__title{
    font-size:30px;
  }

  .kau-cc-tabs{
    border-radius:18px;
    padding:18px;
    gap:12px;
  }

  .kau-cc-tabs__btn{
    font-size:14px;
  }

  .kau-cc-checklist li{
    padding-left:32px;
  }

  .kau-cc-checklist li::before{
    width:22px;
    height:22px;
    background-size:22px 22px;
  }

  .kau-cc-notice{
    padding:12px 14px 12px 46px;
  }

  .kau-cc-notice::before{
    left:14px;
    width:22px;
    height:22px;
    background-size:22px 22px;
  }

  .kau-cc-person__image{
    height:180px;
  }

  .kau-cc-person__name{
    font-size:20px;
  }

  .kau-cc-news-grid{
    grid-template-columns:1fr;
  }

  .kau-cc-news-card__image{
    height:190px;
  }
}







/* PSYCHOLOGICAL SUPPORT PAGE */
.kau-ps-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-ps-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:28px 0 72px;
  overflow:hidden;
}

.kau-ps-intro{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:center;
  background:#F6F8FF;
  border-radius:20px;
  padding:20px 22px;
  margin-bottom:58px;
}

.kau-ps-intro__text p{
  margin:0;
  color:#1A150A;
  font-size:18px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ps-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:52px;
  padding:12px 22px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  text-decoration:none;
  font-size:18px;
  line-height:1;
  font-family:"TT Hoves", Arial, sans-serif;
  white-space:nowrap;
}

.kau-ps-title{
  margin:0 0 30px;
  color:#1A150A;
  font-size:30px;
  line-height:.95;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-ps-check-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 34px;
}

.kau-ps-check-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.kau-ps-check-item__icon{
  flex:0 0 24px;
  width:24px;
  height:24px;
  margin-top:2px;
  background-repeat:no-repeat;
  background-size:24px 24px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M7.75 12L10.58 14.83L16.25 9.17004' stroke='%233259FB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-ps-check-item__text{
  font-size:18px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ps-notice{
  position:relative;
  margin-top:26px;
  background:#EEF9EE;
  border-radius:12px;
  padding:14px 16px 14px 52px;
}

.kau-ps-notice::before{
  content:"";
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  width:24px;
  height:24px;
  background-repeat:no-repeat;
  background-size:24px 24px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z' stroke='%2335BC16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M12 8V13' stroke='%2335BC16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M11.9941 16H12.0031' stroke='%2335BC16' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-ps-notice__text p{
  margin:0;
  color:#3A3A3A;
  font-size:16px;
  line-height:1.5;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ps-specialist{
  margin-top:70px;
  background:#F6F8FF;
  border-radius:24px;
  padding:24px;
  display:grid;
  grid-template-columns:240px 1fr;
  gap:28px;
}

.kau-ps-specialist__photo{
  border-radius:18px;
  overflow:hidden;
  background:#E8EDF8;
}

.kau-ps-specialist__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-ps-specialist__top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:start;
  padding-bottom:22px;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.kau-ps-specialist__name{
  margin:0 0 14px;
  color:#1A150A;
  font-size:40px;
  line-height:1.05;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ps-specialist__role{
  margin-bottom:10px;
  color:#3259FB;
  font-size:18px;
  line-height:1.35;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ps-specialist__email a{
  color:#3A3A3A;
  text-decoration:none;
  font-size:16px;
  line-height:1.35;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ps-qr-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:22px;
}

.kau-ps-qr-card{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:12px;
  align-items:center;
  background:#fff;
  border-radius:14px;
  padding:12px;
  text-decoration:none;
  color:inherit;
}

.kau-ps-qr-card__image{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.kau-ps-qr-card__image img{
  max-width:72px;
  max-height:72px;
  display:block;
}

.kau-ps-qr-card__title{
  color:#3A3A3A;
  font-size:16px;
  line-height:1.35;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ps-faq{
  margin-top:72px;
}

.kau-ps-faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.kau-ps-faq-item{
  background:#F6F8FF;
  border-radius:18px;
  overflow:hidden;
}

.kau-ps-faq-item__head{
  width:100%;
  border:0;
  background:transparent;
  padding:22px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  text-align:left;
  cursor:pointer;
  color:#1A150A;
  font-size:20px;
  line-height:1.35;
  font-family:"TT Hoves", sans-serif;
	font-weight: 500;
}

.kau-ps-faq-item__icon{
  flex:0 0 28px;
  width:28px;
  height:28px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  transition:transform .2s ease;
}

.kau-ps-faq-item.is-open .kau-ps-faq-item__icon{
  transform:rotate(180deg);
}

.kau-ps-faq-item__body{
  padding:0 26px 22px;
}

.kau-ps-faq-item__content p{
  margin:0 0 14px;
  color:#3A3A3A;
  font-size:18px;
  line-height:1.6;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ps-faq-item__content p:last-child{
  margin-bottom:0;
}

.kau-ps-faq-item__content strong{
  color:#3259FB;
}

@media (max-width: 980px){
  .kau-ps-intro{
    grid-template-columns:1fr;
  }

  .kau-ps-check-grid{
    grid-template-columns:1fr;
  }

  .kau-ps-specialist{
    grid-template-columns:1fr;
  }

  .kau-ps-specialist__top{
    grid-template-columns:1fr;
  }

  .kau-ps-qr-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .kau-ps-section{
    margin-top:-18px;
  }

  .kau-ps-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:22px 0 48px;
  }

  .kau-ps-intro{
    border-radius:18px;
    padding:18px;
    margin-bottom:34px;
  }

  .kau-ps-intro__text p,
  .kau-ps-check-item__text,
  .kau-ps-notice__text p,
  .kau-ps-qr-card__title,
  .kau-ps-faq-item__content p{
    font-size:15px;
  }

  .kau-ps-title{
    font-size:28px;
    margin-bottom:22px;
  }

  .kau-ps-btn{
    width:100%;
    justify-content:center;
  }

  .kau-ps-notice{
    padding:12px 14px 12px 46px;
  }

  .kau-ps-notice::before{
    left:14px;
    width:22px;
    height:22px;
    background-size:22px 22px;
  }

  .kau-ps-specialist{
    margin-top:40px;
    border-radius:20px;
    padding:18px;
    gap:18px;
  }

  .kau-ps-specialist__name{
    font-size:28px;
  }

  .kau-ps-specialist__role{
    font-size:16px;
  }

  .kau-ps-faq{
    margin-top:42px;
  }

  .kau-ps-faq-item{
    border-radius:16px;
  }

  .kau-ps-faq-item__head{
    padding:18px;
    font-size:16px;
  }

  .kau-ps-faq-item__body{
    padding:0 18px 18px;
  }
}


/* STUDENT GOVERNMENT PAGE */
.kau-sg-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-sg-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:28px 0 72px;
  overflow:hidden;
}

.kau-sg-intro{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:72px;
}

.kau-sg-intro__card{
  background:#F6F8FF;
  border-radius:22px;
  padding:24px 26px;
}

.kau-sg-intro__card p{
  margin:0 0 18px;
  color:#1A150A;
  font-size:18px;
  line-height:1.6;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-sg-intro__card p:last-child{
  margin-bottom:0;
}

.kau-sg-intro__title{
  margin:0 0 18px;
  color:#1A150A;
  font-size:22px;
  line-height:1.35;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-sg-role-pills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:22px;
}

.kau-sg-role-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
font-weight:500;
  padding:8px 15px;
  border:2px solid #3259FB;
  border-radius:999px;
  color:#3259FB;
  text-decoration:none;
  font-size:16px;
  line-height:1;
  font-family:"TT Hoves", Arial, sans-serif;

}

.kau-sg-intro__text p{
  margin:0;
}

.kau-sg-title{
  margin:0 0 34px;
  color:#1A150A;
  font-size:50px;
  line-height:1.25;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
  max-width:980px;
}

.kau-sg-tasks-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.kau-sg-task-card{

  background:#EEF6EC;
  border-radius:22px;
  padding:22px 24px 20px;
  display:flex;
  flex-direction:column;
}

.kau-sg-task-card--wide{
  grid-column:span 2;
}

.kau-sg-task-card__icon{
  width:24px;
  height:24px;
  margin-bottom:34px;
  background-repeat:no-repeat;
  background-size:24px 24px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z' stroke='%2335BC16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M7.75 12L10.58 14.83L16.25 9.17004' stroke='%2335BC16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-sg-task-card__title{
  margin:0 0 14px;
  color:#3A3A3A;
  font-size:18px;
  line-height:1.35;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-sg-task-card__text{
  color:#3A3A3A;
  font-size:18px;
  line-height:1.5;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-sg-bottom-text{
  margin-top:34px;
  max-width:1120px;
}

.kau-sg-bottom-text p{
  margin:0;
  color:#3A3A3A;
  font-size:18px;
  line-height:1.6;
  font-family:"TT Hoves", Arial, sans-serif;
}

@media (max-width: 1100px){
  .kau-sg-title{
    font-size:54px;
  }
}

@media (max-width: 900px){
  .kau-sg-intro{
    grid-template-columns:1fr;
    margin-bottom:42px;
  }

  .kau-sg-tasks-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .kau-sg-task-card--wide{
    grid-column:span 2;
  }
}

@media (max-width: 640px){
  .kau-sg-section{
    margin-top:-18px;
  }

  .kau-sg-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:22px 0 48px;
  }

  .kau-sg-intro{
    gap:16px;
    margin-bottom:34px;
  }

  .kau-sg-intro__card{
    border-radius:18px;
    padding:18px;
  }

  .kau-sg-intro__card p,
  .kau-sg-intro__title,
  .kau-sg-task-card__title,
  .kau-sg-task-card__text,
  .kau-sg-bottom-text p{
    font-size:15px;
  }

  .kau-sg-role-pills{
    gap:10px;
    margin-bottom:16px;
  }

  .kau-sg-role-pill{
    min-height:38px;
    padding:8px 12px;
    font-size:14px;
  }

  .kau-sg-title{
    font-size:34px;
    margin-bottom:22px;
  }

  .kau-sg-tasks-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .kau-sg-task-card,
  .kau-sg-task-card--wide{
    grid-column:auto;
    min-height:auto;
    border-radius:18px;
    padding:18px;
  }

  .kau-sg-task-card__icon{
    margin-bottom:20px;
  }

  .kau-sg-bottom-text{
    margin-top:22px;
  }
}


/* STUDENT HOUSES PAGE */
.kau-sh-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-sh-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:28px 0 72px;
  overflow:hidden;
}

.kau-sh-dorms{
  margin-bottom:92px;
}

.kau-sh-dorms-slider{
  overflow:hidden;
}

.kau-sh-card{
  background:#F4F1E8;
  border-radius:24px;
  overflow:hidden;
  height:auto;
  display:flex;
  flex-direction:column;
}

.kau-sh-card__media{
  padding:12px 12px 0;
}

.kau-sh-card-gallery{
  position:relative;
  border-radius:18px;
  overflow:hidden;
}

.kau-sh-card-gallery__slide{
  height:250px;
  background:#E8EDF8;
}

.kau-sh-card-gallery__slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-sh-card-gallery__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:34px;
  height:34px;
  border:0;
  border-radius:999px;
  background:rgba(130,130,130,.45);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:22px;
  line-height:1;
}

.kau-sh-card-gallery__prev{
  left:10px;
}

.kau-sh-card-gallery__next{
  right:10px;
}

.kau-sh-card__body{
  padding:18px 18px 22px;
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
}

.kau-sh-card__title{
  margin:0 0 8px;
  color:#3A3A3A;
  font-size:18px;
  line-height:1.3;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-sh-card__subtitle{
  margin-bottom:18px;
  color:#3259FB;
  font-size:15px;
  line-height:1.35;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-sh-card__text{
  color:#3A3A3A;
  font-size:16px;
  line-height:1.5;
  font-family:"TT Hoves", Arial, sans-serif;
  flex:1 1 auto;
}

.kau-sh-card__text p{
  margin:0 0 14px;
}

.kau-sh-card__text p:last-child{
  margin-bottom:0;
}

.kau-sh-card__text strong{
  font-weight:700;
}

.kau-sh-card__actions{
  margin-top:22px;
}

.kau-sh-card__btn{
  display:inline-flex;
  align-items:center;
  gap:13px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  color:#1A150A;
  text-decoration:none;
  font-size:15px;
  line-height:1;
	font-weight:500;
  font-family:"TT Hoves", sans-serif;
}

.kau-sh-card__btn span{
  width:28px;
  height:28px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

.kau-sh-slider-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:22px;
}

.kau-sh-slider-nav__arrow{
  width:28px;
  height:28px;
  border:0;
  background:transparent;
  color:#3259FB;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.kau-sh-slider-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.kau-sh-slider-pagination .swiper-pagination-bullet{
  width:8px;
  height:8px;
  background:#D8DCE7;
  opacity:1;
}

.kau-sh-slider-pagination .swiper-pagination-bullet-active{
  background:#3259FB;
}

.kau-sh-title{
  margin:0 0 34px;
  color:#1A150A;
  font-size:50px;
  line-height:.92;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-sh-faq{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.kau-sh-faq-item{
  background:#F6F8FF;
  border-radius:18px;
  overflow:hidden;
}

.kau-sh-faq-item__head{
  width:100%;
  border:0;
  background:transparent;
  padding:22px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  text-align:left;
  cursor:pointer;
}

.kau-sh-faq-item__question{
  color:#1A150A;
  font-size:20px;
  line-height:1.35;
  font-family:"TT Hoves", Arial, sans-serif;
	font-weight:500;
}

.kau-sh-faq-item__icon{
  flex:0 0 28px;
  width:28px;
  height:28px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  transition:transform .2s ease;
}

.kau-sh-faq-item.is-open .kau-sh-faq-item__icon{
  transform:rotate(180deg);
}

.kau-sh-faq-item__body{
  padding:0 26px 22px;
}

.kau-sh-faq-item__content{
  color:#3A3A3A;
  font-size:18px;
  line-height:1.6;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-sh-faq-item__content p{
  margin:0 0 12px;
}

.kau-sh-faq-item__content p:last-child{
  margin-bottom:0;
}

.kau-sh-faq-item__content ul{
  margin:0;
  padding-left:24px;
}

.kau-sh-faq-item__content li{
  margin:0 0 6px;
}

@media (max-width: 1100px){
  .kau-sh-title{
    font-size:54px;
  }
}

@media (max-width: 640px){
  .kau-sh-section{
    margin-top:-18px;
  }

  .kau-sh-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:22px 0 48px;
  }

  .kau-sh-dorms{
    margin-bottom:48px;
  }

  .kau-sh-card{
    border-radius:20px;
  }

  .kau-sh-card-gallery__slide{
    height:190px;
  }

  .kau-sh-card__body{
    padding:16px;
  }

  .kau-sh-card__title,
  .kau-sh-card__text,
  .kau-sh-faq-item__content{
    font-size:15px;
  }

  .kau-sh-card__subtitle{
    font-size:14px;
  }

  .kau-sh-title{
    font-size:34px;
    margin-bottom:22px;
  }

  .kau-sh-faq-item{
    border-radius:16px;
  }

  .kau-sh-faq-item__head{
    padding:18px;
  }

  .kau-sh-faq-item__question{
    font-size:16px;
  }

  .kau-sh-faq-item__body{
    padding:0 18px 18px;
  }
}



/* ALUMNI KAUYMDÁSTYQ PAGE */
.kau-ak-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-ak-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:44px 0 72px;
  overflow:hidden;
}

.kau-ak-mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.kau-ak-mv-card{
  background:#F6F8FF;
  border-radius:20px;
  padding:18px 18px 16px;
}

.kau-ak-mv-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}

.kau-ak-mv-card__title{
  margin:0;
  color:#1A150A;
  font-size:22px;
  line-height:1.1;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-ak-mv-card__icon{
  width:24px;
  height:24px;
  color:#3259FB;
  flex:0 0 24px;
}

.kau-ak-mv-card__icon svg{
  width:24px;
  height:24px;
  display:block;
}

.kau-ak-mv-card__text p{
  margin:0;
  color:#3A3A3A;
  font-size:15px;
  line-height:1.5;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-qurultai{
  margin-top:34px;
  padding-top:32px;
  border-top:3px solid #3259FB;
  display:grid;
  grid-template-columns:1fr 600px;
  gap:28px;
  align-items:center;
}

.kau-ak-title{
  margin:0 0 44px;
  color:#1A150A;
  font-size:54px;
  line-height:.95;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-ak-title-small{
  margin:0 0 20px;
  color:#1A150A;
  font-size:38px;
  line-height:1;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-ak-qurultai__text p,
.kau-ak-alqa__text p,
.kau-ak-cta__text p{
  margin:0 0 16px;
  color:#3A3A3A;
  font-size:18px;
  line-height:1.6;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-qurultai__image{
  border-radius:22px;
  overflow:hidden;
  background:#E8EDF8;
  min-height:248px;
}

.kau-ak-qurultai__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-ak-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  line-height:1;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-btn span{
  width:24px;
  height:24px;
  border-radius:999px;
  background:#fff;
  color:#3259FB;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.kau-ak-participation{
  margin-top:56px;
}

.kau-ak-participation__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.kau-ak-part-card{
  background:#EEF6EC;
  border-radius:22px;
  padding:18px 18px 16px;
  min-height:154px;
}

.kau-ak-part-card__icon{
  width:20px;
  height:20px;
  margin-bottom:28px;
  background-repeat:no-repeat;
  background-size:20px 20px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z' stroke='%2335BC16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/><path d='M7.75 12L10.58 14.83L16.25 9.17004' stroke='%2335BC16' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.kau-ak-part-card__title{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.3;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-part-card__text{
  color:#3A3A3A;
  font-size:15px;
  line-height:1.45;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-news{
  margin-top:68px;
}

.kau-ak-news-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.kau-ak-news-card{
  background:#F6F8FF;
  border-radius:18px;
  overflow:hidden;
}

.kau-ak-news-card__image{
  display:block;
  height:180px;
  background:#E6ECF8;
}

.kau-ak-news-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-ak-news-card__body{
  padding:12px 12px 16px;
}

.kau-ak-news-card__date{
  margin-bottom:10px;
  color:#9A9A9A;
  font-size:13px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-news-card__title{
  margin:0 0 12px;
  color:#3A3A3A;
  font-size:18px;
  line-height:1.3;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-news-card__title a{
  color:inherit;
  text-decoration:none;
}

.kau-ak-news-card__more{
  color:#3259FB;
  text-decoration:none;
  font-size:15px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-alqa{
  margin-top:52px;
}

.kau-ak-alqa__head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-end;
  margin-bottom:22px;
}

.kau-ak-slider-nav{
  display:flex;
  gap:10px;
}

.kau-ak-slider-nav__arrow{
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:18px;
}

.kau-ak-alqa-slider{
  overflow:hidden;
}

.kau-ak-person__image{
  height:170px;
  border-radius:20px;
  overflow:hidden;
  background:#EEF2F8;
}

.kau-ak-person__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-ak-person__body{
  padding:12px 2px 0;
}

.kau-ak-person__name{
  margin:0 0 8px;
  color:#1A150A;
  font-size:18px;
  line-height:1.25;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-person__role{
  margin-bottom:12px;
  color:#6B6B6B;
  font-size:13px;
  line-height:1.45;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-person__tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:6px 12px;
  border-radius:999px;
  background:#EEF2FF;
  color:#3259FB;
  text-decoration:none;
  font-size:12px;
  line-height:1;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-cta{
  margin-top:54px;
  position:relative;
  overflow:hidden;
  background:#161106;
  border-radius:24px;
  min-height:420px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) 330px;
  gap:20px;
  padding:34px 30px 30px;
}

.kau-ak-cta__content{
  position:relative;
  z-index:2;

}

.kau-ak-cta__title{
  margin:0 0 14px;
  color:#fff;
  font-size:48px;
  line-height:.95;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
}

.kau-ak-cta__title span{
  color:#3259FB;
}

.kau-ak-cta__text p{
  margin:0 0 16px;
  color:rgba(255,255,255,.85);
}

.kau-ak-form{
  margin-top:22px;
}

.kau-ak-form__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.kau-ak-form__grid input,
.kau-ak-form__grid select{
  width:100%;
  height:46px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:0 18px;
  font-size:15px;
  font-family:"TT Hoves", Arial, sans-serif;
  outline:none;
}

.kau-ak-form__grid input::placeholder{
  color:rgba(255,255,255,.55);
}

.kau-ak-form__grid select{
  appearance:none;
}

.kau-ak-form__grid > :first-child,
.kau-ak-form__grid > :nth-child(8){
  grid-column:span 3;
}

.kau-ak-form__footer{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
}

.kau-ak-form__submit{
  border:0;
  border-radius:999px;

  padding:8px 18px;
  background:#fff;
  color:#1A150A;
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  font-size:15px;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-form__submit span{
  width:24px;
  height:24px;
  border-radius:999px;
  background:#3259FB;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.kau-ak-form__status{
  color:#fff;
  font-size:14px;
  line-height:1.35;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-ak-form__status.is-error{
  color:#ffb8b8;
}

.kau-ak-form__status.is-success{
  color:#a8ffbf;
}

.kau-ak-cta__image{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
}

.kau-ak-cta__image img{
	position:absolute;
  max-width:100%;
  max-height:580px;
  object-fit:contain;
  display:block;
	bottom:-30px;
}

@media (max-width: 1100px){
  .kau-ak-title{
    font-size:42px;
  }

  .kau-ak-title-small{
    font-size:30px;
  }

  .kau-ak-cta{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .kau-ak-cta__image{
    justify-content:center;
  }
}

@media (max-width: 900px){
  .kau-ak-mv-grid,
  .kau-ak-qurultai,
  .kau-ak-participation__grid,
  .kau-ak-news-grid{
    grid-template-columns:1fr;
  }

  .kau-ak-form__grid{
    grid-template-columns:1fr;
  }

  .kau-ak-form__grid > :first-child,
  .kau-ak-form__grid > :nth-child(8){
    grid-column:auto;
  }
}

@media (max-width: 640px){
  .kau-ak-section{
    margin-top:-18px;
  }

  .kau-ak-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:22px 0 48px;
  }

  .kau-ak-mv-card,
  .kau-ak-qurultai__image,
  .kau-ak-part-card,
  .kau-ak-news-card,
  .kau-ak-cta{
    border-radius:18px;
  }

  .kau-ak-title{
    font-size:30px;
    margin-bottom:18px;
  }

  .kau-ak-title-small{
    font-size:28px;
    margin-bottom:16px;
  }

  .kau-ak-mv-card__text p,
  .kau-ak-qurultai__text p,
  .kau-ak-alqa__text p,
  .kau-ak-part-card__text,
  .kau-ak-news-card__title,
  .kau-ak-cta__text p{
    font-size:15px;
  }

  .kau-ak-qurultai{
    margin-top:24px;
    padding-top:22px;
    gap:18px;
  }

  .kau-ak-qurultai__image{
    min-height:220px;
  }

  .kau-ak-news-card__image{
    height:190px;
  }

  .kau-ak-alqa__head{
    flex-direction:column;
    align-items:flex-start;
  }

  .kau-ak-cta{
    padding:22px 18px 18px;
  }

  .kau-ak-cta__title{
    font-size:32px;
  }

  .kau-ak-form__grid input,
  .kau-ak-form__grid select{
    height:44px;
    font-size:14px;
  }

  .kau-ak-cta__image img{
    max-height:320px;
  }
}


.kau-ak-form__grid select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  width:100%;
  height:46px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff; /* текст в закрытом селекте */
  padding:0 18px;
  font-size:15px;
  font-family:"TT Hoves", Arial, sans-serif;
  outline:none;
}

.kau-ak-form__grid select option{
  color:#1A150A;   /* текст внутри выпадающего списка */
  background:#fff; /* фон выпадающего списка */
}

.kau-ak-form__grid select option[value=""]{
  color:#8A8A8A; /* цвет пункта-заглушки */
}



/* CONTACTS KAU PAGE */
.kau-contacts-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-contacts-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:24px 0 72px;
  overflow:hidden;
}

.kau-contacts-grid{
  display:grid;
  grid-template-columns:560px 1fr;
  gap:18px;
  align-items:stretch;
}

.kau-contacts-left{
  position:relative;
  overflow:hidden;
  background:#F6F8FF;
  border-radius:28px;
  padding:34px 34px 220px;
}

.kau-contacts-left__bgmark{
  position:absolute;
  left:28px;
  bottom:18px;
  width:min(466px, calc(100% - 56px));
  pointer-events:none;
  opacity:.55;
  z-index:0;
}

.kau-contacts-left__bgmark svg{
  display:block;
  width:100%;
  height:auto;
}

.kau-contacts-left__title,
.kau-contacts-left__text{
  position:relative;
  z-index:1;
}

.kau-contacts-left__title{
  margin:0 0 24px;
  color:#1A150A;
  font-size:30px;
  line-height:.95;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
  text-transform:uppercase;
  max-width:420px;
}

.kau-contacts-left__text p{
  margin:0 0 16px;
  color:#1A150A;
  font-size:18px;
  line-height:1.55;
  font-family:"TT Hoves", Arial, sans-serif;
  max-width:430px;
}

.kau-contacts-left__text p:last-child{
  margin-bottom:0;
}

.kau-contacts-right{
  background:#F6F8FF;
  border-radius:28px;
  padding:30px;
  display:flex;
}

.kau-contacts-right__inner{
  width:100%;
  background:#fff;
  border-radius:28px;
  padding:34px 38px 42px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:100%;
}

.kau-contacts-right__cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  align-items:start;
}

.kau-contacts-col__title{
  margin:0 0 24px;
  color:#3259FB;
  font-size:20px;
  line-height:1.2;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-contacts-col__line{
  margin-bottom:10px;
}

.kau-contacts-col__line a{
  color:#1A150A;
  text-decoration:none;
  font-size:24px;
  line-height:1.35;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-contacts-col__address p{
  margin:0 0 8px;
  color:#1A150A;
  font-size:24px;
  line-height:1.35;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-contacts-col__address p:last-child{
  margin-bottom:0;
}

.kau-contacts-map{
  display:inline-block;
  margin-top:28px;
  color:#35BC16;
  text-decoration:underline;
  text-underline-offset:4px;
  font-size:20px;
  line-height:1.2;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-contacts-actions{
  margin-top:44px;
}

.kau-contacts-wa{
  display:inline-flex;
  align-items:center;
  gap:14px;
  min-height:66px;
  padding:14px 26px;
  border-radius:999px;
  background:#EEF6EC;
  color:#1A150A;
  text-decoration:none;
  font-size:22px;
  line-height:1;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-contacts-wa__icon{
  width:28px;
  height:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 28px;
}

.kau-contacts-wa__icon svg{
  width:28px;
  height:28px;
  display:block;
}

@media (max-width: 1200px){
  .kau-contacts-grid{
    grid-template-columns:1fr;
  }

  .kau-contacts-left{
    padding-bottom:180px;
  }

  .kau-contacts-left::after{
    font-size:160px;
  }
}

@media (max-width: 767px){
  .kau-contacts-section{
    margin-top:-18px;
  }

  .kau-contacts-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:18px 0 48px;
  }

  .kau-contacts-grid{
    gap:16px;
  }

  .kau-contacts-left,
  .kau-contacts-right,
  .kau-contacts-right__inner{
    border-radius:20px;
  }

  .kau-contacts-left{
    padding:22px 18px 110px;
  }

  .kau-contacts-left{
    padding:22px 18px 110px;
  }

  .kau-contacts-left__bgmark{
    left:16px;
    bottom:12px;
    width:calc(100% - 32px);
    opacity:.5;
  }

  .kau-contacts-left__title{
    font-size:28px;
    margin-bottom:18px;
  }

  .kau-contacts-left__text p{
    font-size:15px;
  }

  .kau-contacts-right{
    padding:14px;
  }

  .kau-contacts-right__inner{
    padding:20px 18px 22px;
  }

  .kau-contacts-right__cols{
    grid-template-columns:1fr;
    gap:24px;
  }

  .kau-contacts-col__title{
    font-size:18px;
    margin-bottom:14px;
  }

  .kau-contacts-col__line a,
  .kau-contacts-col__address p{
    font-size:16px;
  }

  .kau-contacts-map{
    margin-top:14px;
    font-size:16px;
  }

  .kau-contacts-actions{
    margin-top:24px;
  }

  .kau-contacts-wa{
    width:100%;
    justify-content:center;
    min-height:52px;
    padding:12px 18px;
    font-size:18px;
  }
}


/* PROGRAM CARDS — icons + colors + hover image */
.kau-prog__grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:14px;
}

.kau-card{
  position:relative;
  display:block;
  text-decoration:none;
  border:0;
  background:transparent;
  overflow:visible;
  min-width:0;
  transition:transform .2s ease;
}

.kau-card:hover{
  transform:translateY(-3px);
}

.kau-card__top{
  position:relative;
  height:150px;
  border-radius:26px 26px 0 0;
  overflow:hidden;
  background:var(--kau-card-accent, #4E6BFF);
}

.kau-card__topfill{
  position:absolute;
  inset:0;
  background:var(--kau-card-accent, #4E6BFF);
  z-index:1;
}

.kau-card__bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transform:scale(1.04);
  transition:opacity .28s ease, transform .35s ease;
  z-index:2;
}

.kau-card__overlay{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .28s ease;
  z-index:3;
  background:linear-gradient(
    180deg,
    rgba(50, 89, 251, 0.18) 0%,
    rgba(50, 89, 251, 0.42) 48%,
    rgba(50, 89, 251, 0.72) 100%
  );
}

.kau-card:hover .kau-card__bg{
  opacity:1;
  transform:scale(1);
}

.kau-card:hover .kau-card__overlay{
  opacity:1;
}

.kau-chip{
  position:absolute;
  top:18px;
  left:18px;
  z-index:5;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:8px 14px;
  border-radius:999px;
  background:#315CFF;
  color:#fff;
  font-size:16px;
  line-height:1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-arrow{
  position:absolute;
  top:18px;
  right:18px;
  z-index:5;
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#fff;
  box-shadow:0 3px 10px rgba(15,23,42,.06);
}

.kau-card__icon{
  position:absolute;
  left:50%;
  top:50%;
  z-index:4;
  transform:translate(-50%, -38%);
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.kau-card__icon svg{
  width:30px;
  height:30px;
  display:block;
}

.kau-card__body{
  position:relative;
  z-index:6;
  margin:-22px 0px 0px;
  min-height:140px;
  padding:20px 18px 18px;
  border-radius:24px;
  background:#fff;
  border:3px solid var(--kau-card-accent, #4E6BFF);
  box-shadow:0 10px 24px rgba(15,23,42,.05);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.kau-card__title{
  margin:0 0 12px;
  color:#1A150A;
  font-size:18px;
  line-height:1.22;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-card__meta{
  color:#A3A3A3;
  font-size:14px;
  line-height:1.2;
  font-weight:400;
  font-family:"TT Hoves", Arial, sans-serif;
}

@media (max-width:1200px){
  .kau-prog__grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:700px){
  .kau-prog__grid{
    grid-template-columns:1fr;
  }

  .kau-card__top{
    height:138px;
  }

  .kau-card__body{
    min-height:120px;
  }

  .kau-card__title{
    font-size:17px;
  }
}


/* =========================================
   A11Y — дополнительные страницы
========================================= */

/* Академический состав */
html.kau-a11y .kau-staff-section{
  background:#0b1220 !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-staff-section__shell{
  background:#10192b !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-staff-intro,
html.kau-a11y .kau-staff-card__photo,
html.kau-a11y .kau-staff-card__photo-placeholder{
  background:#162238 !important;
  color:#f3f7ff !important;
  border-color:rgba(141,183,255,.22) !important;
  box-shadow:none !important;
}

html.kau-a11y .kau-staff-card__name{
  color:#ffffff !important;
}

html.kau-a11y .kau-staff-card__position,
html.kau-a11y .kau-staff-card__more{
  color:#8db7ff !important;
}

html.kau-a11y .kau-staff-intro p,
html.kau-a11y .kau-staff-card__text p,
html.kau-a11y .kau-staff-card__facts li{
  color:#c8d7f0 !important;
}

html.kau-a11y .kau-staff-card__facts li::before{
  color:#8db7ff !important;
}

/* Документы KAU */
html.kau-a11y .kau-docs-section,
html.kau-a11y .kau-docs-modal-section{
  background:#0b1220 !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-docs-section__shell,
html.kau-a11y .kau-docs-modal-section__shell{
  background:#10192b !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-docs-topbox,
html.kau-a11y .kau-docs-modal-topbox,
html.kau-a11y .kau-docs-card,
html.kau-a11y .kau-docs-modal-card,
html.kau-a11y .kau-docs-empty{
  background:#162238 !important;
  color:#f3f7ff !important;
  border-color:rgba(141,183,255,.22) !important;
  box-shadow:none !important;
}

html.kau-a11y .kau-docs-topbox__text p,
html.kau-a11y .kau-docs-modal-topbox__text p,
html.kau-a11y .kau-docs-empty{
  color:#c8d7f0 !important;
}

html.kau-a11y .kau-docs-card__title,
html.kau-a11y .kau-docs-modal-card__title,
html.kau-a11y .kau-docs-modal-card__desc,
html.kau-a11y .kau-docs-modal-card__logo{
  color:#ffffff !important;
}

html.kau-a11y .kau-docs-search__input{
  background:#0b1220 !important;
  color:#ffffff !important;
  border:1px solid rgba(141,183,255,.22) !important;
}

html.kau-a11y .kau-docs-search__input::placeholder{
  color:#9fb4d8 !important;
}

html.kau-a11y .kau-docs-card__btn,
html.kau-a11y .kau-docs-modal-card__btn{
  background:#2d6cff !important;
  color:#ffffff !important;
  border:1px solid rgba(141,183,255,.18) !important;
}

html.kau-a11y .kau-docs-card__btn:hover,
html.kau-a11y .kau-docs-modal-card__btn:hover{
  background:#4c87ff !important;
  color:#ffffff !important;
}

/* если используется модалка документов */
html.kau-a11y .kau-docs-modal__dialog,
html.kau-a11y #kauDocsModal .kau-modal__dialog{
  background:#10192b !important;
  color:#f3f7ff !important;
}

html.kau-a11y #kauDocsModal .kau-modal__title,
html.kau-a11y #kauDocsModalTitle{
  color:#ffffff !important;
}

html.kau-a11y #kauDocsModalText,
html.kau-a11y #kauDocsModalText p{
  color:#c8d7f0 !important;
}



/* CATEGORY: Новости и события */
.kau-catnews{
  padding:32px 0 72px;
}

.kau-catnews__top{
	margin-top: 24px;
  margin-bottom:24px;
}

.kau-catnews__desc{
  margin-top:10px;
  color:#6B7280;
  font-size:16px;
  line-height:1.5;
}

.kau-catnews__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.kau-catnews__card{
  background:#F6F8FF;
  border-radius:18px;
  overflow:hidden;
}

.kau-catnews__img{
  display:block;
  height:220px;
  background:#E6ECF8;
}

.kau-catnews__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.kau-catnews__body{
  padding:14px 14px 18px;
}

.kau-catnews__date{
  margin-bottom:10px;
  color:#9A9A9A;
  font-size:14px;
  line-height:1.2;
}

.kau-catnews__title{
  margin:0 0 12px;
  font-size:20px;
  line-height:1.3;
  font-weight:500;
}

.kau-catnews__title a{
  color:#1A150A;
  text-decoration:none;
}

.kau-catnews__excerpt{
  margin-bottom:14px;
  color:#4B5563;
  font-size:15px;
  line-height:1.45;
}

.kau-catnews__more{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#0059FF;
  text-decoration:none;
  font-size:15px;
  line-height:1.2;
}

.kau-catnews__pagination{
  margin-top:28px;
}

.kau-catnews__pagination .nav-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.kau-catnews__pagination .page-numbers{
  min-width:40px;
  height:40px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#F3F4F6;
  color:#1A150A;
  text-decoration:none;
}

.kau-catnews__pagination .page-numbers.current{
  background:#0059FF;
  color:#fff;
}

@media (max-width: 980px){
  .kau-catnews__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .kau-catnews{
    padding:22px 0 48px;
  }

  .kau-catnews__grid{
    grid-template-columns:1fr;
  }

  .kau-catnews__img{
    height:190px;
  }

  .kau-catnews__title{
    font-size:17px;
  }
}

/* =========================================================
   GLOBAL RESPONSIVE PATCH
   вставить в самый конец main.css
========================================================= */

html,
body{
  max-width:100%;
  overflow-x:hidden;
}

img,
svg,
video,
canvas,
iframe{
  max-width:100%;
  height:auto;
}

:root{
  --kau-container: min(1440px, 92vw);
}

/* чтобы гриды и карточки не распирали контейнер */
.kau-wrap,
.kau-news__grid,
.kau-prog__grid,
.kau-values__grid,
.kau-staff-grid,
.kau-docs-grid,
.kau-docs-modal-grid,
.kau-ak-news-grid,
.kau-ak-participation__grid,
.kau-youth-community-grid,
.kau-youth-project-grid,
.kau-youth-news-grid,
.kau-cc-news-grid,
.kau-bp-grid,
.kau-history-intro-grid,
.kau-mission-grid,
.kau-sg-intro,
.kau-sg-tasks-grid,
.kau-ao-grid,
.kau-ak-mv-grid,
.kau-contacts-grid,
.kau-president-head,
.kau-ps-specialist,
.kau-mba-top,
.kau-mba-content,
.kau-adm-top,
.kau-adm-content,
.kau-ic-layout,
.kau-bp-layout,
.kau-cc-tabs-layout,
.kau-lead__grid,
.kau-footer__grid{
  min-width:0;
}

.kau-newsbig,
.kau-newscard,
.kau-card,
.kau-value-card,
.kau-staff-card,
.kau-docs-card,
.kau-docs-modal-card,
.kau-ak-news-card,
.kau-ak-part-card,
.kau-youth-community-card,
.kau-youth-project-card,
.kau-youth-news-card,
.kau-cc-news-card,
.kau-bp-card,
.kau-sh-card{
  min-width:0;
}

/* убираем жёсткое распирание карточек программ */
.kau-card{
  min-width:0 !important;
}

/* чтобы длинные слова/заголовки не ломали сетки */
.kau-pagehero__title,
.kau-h2,
.kau-title,
.kau-newsbig__title,
.kau-newscard__title,
.kau-card__title,
.kau-values__title,
.kau-history-title,
.kau-staff-card__name,
.kau-docs-card__title,
.kau-docs-modal-card__title,
.kau-president-head__fio,
.kau-president-post-card__title,
.kau-mba-block__title,
.kau-adm-block__title,
.kau-bp-modal__title,
.kau-ak-cta__title,
.kau-youth-title,
.kau-cc-news__title,
.kau-cc-alumni__title,
.kau-sh-title,
.kau-sg-title{
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* ---------- header ---------- */

.kau-header__inner{
  padding-left:12px;
  padding-right:12px;
}

.kau-header__left,
.kau-header__right{
  min-width:0;
}

.kau-header__right{
  gap:6px;
  align-items:center;
}

.kau-header__brand .custom-logo,
.kau-logo-img{
  max-width:100%;
  height:auto;
}

/* ---------- hero ---------- */

.kau-hero{
  min-height:78svh;
}

.kau-hero__content{
  padding-left:12px;
  padding-right:12px;
}

.kau-hero__title{
  width:min(100%, 860px) !important;
  max-width:100%;
  font-size:clamp(32px, 6vw, 70px);
  line-height:1.04;
}

.kau-hero__subtitle{
  max-width:780px;
  font-size:clamp(16px, 2vw, 22px);
  line-height:1.45;
}

.kau-pagehero{
  min-height:clamp(240px, 38vw, 430px);
  padding-top:120px;
  padding-bottom:44px;
}

.kau-pagehero__title{
  font-size:clamp(30px, 5vw, 50px);
  line-height:1.05;
}

/* ---------- search ---------- */

.kau-search__form{
  align-items:center;
}

.kau-search__input{
  min-width:0;
}

/* ---------- news ---------- */

.kau-news__top,
.kau-prog__top{
  min-width:0;
}

.kau-newsbig__content{
  left:24px;
  right:24px;
  bottom:24px;
}

.kau-newscard{
  min-width:0;
}

.kau-newscard__body,
.kau-newsbig__content{
  min-width:0;
}

/* ---------- tabs ---------- */

.kau-tabs,
.kau-values-slider__controls,
.kau-president-posts__nav,
.kau-sh-slider-nav,
.kau-cc-slider-nav{
  flex-wrap:wrap;
}

.kau-tabs{
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:thin;
  -webkit-overflow-scrolling:touch;
}

.kau-tab{
  white-space:nowrap;
  flex:0 0 auto;
}

/* ---------- forms ---------- */

.kau-leadform__grid,
.kau-form__grid{
  min-width:0;
}

.kau-inp,
.kau-input,
.kau-textarea,
.kau-search__input,
.kau-docs-search__input,
select.kau-inp,
textarea.kau-ta{
  min-width:0;
}

.kau-leadform__bottom{
  flex-wrap:wrap;
}

.kau-leadform__status{
  order:2;
  width:100%;
}

.kau-send{
  max-width:100%;
}

/* ---------- footer ---------- */

.kau-footer__grid > *{
  min-width:0;
}

.kau-footer__nav{
  flex-wrap:wrap;
  gap:24px;
}

/* ---------- mega menu ---------- */

.kau-mega{
  overflow:auto;
}

.kau-mega__inner{
  min-height:100svh;
}

.kau-mega__grid{
  min-height:calc(100svh - 74px);
}

.kau-mega__left,
.kau-mega__mid,
.kau-mega__right{
  min-width:0;
}

.kau-mega-mainlink,
.kau-mega-midlink,
.kau-mega__midlist a{
  overflow-wrap:anywhere;
}

/* ---------- sticky sidebars on smaller screens ---------- */

@media (max-width: 1199px){
  .kau-mba-tabs__inner,
  .kau-adm-tabs__inner,
  .kau-cc-tabs,
  .kau-bp-filter__inner,
  .kau-ic-sidebar__inner{
    top:88px;
  }
}

/* ---------- laptop / tablet ---------- */

@media (max-width: 1199px){

  :root{
    --kau-container: min(100%, calc(100vw - 32px));
  }

  .kau-h2{
    font-size:42px;
  }

  .kau-header__inner{
    gap:10px;
  }

  .kau-access .vision{
    display:none;
  }

  .kau-search__form{
    grid-template-columns:1fr auto;
  }

  .kau-search__close{
    grid-column:1 / -1;
    width:100%;
  }

  .kau-mega__grid{
    grid-template-columns:280px 1fr 320px !important;
  }

  .kau-mega__inner{
    padding:20px 20px 26px;
  }

  .kau-mega__left{
    padding:28px 16px;
  }

  .kau-mega__mid{
    padding:28px 20px;
  }

  .kau-mega-card{
    width:100%;
    height:auto;
    min-height:360px;
    padding:24px 18px;
  }

  .kau-newsbig{
    min-height:auto;
  }

  .kau-newsbig__media{
    height:300px;
  }

  .kau-newscard{
    grid-template-columns:140px 1fr;
  }

  .kau-prog__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }

  .kau-values__grid,
  .kau-ak-participation__grid,
  .kau-ak-news-grid,
  .kau-youth-community-grid,
  .kau-youth-project-grid,
  .kau-youth-news-grid,
  .kau-cc-news-grid,
  .kau-staff-grid,
  .kau-docs-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .kau-docs-modal-grid{
    grid-template-columns:1fr;
  }

  .kau-lead__grid{
    grid-template-columns:1fr;
  }

  .kau-footer__grid{
    grid-template-columns:1fr 1fr;
  }
}

/* ---------- tablet ---------- */

@media (max-width: 991px){

  .kau-header__inner{
    padding-top:10px;
    padding-bottom:10px;
  }

  .kau-header__brand .custom-logo,
  .kau-logo-img{
    max-height:44px;
  }

  .kau-hero{
    min-height:auto;
    padding-top:86px;
  }

  .kau-hero__content{
    padding-top:34px;
    padding-bottom:34px;
  }

  .kau-hero__title{
    font-size:clamp(30px, 7vw, 52px) !important;
    width:100% !important;
    max-width:100%;
  }

  .kau-hero__subtitle{
    margin-bottom:22px;
  }

  .kau-pagehero{
    padding-top:110px;
    padding-bottom:34px;
  }

  .kau-news__top,
  .kau-prog__top{
    flex-direction:column;
    align-items:flex-start;
  }

  .kau-h2{
    font-size:34px;
    max-width:none !important;
  }

  .kau-newsbig__media{
    height:260px;
  }

  .kau-newsbig__content{
    left:18px;
    right:18px;
    bottom:18px;
  }

  .kau-newsbig__title{
    font-size:20px;
  }

  .kau-newscard{
    grid-template-columns:110px 1fr;
    gap:12px;
  }

  .kau-mega__grid{
    grid-template-columns:1fr !important;
    gap:0;
    height:auto;
  }

  .kau-mega__right{
    display:none;
  }

  .kau-mega__left,
  .kau-mega__mid{
    padding:20px 0;
    border-right:0;
  }

  .kau-mega-mainlink{
    font-size:18px;
  }

  .kau-mega-midlink,
  .kau-mega__midlist a{
    font-size:16px;
  }

  .kau-mission-grid,
  .kau-history-intro-grid,
  .kau-president-head,
  .kau-contacts-grid,
  .kau-ak-mv-grid,
  .kau-ak-qurultai,
  .kau-ps-specialist,
  .kau-mba-top,
  .kau-mba-content,
  .kau-adm-top,
  .kau-adm-content,
  .kau-ic-layout,
  .kau-bp-layout,
  .kau-cc-tabs-layout,
  .kau-sg-intro,
  .kau-ao-grid{
    grid-template-columns:1fr !important;
  }

  .kau-mba-tabs__inner,
  .kau-adm-tabs__inner,
  .kau-cc-tabs,
  .kau-bp-filter__inner,
  .kau-ic-sidebar__inner{
    position:static !important;
    top:auto !important;
  }

  .kau-footer__grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .kau-footer{
    padding-top:56px;
  }

  .kau-footer__nav{
    gap:18px;
  }
}

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

@media (max-width: 767px){

  :root{
    --kau-container: min(100%, calc(100vw - 20px));
  }

  .kau-wrap,
  .kau-header__inner,
  .kau-hero__content{
    width:var(--kau-container);
  }

  .kau-header__inner{
    gap:8px;
    padding-left:0;
    padding-right:0;
  }

  .kau-header__left{
    gap:8px;
  }

  .kau-header__right{
    gap:2px;
  }

  .kau-iconbtn,
  .kau-lang,
  .kau-access{
    transform:scale(.94);
    transform-origin:center;
  }

  .kau-lang__code{
    font-size:12px;
  }

  .kau-hero{
    padding-top:82px;
    min-height:auto;
  }

  .kau-hero__content{
    padding-top:28px;
    padding-bottom:28px;
  }

  .kau-hero__title{
    font-size:clamp(28px, 8.8vw, 40px) !important;
    margin-bottom:16px;
  }

  .kau-hero__subtitle{
    font-size:15px;
    line-height:1.45;
    margin-bottom:18px;
  }

  .kau-btn,
  .kau-btn--pill{
    width:100%;
    justify-content:center;
  }

  .kau-search__inner{
    width:min(100%, calc(100vw - 20px));
  }

  .kau-search__form{
    grid-template-columns:1fr;
    border-radius:18px;
    padding:12px;
  }

  .kau-search__btn,
  .kau-search__close{
    width:100%;
    min-height:46px;
  }

  .kau-search__input{
    min-height:46px;
    font-size:16px;
  }

  .kau-news{
    padding-top:34px;
  }

  .kau-news__grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .kau-newsbig{
    border-radius:18px;
  }

  .kau-newsbig__media{
    height:220px;
  }

  .kau-date{
    top:12px;
    left:12px;
    font-size:13px;
    padding:10px 14px;
  }

  .kau-newsbig__content{
    left:14px;
    right:14px;
    bottom:14px;
  }

  .kau-newsbig__title{
    font-size:18px;
    margin-bottom:12px;
  }

  .kau-newsbig__excerpt{
    font-size:13px;
    margin-bottom:12px;
  }

  .kau-newscard{
    grid-template-columns:1fr;
  }

  .kau-newscard__img{
    aspect-ratio:16 / 9;
  }

  .kau-prog{
    padding-top:48px;
    padding-bottom:48px;
  }

  .kau-tabs{
    gap:8px;
    padding:4px;
  }

  .kau-tab{
    font-size:14px;
    padding:10px 12px;
  }

  .kau-prog__group-title{
    font-size:16px;
  }

  .kau-prog__grid{
    grid-template-columns:1fr !important;
    gap:16px;
  }

  .kau-card__title{
    font-size:16px !important;
  }

  .kau-chip{
    font-size:12px;
    padding:7px 12px;
  }

  .kau-arrow{
    width:30px;
    height:30px;
  }

  .kau-lead{
    padding-top:36px;
    padding-bottom:40px;
  }

  .kau-lead__h{
    font-size:30px !important;
    line-height:1.04;
  }

  .kau-lead__card{
    padding:18px;
    border-radius:20px;
  }

  .kau-leadform__grid{
    grid-template-columns:1fr !important;
  }

  .kau-ta{
    grid-column:auto;
    min-height:96px;
  }

  .kau-leadform__bottom{
    flex-direction:column;
    align-items:stretch;
  }

  .kau-send{
    width:100%;
    justify-content:center;
    font-size:16px;
    padding:14px 16px;
  }

  .kau-values__grid,
  .kau-staff-grid,
  .kau-docs-grid,
  .kau-docs-modal-grid,
  .kau-ak-participation__grid,
  .kau-ak-news-grid,
  .kau-youth-community-grid,
  .kau-youth-project-grid,
  .kau-youth-news-grid,
  .kau-cc-news-grid,
  .kau-bp-grid,
  .kau-sg-tasks-grid,
  .kau-ao-grid{
    grid-template-columns:1fr !important;
  }

  .kau-history-row__gallery{
    grid-template-columns:1fr !important;
  }

  .kau-docs-search__input{
    height:52px;
    font-size:15px;
    padding-right:16px;
  }

  .kau-docs-card,
  .kau-docs-modal-card,
  .kau-value-card,
  .kau-ak-part-card,
  .kau-youth-community-card,
  .kau-youth-project-card,
  .kau-sg-task-card,
  .kau-ao-card{
    min-height:auto;
  }

  .kau-president-head__actions,
  .kau-ak-slider-nav,
  .kau-values-slider__controls,
  .kau-president-posts__nav,
  .kau-sh-slider-nav,
  .kau-cc-slider-nav{
    width:100%;
    justify-content:center;
  }

  .kau-president-btn,
  .kau-ak-btn,
  .kau-mba-btn,
  .kau-adm-btn,
  .kau-bp-modal__btn,
  .kau-docs-modal__btn,
  .kau-president-modal__btn,
  .kau-ps-btn{
    width:100%;
    justify-content:center;
  }

  .kau-footer{
    padding:42px 0 24px;
  }

  .kau-footer__nav{
    flex-direction:column;
    gap:14px;
  }

  .kau-socials{
    flex-wrap:wrap;
  }
}

/* ---------- very small devices ---------- */

@media (max-width: 420px){

  .kau-header__brand .custom-logo,
  .kau-logo-img{
    max-height:38px;
  }

  .kau-iconbtn{
    width:38px;
    height:38px;
  }

  .kau-lang{
    padding:6px 8px;
  }

  .kau-hero__title{
    font-size:26px !important;
  }

  .kau-pagehero__badge{
    font-size:12px;
    padding:7px 12px;
  }

  .kau-pagehero__title{
    font-size:28px;
  }

  .kau-h2,
  .kau-values__title,
  .kau-history-title,
  .kau-ak-title,
  .kau-youth-title,
  .kau-sh-title,
  .kau-cc-news__title,
  .kau-cc-alumni__title,
  .kau-sg-title{
    font-size:26px !important;
  }

  .kau-tab{
    font-size:13px;
  }

  .kau-docs-search__input,
  .kau-inp,
  .kau-input,
  .kau-textarea,
  .kau-search__input{
    font-size:14px;
  }

  .kau-send,
  .kau-btn,
  .kau-btn--pill{
    min-height:44px;
  }
}


/* SINGLE PROGRAM PAGE */
.kau-program-single-section{
  position:relative;
  z-index:4;
  background:transparent;
  margin-top:-33px;
}

.kau-program-single-section__shell{
  width:100%;
  margin:0 auto;
  background:#fff;
  border-radius:30px 30px 0 0;
  padding:30px 0 72px;
  overflow:hidden;
}

.kau-program-single-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:30px;
  align-items:start;
}

.kau-program-single-main{
  min-width:0;
}

.kau-program-single-topcard{
  background:#F6F8FF;
  border-radius:24px;
  padding:22px 22px 20px;
  margin-bottom:22px;
}

.kau-program-single-topcard__line{
  width:100%;
  height:3px;
  background:#3259FB;
  margin-bottom:22px;
}

.kau-program-single-topcard__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px 22px;
}

.kau-program-single-fact__label{
  margin-bottom:8px;
  color:#3259FB;
  font-size:15px;
  line-height:1.2;
  font-weight:600;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-program-single-fact__value{
  color:#1A150A;
  font-size:18px;
  line-height:1.45;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-program-single-image{
  border-radius:24px;
  overflow:hidden;
  background:#E8EDF8;
  margin-bottom:24px;
}

.kau-program-single-image img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.kau-program-single-content{
  background:#fff;
}

.kau-program-single-content__line{
  width:100%;
  height:3px;
  background:#3259FB;
  margin-bottom:22px;
}

.kau-program-single-content__body{
  color:#1A150A;
}

.kau-program-single-content__body p{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.7;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-program-single-content__body p:last-child{
  margin-bottom:0;
}

.kau-program-single-content__body h2,
.kau-program-single-content__body h3,
.kau-program-single-content__body h4{
  margin:30px 0 16px;
  color:#1A150A;
  font-family:"TT Hoves", Arial, sans-serif;
  font-weight:700;
  line-height:1.2;
}

.kau-program-single-content__body h2{
  font-size:34px;
}

.kau-program-single-content__body h3{
  font-size:26px;
}

.kau-program-single-content__body h4{
  font-size:22px;
}

.kau-program-single-content__body ul,
.kau-program-single-content__body ol{
  margin:0 0 18px;
  padding-left:24px;
}

.kau-program-single-content__body li{
  margin:0 0 8px;
  color:#1A150A;
  font-size:18px;
  line-height:1.65;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-program-single-content__body a{
  color:#3259FB;
  text-decoration:none;
  font-weight:500;
}

.kau-program-single-side{
  min-width:0;
}

.kau-program-single-side__card{
  position:sticky;
  top:110px;
  background:#3259FB;
  border-radius:24px;
  padding:24px 22px;
  color:#fff;
}

.kau-program-single-side__badge{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:14px;
  line-height:1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
  margin-bottom:18px;
}

.kau-program-single-side__title{
  margin:0 0 16px;
  color:#fff;
  font-size:20px;
  line-height:1;
  font-weight:700;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-program-single-side__meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:rgba(255,255,255,.88);
  font-size:16px;
  line-height:1.45;
  font-family:"TT Hoves", Arial, sans-serif;
}

.kau-program-single-side__actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:26px;
}

.kau-program-single-btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:12px 18px;
  text-decoration:none;
  font-size:16px;
  line-height:1;
  font-weight:500;
  font-family:"TT Hoves", Arial, sans-serif;
  transition:.2s ease;
}

.kau-program-single-btn--primary{
  background:#fff;
  color:#1A150A;
}

.kau-program-single-btn--primary:hover{
  background:#F3F6FF;
}

.kau-program-single-btn--light{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.kau-program-single-btn--light:hover{
  background:rgba(255,255,255,.18);
}

@media (max-width: 900px){
  .kau-program-single-layout{
    grid-template-columns:1fr;
  }

  .kau-program-single-side__card{
    position:static;
  }
}

@media (max-width: 640px){
  .kau-program-single-section{
    margin-top:-18px;
  }

  .kau-program-single-section__shell{
    width:min(100% - 16px, calc(100% - 16px));
    border-radius:22px 22px 0 0;
    padding:22px 0 48px;
  }

  .kau-program-single-topcard{
    border-radius:18px;
    padding:18px;
    margin-bottom:18px;
  }

  .kau-program-single-topcard__grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .kau-program-single-fact__label{
    font-size:14px;
  }

  .kau-program-single-fact__value{
    font-size:15px;
  }

  .kau-program-single-image{
    border-radius:18px;
    margin-bottom:18px;
  }

  .kau-program-single-content__body p,
  .kau-program-single-content__body li{
    font-size:15px;
  }

  .kau-program-single-content__body h2{
    font-size:24px;
  }

  .kau-program-single-content__body h3{
    font-size:20px;
  }

  .kau-program-single-content__body h4{
    font-size:18px;
  }

  .kau-program-single-side__card{
    border-radius:18px;
    padding:18px;
  }

  .kau-program-single-side__title{
    font-size:24px;
  }

  .kau-program-single-side__meta{
    font-size:15px;
  }

  .kau-program-single-btn{
    width:100%;
    font-size:15px;
  }
}


/* =========================================
   A11Y PATCH — все недостающие страницы + hero slider
   вставить В САМЫЙ КОНЕЦ main.css
========================================= */

/* общие недостающие секции */
html.kau-a11y .kau-staff-section,
html.kau-a11y .kau-docs-section,
html.kau-a11y .kau-docs-modal-section,
html.kau-a11y .kau-president-section,
html.kau-a11y .kau-ic-section,
html.kau-a11y .kau-mba-section,
html.kau-a11y .kau-adm-section,
html.kau-a11y .kau-bp-section,
html.kau-a11y .kau-ao-section,
html.kau-a11y .kau-youth-section,
html.kau-a11y .kau-cc-section,
html.kau-a11y .kau-ps-section,
html.kau-a11y .kau-program-single-section,
html.kau-a11y .kau-contacts-section,
html.kau-a11y .kau-catnews{
  background:#0b1220 !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-staff-section__shell,
html.kau-a11y .kau-docs-section__shell,
html.kau-a11y .kau-docs-modal-section__shell,
html.kau-a11y .kau-president-section__shell,
html.kau-a11y .kau-ic-section__shell,
html.kau-a11y .kau-mba-section__shell,
html.kau-a11y .kau-adm-section__shell,
html.kau-a11y .kau-bp-section__shell,
html.kau-a11y .kau-ao-section__shell,
html.kau-a11y .kau-youth-section__shell,
html.kau-a11y .kau-cc-section__shell,
html.kau-a11y .kau-ps-section__shell,
html.kau-a11y .kau-program-single-section__shell,
html.kau-a11y .kau-contacts-section__shell{
  background:#10192b !important;
  color:#f3f7ff !important;
}

/* карточки и светлые блоки */
html.kau-a11y .kau-staff-intro,
html.kau-a11y .kau-staff-card__photo,
html.kau-a11y .kau-staff-card__photo-placeholder,
html.kau-a11y .kau-docs-topbox,
html.kau-a11y .kau-docs-card,
html.kau-a11y .kau-docs-empty,
html.kau-a11y .kau-docs-modal-topbox,
html.kau-a11y .kau-docs-modal-card,
html.kau-a11y .kau-president-post-card__inner,
html.kau-a11y .kau-president-head__photo,
html.kau-a11y .kau-ic-topbox,
html.kau-a11y .kau-ic-sidebar__inner,
html.kau-a11y .kau-mba-top__card,
html.kau-a11y .kau-mba-facts,
html.kau-a11y .kau-mba-tabs__inner,
html.kau-a11y .kau-adm-top__card,
html.kau-a11y .kau-adm-tabs__inner,
html.kau-a11y .kau-bp-topbox,
html.kau-a11y .kau-bp-filter__inner,
html.kau-a11y .kau-bp-card__summary,
html.kau-a11y .kau-bp-card__expand-inner,
html.kau-a11y .kau-ao-intro,
html.kau-a11y .kau-ao-card,
html.kau-a11y .kau-youth-intro__card,
html.kau-a11y .kau-youth-community-card,
html.kau-a11y .kau-youth-project-card,
html.kau-a11y .kau-youth-banner,
html.kau-a11y .kau-youth-news-card,
html.kau-a11y .kau-cc-intro,
html.kau-a11y .kau-cc-tabs,
html.kau-a11y .kau-cc-news-card,
html.kau-a11y .kau-ps-intro,
html.kau-a11y .kau-program-single-topcard,
html.kau-a11y .kau-program-single-side__card,
html.kau-a11y .kau-contacts-left,
html.kau-a11y .kau-contacts-right,
html.kau-a11y .kau-contacts-right__inner,
html.kau-a11y .kau-catnews__card{
  background:#162238 !important;
  color:#f3f7ff !important;
  border-color:rgba(141,183,255,.22) !important;
  box-shadow:none !important;
}

/* заголовки */
html.kau-a11y .kau-staff-card__name,
html.kau-a11y .kau-docs-card__title,
html.kau-a11y .kau-docs-modal-card__title,
html.kau-a11y .kau-president-head__fio,
html.kau-a11y .kau-president-post-card__title,
html.kau-a11y .kau-ic-panel__title,
html.kau-a11y .kau-ic-panel__subtitle,
html.kau-a11y .kau-mba-top__title,
html.kau-a11y .kau-mba-block__title,
html.kau-a11y .kau-adm-top__title,
html.kau-a11y .kau-adm-block__title,
html.kau-a11y .kau-bp-card__title,
html.kau-a11y .kau-bp-modal__title,
html.kau-a11y .kau-ao-card__title,
html.kau-a11y .kau-youth-community-card__title,
html.kau-a11y .kau-youth-project-card__title,
html.kau-a11y .kau-youth-banner__title,
html.kau-a11y .kau-youth-news-card__title,
html.kau-a11y .kau-cc-block__title,
html.kau-a11y .kau-cc-alumni__title,
html.kau-a11y .kau-cc-news__title,
html.kau-a11y .kau-cc-person__name,
html.kau-a11y .kau-ps-title,
html.kau-a11y .kau-program-single-side__title,
html.kau-a11y .kau-contacts-left__title,
html.kau-a11y .kau-contacts-col__title,
html.kau-a11y .kau-catnews__title a{
  color:#fff !important;
}

/* основной и вторичный текст */
html.kau-a11y .kau-staff-intro p,
html.kau-a11y .kau-staff-card__text p,
html.kau-a11y .kau-staff-card__facts li,
html.kau-a11y .kau-staff-card__position,
html.kau-a11y .kau-docs-topbox__text p,
html.kau-a11y .kau-docs-modal-topbox__text p,
html.kau-a11y .kau-president-head__text p,
html.kau-a11y .kau-president-head__position,
html.kau-a11y .kau-ic-panel__text p,
html.kau-a11y .kau-ic-iconlist li,
html.kau-a11y .kau-mba-top__text p,
html.kau-a11y .kau-mba-facts__value,
html.kau-a11y .kau-mba-block__content p,
html.kau-a11y .kau-mba-block__lead,
html.kau-a11y .kau-mba-block__checklist li,
html.kau-a11y .kau-adm-top__text p,
html.kau-a11y .kau-adm-textblock__content p,
html.kau-a11y .kau-adm-iconlist__text,
html.kau-a11y .kau-adm-notice__text p,
html.kau-a11y .kau-bp-topbox p,
html.kau-a11y .kau-bp-card__subjects,
html.kau-a11y .kau-bp-card__text p,
html.kau-a11y .kau-bp-card__career-text p,
html.kau-a11y .kau-bp-modal__meta,
html.kau-a11y .kau-bp-modal__text p,
html.kau-a11y .kau-ao-intro p,
html.kau-a11y .kau-ao-card__text,
html.kau-a11y .kau-youth-intro__card p,
html.kau-a11y .kau-youth-text p,
html.kau-a11y .kau-youth-community-card__text,
html.kau-a11y .kau-youth-project-card__text,
html.kau-a11y .kau-youth-banner__text p,
html.kau-a11y .kau-youth-banner__list li,
html.kau-a11y .kau-youth-news-card__date,
html.kau-a11y .kau-cc-intro__text p,
html.kau-a11y .kau-cc-block__content p,
html.kau-a11y .kau-cc-block__lead,
html.kau-a11y .kau-cc-checklist li,
html.kau-a11y .kau-cc-notice__text p,
html.kau-a11y .kau-cc-alumni__intro p,
html.kau-a11y .kau-cc-news-card__date,
html.kau-a11y .kau-cc-person__role,
html.kau-a11y .kau-ps-intro__text p,
html.kau-a11y .kau-program-single-fact__value,
html.kau-a11y .kau-program-single-side__meta,
html.kau-a11y .kau-program-single-content__body p,
html.kau-a11y .kau-program-single-content__body li,
html.kau-a11y .kau-contacts-left__text p,
html.kau-a11y .kau-contacts-col__line a,
html.kau-a11y .kau-contacts-col__address p,
html.kau-a11y .kau-catnews__date,
html.kau-a11y .kau-catnews__excerpt{
  color:#c8d7f0 !important;
}

/* hero slider на главной */
html.kau-a11y .kau-hero-slider{
  background:#0b1220 !important;
}

html.kau-a11y .kau-hero-card{
  background:#10192b !important;
  box-shadow:none !important;
}

html.kau-a11y .kau-hero-card__title,
html.kau-a11y .kau-hero-stat__value{
  color:#ffffff !important;
}

html.kau-a11y .kau-hero-card__text,
html.kau-a11y .kau-hero-stat__label,
html.kau-a11y .kau-hero-stat__icon{
  color:#c8d7f0 !important;
}

html.kau-a11y .kau-hero-card .kau-btn{
  background:#2d6cff !important;
  color:#fff !important;
  border-color:#2d6cff !important;
}

html.kau-a11y .kau-hero-card .kau-btn__icon{
  background:#fff !important;
  color:#2d6cff !important;
}

html.kau-a11y .kau-hero-slider__pagination .swiper-pagination-bullet{
  background:#3a4f75 !important;
}

html.kau-a11y .kau-hero-slider__pagination .swiper-pagination-bullet-active{
  background:#8db7ff !important;
}

/* =========================================
   HEADER FIX — логотип не прыгает
========================================= */

.kau-header__inner{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr) !important;
  align-items:center;
}

.kau-header__left{
  justify-self:start;
  min-width:0;
}

.kau-header__brand{
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:max-content;
  min-width:180px;
  line-height:0;
}

.kau-header__brand .custom-logo-link{
  display:block;
  line-height:0;
}

.kau-header__right{
  justify-self:end;
  min-width:0;
}

.kau-header__brand .custom-logo,
.kau-logo-img{
  display:block;
  height:52px;
  width:auto;
  max-height:none;
}

@media (max-width: 991px){
  .kau-header__brand{
    min-width:140px;
  }

  .kau-header__brand .custom-logo,
  .kau-logo-img{
    height:44px;
  }
}

@media (max-width: 420px){
  .kau-header__brand{
    min-width:120px;
  }

  .kau-header__brand .custom-logo,
  .kau-logo-img{
    height:38px;
  }
}


/* =========================================
   A11Y PATCH — Student Government / Student Houses / Alumni
   вставить в САМЫЙ КОНЕЦ main.css
========================================= */

/* ===== Студенческое правительство ===== */
html.kau-a11y .kau-sg-section{
  background:#0b1220 !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-sg-section__shell{
  background:#10192b !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-sg-intro__card,
html.kau-a11y .kau-sg-task-card{
  background:#162238 !important;
  color:#f3f7ff !important;
  border-color:rgba(141,183,255,.22) !important;
  box-shadow:none !important;
}

html.kau-a11y .kau-sg-title,
html.kau-a11y .kau-sg-intro__title,
html.kau-a11y .kau-sg-task-card__title{
  color:#ffffff !important;
}

html.kau-a11y .kau-sg-intro__card p,
html.kau-a11y .kau-sg-task-card__text,
html.kau-a11y .kau-sg-bottom-text p{
  color:#c8d7f0 !important;
}

html.kau-a11y .kau-sg-role-pill{
  background:#10192b !important;
  color:#8db7ff !important;
  border-color:#4c87ff !important;
}

html.kau-a11y .kau-sg-role-pill:hover{
  background:#162238 !important;
  color:#b7d1ff !important;
}

/* ===== Дома студентов ===== */
html.kau-a11y .kau-sh-section{
  background:#0b1220 !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-sh-section__shell{
  background:#10192b !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-sh-card,
html.kau-a11y .kau-sh-faq-item{
  background:#162238 !important;
  color:#f3f7ff !important;
  border-color:rgba(141,183,255,.22) !important;
  box-shadow:none !important;
}

html.kau-a11y .kau-sh-card-gallery__slide{
  background:#0f1728 !important;
}

html.kau-a11y .kau-sh-title,
html.kau-a11y .kau-sh-card__title,
html.kau-a11y .kau-sh-faq-item__question{
  color:#ffffff !important;
}

html.kau-a11y .kau-sh-card__subtitle{
  color:#8db7ff !important;
}

html.kau-a11y .kau-sh-card__text,
html.kau-a11y .kau-sh-faq-item__content,
html.kau-a11y .kau-sh-faq-item__content p,
html.kau-a11y .kau-sh-faq-item__content li{
  color:#c8d7f0 !important;
}

html.kau-a11y .kau-sh-card-gallery__nav{
  background:#2d6cff !important;
  color:#fff !important;
}

html.kau-a11y .kau-sh-faq-item__head{
  background:#162238 !important;
  color:#fff !important;
}

html.kau-a11y .kau-sh-faq-item__body{
  background:#162238 !important;
  color:#c8d7f0 !important;
}

/* ===== Alumni KAUYMDÁSTYQ ===== */
html.kau-a11y .kau-ak-section{
  background:#0b1220 !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-ak-section__shell{
  background:#10192b !important;
  color:#f3f7ff !important;
}

html.kau-a11y .kau-ak-mv-card,
html.kau-a11y .kau-ak-part-card,
html.kau-a11y .kau-ak-news-card,
html.kau-a11y .kau-ak-cta,
html.kau-a11y .kau-ak-qurultai__image{
  background:#162238 !important;
  color:#f3f7ff !important;
  border-color:rgba(141,183,255,.22) !important;
  box-shadow:none !important;
}

html.kau-a11y .kau-ak-title,
html.kau-a11y .kau-ak-title-small,
html.kau-a11y .kau-ak-mv-card__title,
html.kau-a11y .kau-ak-news-card__title,
html.kau-a11y .kau-ak-cta__title{
  color:#ffffff !important;
}

html.kau-a11y .kau-ak-mv-card__text p,
html.kau-a11y .kau-ak-qurultai__text p,
html.kau-a11y .kau-ak-alqa__text p,
html.kau-a11y .kau-ak-part-card__text,
html.kau-a11y .kau-ak-cta__text p{
  color:#c8d7f0 !important;
}

html.kau-a11y .kau-ak-qurultai{
  border-top-color:#4c87ff !important;
}

html.kau-a11y .kau-ak-btn{
  background:#2d6cff !important;
  color:#fff !important;
}

html.kau-a11y .kau-ak-btn span{
  background:#fff !important;
  color:#2d6cff !important;
}

html.kau-a11y .kau-ak-form__grid input,
html.kau-a11y .kau-ak-form__grid select,
html.kau-a11y .kau-ak-form__grid textarea{
  background:#0b1220 !important;
  color:#fff !important;
  border:1px solid rgba(141,183,255,.22) !important;
}

html.kau-a11y .kau-ak-form__grid input::placeholder,
html.kau-a11y .kau-ak-form__grid textarea::placeholder{
  color:#9fb4d8 !important;
}

html.kau-a11y .kau-ak-form__status.is-error{
  color:#ffb8b8 !important;
}

html.kau-a11y .kau-ak-form__status.is-success{
  color:#a8ffbf !important;
}


.kau-mega-langwrap{
  position:relative;
  display:flex;
  align-items:center;
}

.kau-mega__lang{
  display:flex;
  align-items:center;
  gap:8px;
  border:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
  padding:8px 10px;
  border-radius:999px;
  font-weight:700;
}

.kau-mega__lang:hover{
  background:rgba(255,255,255,.08);
}

.kau-mega-langdd{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:84px;
  background:rgba(11,18,32,.96);
  border-radius:14px;
  padding:6px;
  box-shadow:0 16px 40px rgba(0,0,0,.25);
  backdrop-filter:blur(10px);
}

.kau-mega-langitem{
  display:flex;
  padding:10px 12px;
  border-radius:12px;
  color:#fff;
  text-transform:uppercase;
  font-weight:700;
  text-decoration:none;
}

.kau-mega-langitem:hover{
  background:rgba(255,255,255,.10);
}

.kau-mega-langitem.is-active{
  background:rgba(255,255,255,.14);
}