body.home {
	background: var(--color-bg);
}

/* === Hero === */

.hero {
	background: #fff;
	padding: 0;
}

.hero .container {
	max-width: 100% !important;
	width: 100%;
	padding: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    min-height: calc(100vh - 205px);
}

.hero .left {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: url(../img/hero-collage.webp);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}

.stats-row {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.stat-pill {
    background: linear-gradient(135deg, #1e9bff, #7b8fbf);
    padding: 3px;
    border-radius: 60px;
}

.stat-pill-inner {
    background: #ffffff;
    border-radius: inherit;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #111827;
    white-space: nowrap;
}

.hero h1 {
    font-size: 98px;
    margin: 0;
    padding: 0;
    line-height: 1em;
    margin-top: 20px;
}

.hero h2 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 25px;
    margin: 0;
    padding: 0;
}

.hero .right {
    display: grid;
    gap: 12px;
    max-width: 800px;
    padding: 60px 60px 60px 80px;
}

.hero .hero-split {
    position: relative;
    display: flex;
    border-radius: 24px;
    background: linear-gradient(100.12deg, #2366D3 -2.41%, #143974 92.79%);
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    min-height: 242px;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.hero .hero-split-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
}

.hero .hero-split-bg img {
	position: absolute;
	top: -20px;
	right: -50px;
	width: auto;
	max-height: calc(100% + 50px);
	filter: blur(2px);
	opacity: 0.8;
}

.hero .hero-split-content {
	position: relative;
	display: flex;
	flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 30px 20px 10px;
    z-index: 2;
}

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

.hero-split .title {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
	line-height: 1.2em;
}

.hero-split .kicker {
	color: #fff;
	font-size: 12px;
	font-weight: 400;
}

.hero-split:hover {
	filter: brightness(1.15);
	transform: translateY(-4px);
	box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
}

/* === Status === */

.status {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(88.78deg, #162256 0%, #304ABC 50%, #162256 100%);
    padding: 70px 0;
}

.status .container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.status .section-title {
	font-size: 28px;
	color: rgba(255,255,255,0.8);
}

.status .section-title,
.status .section-kicker {
	text-align: center;
}

.status .section-title strong {
	color: #fff;
}

.status-gallery {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.status-gallery .owl-nav {
    position: absolute;
    display: flex;
    top: 50%;
    width: 100%;
    height: 48px;
    transform: translateY(-24px);
    justify-content: space-between;
    padding: 0 20px;
}

.status-gallery .owl-nav button {
    position: relative;
    display: flex;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.status-gallery .owl-nav button span {
	display: none !important;
}

.status-gallery .owl-nav button.owl-prev {
	background: url('../img/chevron-left.svg');
	background-size: 28px;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #ffffff;
}

.status-gallery .owl-nav button.owl-next {
	background: url('../img/chevron-right.svg');
	background-size: 28px;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #ffffff;
}

.status-gallery .status-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-gallery .status-slide::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.status-gallery .status-slide img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.8s ease;
}

.status-gallery .owl-item.active .status-slide img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .status-gallery .status-slide {
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .status-gallery .status-slide {
    border-radius: 10px;
  }
}

.status-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* modern browsers */
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

/* Fallback for older browsers (if aspect-ratio not supported) */
.status-video::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 9/16 */
}

/* Make the <video> fill the container */
.status-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* keep proportions, crop if needed */
  border-radius: 20px;
  display: block;
}

/* Optional: keep controls visible and styled cleanly */
.status-video video::-webkit-media-controls-panel {
  background: rgba(0, 0, 0, 0.2);
}

.status-video video::-webkit-media-controls-enclosure {
  border-radius: 0 0 20px 20px;
}

/* Responsive corner adjustments */
@media (max-width: 768px) {
  .status-video {
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .status-video {
    border-radius: 10px;
  }
}


/* === History === */

.history {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	padding: 70px 0;
}

.history .container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.history-split {
	display: grid;
	grid-template-columns: 0.7fr 1fr;
	gap: 40px;
}

.history .left {
	display: grid;
	grid-template-rows: 0.9 1fr;
	gap: 30px;
	height: 100%;
	align-items: stretch;
}

.photos-split {
	display: grid;
	grid-template-columns: 1fr 0.8fr;
	gap: 30px;
}

img.history-photo {
	max-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 24px;
}

.history .right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.history .section-title {
	font-size: 2em;
}

.history .section-content {
	padding: 30px 0;
}

.history .section-content ul {
	display: flex;
	flex-direction: column;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.history .section-content ul li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 8px;
	line-height: 1.35em;
	font-weight: 400;
	font-size: 18px;
}

.history .section-content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.4em;
	width: 14px;
	height: 14px;
	background: url("../img/bullet.svg") no-repeat center center;
	background-size: contain;
}

.history .section-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 3px solid #3A80F5;
    border-radius: 24px;
    padding: 40px 30px;
    font-weight: 600;
    font-size: 26px;
    line-height: 1.35em;
    margin: 0;
}

/* === Timeline === */

.timeline {
    position: relative;
    background: #fff;
    padding: 40px 0 35px;
}

.timeline-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: #f8f8f8;
	  background-image: linear-gradient(
	    32deg,
	    #f8f8f8 30px,
	    #fff
	  );
	  background-size: 120px 120px;
	  background-position: top center;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
    z-index: 1;
}

.timeline .container {
	position: relative;
	z-index: 3;
}

.mgimo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0 auto;
  max-width: 1160px;
}

/* ======== 12×12 MOSAIC GRID ======== */
.mgimo-grid.mosaic-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(90px, auto)); /* base row height ≈ 90px */
  gap: 24px;
  grid-auto-flow: dense; /* packs items tightly */
}

/* span utilities (columns) */
.col-span-1  { grid-column: span 1; }
.col-span-2  { grid-column: span 2; }
.col-span-3  { grid-column: span 3; }
.col-span-4  { grid-column: span 4; }
.col-span-5  { grid-column: span 5; }
.col-span-6  { grid-column: span 6; }
.col-span-7  { grid-column: span 7; }
.col-span-8  { grid-column: span 8; }
.col-span-9  { grid-column: span 9; }
.col-span-10 { grid-column: span 10; }
.col-span-11 { grid-column: span 11; }
.col-span-12 { grid-column: span 12; }

/* span utilities (rows) */
.row-span-1  { grid-row: span 1; }
.row-span-2  { grid-row: span 2; }
.row-span-3  { grid-row: span 3; }
.row-span-4  { grid-row: span 4; }
.row-span-5  { grid-row: span 5; }
.row-span-6  { grid-row: span 6; }
.row-span-7  { grid-row: span 7; }
.row-span-8  { grid-row: span 8; }
.row-span-9  { grid-row: span 9; }
.row-span-10 { grid-row: span 10; }
.row-span-11 { grid-row: span 11; }
.row-span-12 { grid-row: span 12; }

/* Responsive fallbacks */
@media (max-width: 1200px) {
  .mgimo-grid.mosaic-12 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: none;        /* let auto rows flow */
  }
}
@media (max-width: 700px) {
  .mgimo-grid.mosaic-12 {
    grid-template-columns: 1fr;      /* stack */
    grid-auto-rows: auto;
  }
  /* full-width on mobile */
  .mgimo-grid.mosaic-12 .grid-item {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }
}

.mgimo-grid .grid-item {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease-in-out;
}

.grid-item:hover {
    transform: translateY(-2px);
    z-index: 4;
}

.grid-image {
    position: absolute;
    width: 100%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
    object-fit: contain;
    object-position: bottom right;
    opacity: 0.05;
    transition: all 0.25s ease-in-out;
}

.bach,
.mag {
	justify-content: flex-end !important;
}

.mag::after, .bach::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.bach {
	background: url('../img/bach.webp') !important;
	background-size: cover !important;
	background-position: center center !important;
}

.mag {
	background: url('../img/mag.webp') !important;
	background-size: cover !important;
	background-position: center center !important;
}

.bach .grid-item-title,
.bach .grid-item-description,
.mag .grid-item-title,
.mag .grid-item-description {
	color: #fff;
}

.geneva .grid-image {
    width: 80px;
    height: 80px;
    position: relative;
    display: block;
    opacity: 1 !important;
    filter: brightness(1) saturate(1) !important;
    margin-bottom: 20px;
}

.biz .grid-image {
    width: 80px;
    height: 80px;
    position: relative;
    display: block;
    opacity: 1 !important;
    filter: brightness(1) saturate(1) !important;
    margin-bottom: 20px;
}

.grid-item:hover .grid-image {
    opacity: 0.1;
    filter: saturate(3);
}

.grid-item-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.mgimo-grid .grid-item-counter {
    font-size: 52px;
    font-weight: 800;
    color: #c62828;
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    align-items: center;
}

@media (min-width: 768px) {
  .grid-item-counter {
    font-size: 2.4rem;
  }
}

.grid-item-title {
    font-size: 22px;
    font-weight: 700;
    color: #3d4149;
}

.grid-item-description {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #555;
}

.grid-item-description .pair {
  display: block;
  margin-top: 4px;
}

.mgimo-grid .partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
}

.mgimo-grid .partner-card:hover .partner-logo {
	transform: none;
}

.mgimo-grid .partner-logo {
	padding: 20px;
}

.mgimo-grid .partner-name {
	color: #1d1d1d;
	font-size: 14px;
}


/* === Partners === */

.partners {
	background: #020024;
	background: linear-gradient(146deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
 	padding: 70px 0;
}

.partners .container {
	display: flex;
	flex-direction: column;
	gap: 70px;
}

.partners .section-header h2 {
	color: #fff;
	font-size: 40px;
	line-height: 1.35em;
	text-align: center;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px;
}

.partner-card {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.partner-logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	padding: 30px;
	transform: translateY(0) scale(1);
	cursor: pointer;
	transition: all 0.15s ease-in-out;
}

.partner-card:hover .partner-logo {
	transform: translateY(-8px) scale(1.05);
}

.partner-logo img,
.partner-logo svg {
	max-width: 160px;
	width: 100%;
}

.partner-name {
	color: #fff;
	margin: 0;
}

/* === Benefits === */

.benefits {
	background: linear-gradient(88.78deg, #162256 0%, #142988 50%, #162256 100%);
 	padding: 35px 0 70px;
}

.benefits .container {
	display: flex;
	flex-direction: column;
	gap: 70px;
}

.benefits .section-header h2 {
	color: #fff;
	font-size: 40px;
	line-height: 1.35em;
	text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefits-card {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    order: 2;
}

.benefits-card.active {
    background: rgba(255, 255, 255, 0.15);
}

.benefits-icon {
	position: relative;
	display: flex;
	width: 80px;
	height: 80px;
	align-items: center;
	justify-content: center;
}

.benefits-icon svg,
.benefits-icon img {
	width: 100%;
	height: auto;
}

.benefit-name {
    font-size: 24px !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.35em;
    text-align: left;
    color: #fff;
    margin: 0;
}

.benefit-description {
    font-size: 16px;
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.8);
}

.benefit-image {
    aspect-ratio: 16 / 9;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    order: 1;
}

.benefit-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* === Video === */

.video {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	padding: 70px 0;
}

.video .container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.video-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

iframe {
	max-width: 100%;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 24px;
}

.video .right {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.video .section-title {
	font-size: 2em;
}

.video .section-content {
	padding: 30px 0;
}

.video .section-content ul {
	display: flex;
	flex-direction: column;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.video .section-content ul li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 8px;
	line-height: 1.35em;
	font-weight: 400;
	font-size: 18px;
}

.video .section-content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.4em;
	width: 14px;
	height: 14px;
	background: url("../img/bullet.svg") no-repeat center center;
	background-size: contain;
}

/* === Graduates === */

.graduates {
	background: #ffffff;
	background: linear-gradient(135deg,rgba(255, 255, 255, 1) 5%, rgba(225, 230, 235, 1) 100%);
 	padding: 70px 0;
 	overflow: hidden;
}

.graduates .container {
	display: flex;
	flex-direction: column;
	gap: 70px;
}

.graduates .section-header h2 {
	color: #1d1d1d;
	font-size: 40px;
	line-height: 1.35em;
	text-align: center;
}

.graduates-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

.graduates-grid .owl-stage-outer {
    overflow: visible;
}

.graduate-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 24px;
    background: radial-gradient(157.84% 112.41% at -14.13% -5.64%, rgb(232 232 232 / 30%) 0%, rgb(204 204 204 / 30%) 100%);
    justify-content: flex-start;
}

.graduate-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 4 / 6;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	transform: translateY(0) scale(1);
	transition: all 0.15s ease-in-out;
}

.graduate-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.graduate-name {
    color: #1d1d1d;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3em;
    margin: 0;
    margin: 0;
    min-height: 48px;
}

.graduate-title {
	color: rgba(0,0,0,0.8);
	margin: 0;
	font-size: 14px;
	line-height: 1.35em;
}

.graduates-footer-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    background: radial-gradient(119.68% 214.84% at -25.16% -107.8%, rgb(255 255 255 / 69%) 0%, rgb(255 255 255) 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.2);
    gap: 0;
}

.graduates-footer-wrap h3 {
	color: #1d1d1d;
	text-align: center;
	font-size: 36px;
}

.graduates-footer-wrap .section-kicker {
	color: #1d1d1d;
	opacity: 0.9;
	text-align: center;
	font-size: 18px;
}

.graduates-footer-wrap h3 strong {
	color: #b01c1c;
}

.graduates-footer {
	position: relative;
}

/* Doctors */

.dc-owl-main { position: relative; max-width: 1200px; margin: 28px auto 10px; }

.dc-owl-main .owl-stage-outer {
    padding: 8px 0 14px;
    overflow: visible;
}

.dc-card { position: relative; overflow: hidden; border-radius: 16px; background:#f7f7f7; }
.dc-image {
    height: auto;
    object-fit: cover;
    min-width: 100%;
    aspect-ratio: 1 / 1;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.dc-name { font-weight: 700; }
.dc-job  { font-weight: 500; opacity: .95; }

.dc-owl-main .owl-stage {
    display: flex;
    align-items: stretch;
}

.dc-owl-main .owl-item {
	opacity: 0;
	transform: scale(0.95);
	transition: all 0.2s ease-in-out;
}

.dc-owl-main .owl-item.active {
	opacity: 0.9;
}

.dc-owl-main .owl-item.active.center {
	opacity: 1;
	box-shadow: 0 0 20px -10px rgba(0,0,0,0.2);
	transform: scale(1);
}

.dc-slide {
    display: grid;
    height: 100%;
    grid-template-rows: auto 1fr;
    padding: 2px;
    background: #e3e3e3;
    border-radius: 18px;
    transition: all 0.25s ease-in-out;
    flex-direction: column;
}

.owl-item.active.center .dc-slide {
	background: var(--color-accent);
}

.dc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.dc-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 18px;
    border-radius: 0 0 16px 16px;
    background: #fff;
    justify-content: center;
}

.dc-name {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1d;
    margin-bottom: 10px;
}

.dc-job {
  font-size: 13.5px;
  line-height: 1.4;
  color: #555;
}

/* center scaling for active item */
.dc-owl-main .owl-item.center .dc-card {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* responsive image height */
@media (max-width: 900px) {
  .dc-image { height: 260px; }
}
@media (max-width: 600px) {
  .dc-image { height: 220px; }
}


/* Arrows (SVG background icons) */
.owl-nav button {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background-color: rgba(255,255,255,.95);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  background-repeat: no-repeat; background-position: center; background-size: 18px 18px;
}
.owl-nav .owl-prev {
    left: 8px;
    background-image: url(../img/chevron-left.svg) !important;
    background-color: #fff !important;
    background-size: 32px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}
.owl-nav .owl-next {
		right: 8px;
    background-image: url(../img/chevron-right.svg) !important;
    background-color: #fff !important;
    background-size: 32px !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}
.owl-nav button:hover { background-color: #fff; }

/* ===== THUMBS (unchanged behavior) ===== */
.dc-owl-thumbs { max-width: 1200px; margin: 10px auto 0; }
.dc-owl-thumbs .owl-nav {
	display: none !important;
}
.dc-owl-thumbs .owl-stage-outer { padding: 6px 0; }

.dc-thumb {
    position: relative;
    outline: none !important;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 60px;
    background: #fff;
    border: 2px solid transparent;
    cursor: pointer;
}

.dc-thumb.is-active {
	border-color: var(--color-accent);
}
.dc-thumb:focus { outline: none;}

.dc-thumb-img-wrap { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; }
.dc-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.dc-thumb-meta { display:flex; align-items:center; gap:8px; white-space:nowrap; }
.dc-thumb-name {
  font-size: 14px;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px; /* adjust width as you like */
  display: block;
}



.doctors-large {
    padding: 0 0 30px;
}

.doctors-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.doctors-list .graduate-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 24px;
    border: 0 !important;
    background: radial-gradient(157.84% 112.41% at -14.13% -5.64%, rgb(232 232 232 / 30%) 0%, rgb(204 204 204 / 30%) 100%);
    justify-content: flex-start;
}

.doctors-list .graduate-image {
    aspect-ratio: 1 / 1.2;
    border-radius: 16px;
}

.doctors-list .graduate-name {
    color: #1d1d1d;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3em;
    margin: 0;
    margin: 0;
    min-height: 0;
    text-align: center;
}

.doctors-list .graduate-title {
    color: rgba(0,0,0,0.8);
    margin: 0;
    font-size: 14px;
    line-height: 1.35em;
    text-align: center;
}

.graduates-footer .graduates-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 20px 30px;
}

.graduate-doctor {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.graduate-doctor .icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 26px;
    min-width: 26px;
    width: 26px;
}

.graduate-doctor .icon img {
    width: 100%;
    max-width: 26px;
    min-width: 26px;
    width: 26px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 3px;
    overflow: hidden;
}

.doctor-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.doctor-content .name, .doctor-content .title {
    color: #1d1d1d;
}

.doctor-content .name {
	font-weight: 600;
	font-size: 14px;
}

.doctor-content .title {
	font-size: 12px;
}

.graduates-more-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 8px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    border: 0 !important;
    cursor: pointer;
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
    box-shadow: 0px 0px 20px 0px #3B82F699;
    transition: all 0.25s ease-in-out;
    margin: 0 auto;
}

.graduates-more-toggle:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.graduates-more[hidden] {
  display: none !important;
}

.graduates-more.is-open {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 20px;
}

/* === News === */

.news {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	padding: 70px 0;
}

.news .container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.news .section-title {
	text-align: center;
}

.news .section-kicker {
	font-size: 18px;
	text-align: center;
	color: var(--color-accent);
}

.news .owl-prev.disabled,
.news .owl-next.disabled {
    opacity: 0 !important;
}

.news .owl-nav button span {
    display: none !important;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: stretch;
}

.news article {
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0px 10px 15px -3px #0000001A;
    border-radius: 24px;
    align-items: stretch;
}

.news-link {
    text-decoration: none;
    color: initial;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    align-items: stretch;
}

.featured-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    margin-bottom: 14px;
}

.featured-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.featured-image-blur {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.85);
    transform: scale(1.2);
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.featured-image-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    top: 50%;
    transform: translateY(-50%) scale(1);
    object-fit: cover;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.news article:hover .featured-image-blur {
	filter: blur(5px) brightness(0.95);
}

.news article:hover .featured-image-main {
	transform: translateY(-50%) scale(1.05);
}

.news-type-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    backdrop-filter: blur(4px);
    white-space: nowrap;
}

.post-content {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.post-date {
    color: #777;
    font-size: 14px;
}

.post-title {
	font-weight: 600;
}

.post-content .btn {
	position: relative;
	display: flex;
	color: var(--color-accent);
	gap: 12px;
	align-items: center;
	justify-content: flex-start;
}

.post-content .btn-text,
.post-content .btn-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-content .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 8px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    border: 0 !important;
    cursor: pointer;
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
    box-shadow: 0px 0px 20px 0px #3B82F699;
    transition: all 0.25s ease-in-out;
    margin: 0 auto;
}

.news article:hover .btn {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.post-content .btn svg path {
	stroke: #fff;
}

/* === FAQ === */
.faq { padding: 70px 0; background: #fff; }

.faq .container {
	max-width: 1000px;
}

.faq .section-kicker { text-align: left;font-weight: 500; font-size: 20px; line-height: 1.35em; color: rgba(0,0,0,.6); }

h3.faq-question { padding: 16px 0; margin: 0; }
h3.faq-question .faq-toggle {
  background: none; border: 0; display: flex; align-items: center; gap: 12px;
  font-size: 18px; line-height: 1.35em; margin: 0; padding: 0; cursor: pointer;
}

/* Plus-minus icon (blue) */
.plusminus {
  position: relative; width: 14px; height: 14px; margin-left: 10px; cursor: pointer;
}
.plusminus:before,
.plusminus:after {
  content: ""; display: block; position: absolute; top: 50%; left: 0;
  width: 100%; height: 2px; border-radius: 2px; transform-origin: center;
  background-color: #007bff; transition: 0.35s;
}
.plusminus:before { transform: translateY(-50%); }
.plusminus:after  { transform: translateY(-50%) rotate(90deg); }

/* Active (minus) */
.plusminus.active:before { transform: translateY(-50%) rotate(-90deg); opacity: 0; }
.plusminus.active:after  { transform: translateY(-50%) rotate(0); }

/* Hover tint */
.faq-toggle:hover .plusminus:before,
.faq-toggle:hover .plusminus:after { background-color: #0056b3; }

/* FAQ answer panel (collapsed) */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  will-change: max-height, opacity;
}

.faq-answer .content {
  background: #eaeef1;
  padding: 30px 40px;
  border-radius: 0 16px 16px 16px;
}

/* When open */
.faq-answer.open {
  opacity: 1;
  margin-bottom: 40px;
  font-size: 17px;
  /* max-height is set inline by JS */
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol { margin-top: 0.5em; }


/* === Mobile === */

@media only screen and (max-width: 767px) {

	.hero {
        padding: 0;
    }

    .hero .container {
        padding: 0;
        height: auto !important;
        min-height: 0px;
        max-height: auto;
    }

	.hero .left {
        min-height: 40vh;
        background: url(../img/hero-collage-right.webp);
	    background-size: contain;
	    background-position: top center;
	    background-repeat: no-repeat;
    }

	.hero .right {
        gap: 16px;
        grid-template-rows: 1fr;
        padding: 0 18px;
    }

	.hero .bottom {
	    grid-template-columns: 1fr;
	    gap: 16px;
	}
	
	.hero h1 {
		font-size: 72px;
	}
	
	.stat-pill-inner {
		padding: 10px 14px;
	}

	.hero-split-content .title {
		font-size: 24px;
	}

	.status {
		padding: 0;
	}

	.section-title {
	    font-size: 30px;
	}

	.section-kicker {
	    font-size: 18px;
	    font-weight: 400;
	}

	.status-cards {
		gap: 16px !important;
		grid-template-rows: 1fr !important;
	}

	.status-split {
		grid-template-columns: 1fr;
		gap: 16px !important;
	}

	.status-card .title,
	.status-card.wide .title {
		font-size: 24px;
	}
	
	.mgimo-grid .partners-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.history {
		padding: 0;
	}

	.history-split {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.history-split .left {
		gap: 16px;
	}

	.photos-split {
		gap: 16px;
	}

	.history-photo {
		border-radius: 12px !important;
	}

	.history .section-title {
		font-size: 24px;
	}

	.history .section-footer {
		padding: 20px;
	}

	.history .section-footer p {
	    font-size: 18px;
	    line-height: 1.35em;
	    margin: 0;
	}

	.timeline {
		padding: 0;
	}

	.timeline .container {
        padding: 30px 18px;
    }

	.history-cards {
        grid-template-columns: 1fr;
        overflow: auto;
        padding: 4px 18px 20px;
        gap: 16px;
    }

    .h-card__text {
    	min-height: 0;
    }

	.timeline-footer {
		font-size: 14px;
		font-weight: 400;
	}

	.history-timeline {
	    display: none;
	}

	.partners {
		padding: 30px 0;
	}

	.partners .container {
		padding-top: 0;
	}

	.partners-grid {
	    gap: 16px;
	    grid-template-columns: repeat(2, 1fr);
	    padding: 16px 0 0;
	}

	.partners .section-header h2 {
		font-size: 30px;
	}

	.benefits {
		padding: 0;
	}

	.benefits .container {
		padding-top: 20px;
	}

	.benefits .section-header h2 {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.benefits-card {
	    grid-template-columns: 1fr;
	}

	.benefit-content {
	    align-items: center;
	    justify-content: center;
	}

	.benefit-name {
		font-size: 24px;
	}

	.video {
		padding: 0;
	}

	.video-split {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.video .section-title {
		font-size: 24px;
	}

	.graduates {
		padding: 0;
	}

	.graduates .container {
		padding: 40px 0;
	}

	.graduates .section-header h2 {
		font-size: 30px;
		margin-bottom: 30px;
		padding: 0 18px;
	}

	.graduates .section-header p {
		padding: 0 18px;
		opacity: 0.8;
	}

    .graduates-grid {
        overflow-x: scroll;
        grid-template-columns: repeat(19, 300px);
        padding: 0 18px 40px;
    }

	.graduate-image {
	    aspect-ratio: 1 / 1;
	    border-radius: 12px;
	}

	.graduate-name {
	    text-align: center;
	    font-size: 20px;
	    min-height: auto;
	}

	.graduates-footer-wrap {
	    margin: 12px 18px;
	}

	.graduates-footer-wrap h3 {
		font-size: 20px;
	}

	.graduates-footer {
		grid-template-columns: 1fr;
	}

	.doctors-list {
	    grid-template-columns: 1fr;
	}

	.graduates-footer .graduates-list,
	.graduates-more.is-open {
	    grid-template-columns: 1fr;
	}

	.news {
		padding: 0;
	}

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

	.faq {
	    padding: 0 18px;
	}

	h3.faq-question .faq-toggle {
	    display: grid;
	    grid-template-columns: 1fr auto;
	    text-align: left;
	    justify-content: space-between;
	    width: 100%;
	}

}