/* ============================================================
   Kurgusal Dava Atılım — main.css
   Sol logo paneli (mavi) + sağ menü paneli (beyaz)
   ============================================================ */

:root {
	--vma-blue: #1e3a8a;
	--vma-blue-deep: #14276b;
	--vma-blue-soft: #e6ecf8;
	--vma-white: #ffffff;
	--vma-text: #0f172a;
	--vma-muted: #64748b;
	--vma-border: #e2e8f0;
	--vma-accent: #fbbf24;
	--vma-radius: 14px;
	--vma-shadow: 0 6px 24px rgba(30,58,138,.08);
	--vma-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--vma-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--vma-right-width: clamp(220px, 17vw, 280px);
	--vma-sep-size: clamp(110px, 11vw, 160px);
	--vma-sep-top: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--vma-sans);
	color: var(--vma-text);
	background: var(--vma-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vma-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}

.vma-skip {
	position: absolute; left: -9999px; top: 0;
	background: var(--vma-blue); color: #fff;
	padding: 10px 16px; z-index: 1000;
}
.vma-skip:focus { left: 8px; top: 8px; }

/* ===== Shell: 50/50 split ===== */
.vma-shell {
	display: grid;
	grid-template-columns: 1fr var(--vma-right-width);
	min-height: 100vh;
}

/* ===== SOL PANEL ===== */
.vma-left {
	background: var(--vma-blue);
	color: #fff;
	padding: 64px 32px 80px 64px;
	position: relative;
	overflow: hidden;
}
.vma-left::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 90% 0%, rgba(255,255,255,.06), transparent 40%),
		radial-gradient(circle at 0% 100%, rgba(255,255,255,.04), transparent 40%);
	pointer-events: none;
}

/* Brand block */
.vma-brand {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: inherit;
	text-decoration: none !important;
	min-height: 0;
	width: 56px;
	height: 56px;
	border-radius: 10px;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.2);
	overflow: hidden;
	margin-bottom: 28px;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 2px;
}
.vma-brand-text {
	display: flex;
	flex-direction: column;
	font-weight: 800;
	font-size: 0.72rem;
	line-height: 0.95;
	letter-spacing: 0;
	text-transform: lowercase;
	text-align: center;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.vma-brand-text span { display: block; }

/* When navigated, shrink to small square top-left */
body.is-navigated .vma-brand {
	min-height: 0;
	width: 56px;
	height: 56px;
	border-radius: 10px;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.2);
	overflow: hidden;
	margin-bottom: 28px;
	margin-top: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2px;
}
body.is-navigated .vma-brand-text {
	font-size: 0.72rem;
	line-height: 0.95;
	letter-spacing: 0;
	text-align: center;
}

/* Sol panel içerik alanı */
.vma-content {
	position: relative;
	z-index: 1;
	min-height: 280px;
	max-width: 100%; /* Sınırı kaldırıp tam genişliğe yayılması sağlandı */
	opacity: 1;
	transform: translateX(0);
	transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.vma-content.is-swapping {
	opacity: 0;
	transform: translateX(-20px);
}
.vma-content.is-entering {
	opacity: 0;
	transform: translateX(20px);
	transition: none !important;
}
.vma-content:focus { outline: none; }

.vma-left h1, .vma-left h2, .vma-left h3, .vma-left h4 { color: #fff; }
.vma-left a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.vma-left a:hover { color: #fff; opacity: .85; }
.vma-left .vma-muted { color: rgba(255,255,255,.7); }

.vma-eyebrow {
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: .78rem;
	font-weight: 600;
	opacity: .8;
	margin: 0 0 14px;
}

.vma-h1 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 0 0 .4em; line-height: 1.1; font-weight: 800; letter-spacing: -.02em; }
.vma-h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 0 0 .6em; font-weight: 700; letter-spacing: -.01em; }
.vma-h3 { font-size: 1.25rem; margin: 0 0 .4em; font-weight: 700; }

.vma-card-box {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 36px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.vma-card-box .vma-h2 {
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding-bottom: 16px;
}

.vma-hero { margin-bottom: 56px; }
.vma-hero-title { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.18; margin: 0 0 18px; }
.vma-hero-lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); opacity: .9; max-width: 80ch; line-height: 1.6; }

.vma-section { margin: 64px 0; }
.vma-grid { display: grid; gap: 32px; }
.vma-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 1100px) { .vma-grid-2 { grid-template-columns: 1fr 1fr; } }

.vma-list { list-style: none; padding: 0; margin: 0; }
.vma-list li { border-top: 1px solid rgba(255,255,255,.18); }
.vma-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.vma-list a {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 18px;
	padding: 14px 0;
	color: #fff !important;
	text-decoration: none !important;
}
.vma-list .vma-date { color: rgba(255,255,255,.65); font-size: clamp(0.8rem, 1.1vw, 0.9rem); font-variant-numeric: tabular-nums; }
.vma-list .vma-title { font-weight: 600; font-size: clamp(0.95rem, 1.4vw, 1.15rem); }
.vma-list a:hover .vma-title { text-decoration: underline; }

.vma-prose { font-size: clamp(1.04rem, 1.5vw, 1.2rem); }
.vma-prose p { margin: 0 0 1.2em; }
.vma-prose h2, .vma-prose h3 { margin-top: 1.6em; }
.vma-prose blockquote {
	border-left: 3px solid rgba(255,255,255,.4);
	margin: 1.4em 0;
	padding-left: 1em;
	font-style: italic;
	opacity: .95;
}
.vma-prose img { border-radius: 10px; }
.vma-prose ul, .vma-prose ol { padding-left: 1.4em; }

.vma-card {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--vma-radius);
	overflow: hidden;
	margin: 0 0 24px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.vma-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.15);
	background: rgba(255,255,255,.07);
}
.vma-card-thumb img { width: 100%; height: 200px; object-fit: cover; }
.vma-card-body { padding: 20px 24px 24px; }
.vma-card .vma-meta { font-size: .82rem; opacity: .7; margin: 0 0 8px; }
.vma-card .vma-h3 { margin-top: 0; margin-bottom: 12px; }
.vma-card .vma-h3 a { color: #fff; text-decoration: none; }
.vma-card .vma-excerpt { opacity: .85; font-size: .95rem; margin-bottom: 0; }

.vma-page, .vma-single {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: clamp(24px, 4vw, 44px);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.15);
	margin-bottom: 32px;
}
.vma-page-head { margin-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 20px; }
.vma-page-head .vma-h1 { margin-bottom: 0; }
.vma-meta { color: rgba(255,255,255,.7); font-size: .9rem; }

/* Alumni — sayfa başlığı */
.vma-alumni-head {
	margin: 4px 0 28px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255,255,255,.12);
}
.vma-alumni-title {
	font-size: clamp(1.9rem, 3.4vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.1;
	margin: 0 0 10px;
	color: #fff;
}
.vma-alumni-intro {
	margin: 0;
	max-width: 780px;
	color: rgba(255,255,255,.78);
	font-size: 1rem;
	line-height: 1.55;
}
.vma-alumni-years {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 28px;
}
.vma-gallery-stats.vma-alumni-stats {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 0 28px;
}
.vma-alumni-years a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 7px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.22);
	background: rgba(255,255,255,.1);
	color: #fff;
	font-size: .9rem;
	font-weight: 700;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.vma-alumni-years a:hover {
	background: rgba(255,255,255,.18);
	border-color: rgba(255,255,255,.34);
	transform: translateY(-1px);
}
.vma-year-block {
	scroll-margin-top: 24px;
}

/* Team Coaches */
.vma-coaches {
	display: grid;
	gap: 28px;
}
.vma-coaches-head {
	max-width: 860px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,.14);
}
.vma-coaches-head .vma-h1 {
	margin-bottom: 12px;
}
.vma-coach-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
}
.vma-coach-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-height: 260px;
	padding: 22px;
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba(255,255,255,.16);
	background:
		linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045)),
		rgba(255,255,255,.055);
	box-shadow: 0 18px 45px rgba(0,0,0,.16);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}
.vma-coach-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 44%);
	pointer-events: none;
}
.vma-coach-card > * {
	position: relative;
	z-index: 1;
}
.vma-coach-card-top {
	display: grid;
	grid-template-columns: 76px 1fr;
	gap: 16px;
	align-items: center;
}
.vma-coach-photo,
.vma-coach-monogram {
	width: 76px;
	height: 76px;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,.24);
	box-shadow: 0 12px 26px rgba(0,0,0,.16);
}
.vma-coach-photo {
	object-fit: cover;
}
.vma-coach-monogram {
	display: grid;
	place-items: center;
	color: #fff;
	background: rgba(255,255,255,.11);
	font-weight: 800;
	font-size: 1.1rem;
	letter-spacing: .08em;
}
.vma-coach-id {
	min-width: 0;
}
.vma-coach-name {
	margin: 0 0 6px;
	color: #fff;
	font-size: clamp(1.12rem, 1.6vw, 1.35rem);
	line-height: 1.15;
	font-weight: 760;
	letter-spacing: 0;
}
.vma-coach-title {
	display: inline-flex;
	max-width: 100%;
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.18);
	background: rgba(255,255,255,.10);
	color: rgba(255,255,255,.82);
	font-size: .8rem;
	line-height: 1.2;
}
.vma-coach-area {
	display: grid;
	gap: 5px;
	padding: 14px 15px;
	border-radius: 14px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
}
.vma-coach-area span {
	color: rgba(255,255,255,.58);
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
}
.vma-coach-area strong {
	color: #fff;
	font-size: .98rem;
	line-height: 1.35;
	font-weight: 650;
}
.vma-coach-bio {
	margin: 0;
	color: rgba(255,255,255,.76);
	font-size: .93rem;
	line-height: 1.55;
}
.vma-coach-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: auto;
	padding-top: 2px;
}
.vma-coach-contact a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	padding: 8px 11px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.18);
	background: rgba(255,255,255,.10);
	color: #fff !important;
	font-size: .8rem;
	font-weight: 700;
	text-decoration: none !important;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.vma-coach-contact a:hover {
	transform: translateY(-2px);
	background: rgba(255,255,255,.18);
	border-color: rgba(255,255,255,.30);
}
.vma-coach-contact svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex: 0 0 auto;
}

/* === Team Coaches: year filter + year pills === */
.vma-coach-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: -6px 0 24px;
	padding-bottom: 4px;
}
.vma-coach-filter-btn {
	display: inline-flex;
	align-items: center;
	padding: 7px 14px;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .01em;
	color: rgba(255,255,255,.78);
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 999px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.vma-coach-filter-btn:hover {
	background: rgba(255,255,255,.12);
	color: #fff;
	border-color: rgba(255,255,255,.22);
	transform: translateY(-1px);
}
.vma-coach-filter-btn.is-active {
	background: #fff;
	color: var(--vma-blue);
	border-color: #fff;
	box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.vma-coach-years {
	display: grid;
	gap: 6px;
}
.vma-coach-years-label {
	color: rgba(255,255,255,.58);
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
}
.vma-coach-years-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.vma-coach-year-pill {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .02em;
	color: #fff;
	background: rgba(251,191,36,.18);
	border: 1px solid rgba(251,191,36,.42);
	border-radius: 999px;
	font-variant-numeric: tabular-nums;
}

.vma-btn {
	display: inline-block;
	background: #fff;
	color: var(--vma-blue) !important;
	padding: clamp(10px, 1.5vw, 14px) clamp(18px, 2.5vw, 26px);
	border-radius: 999px;
	font-weight: 600;
	font-size: clamp(0.9rem, 1.2vw, 1.05rem);
	text-decoration: none !important;
	border: 0;
	transition: transform .12s ease, box-shadow .2s ease;
}
.vma-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.vma-btn--ghost { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,.5); }

.vma-pagination { margin-top: 28px; }
.vma-pagination .page-numbers {
	display: inline-block; padding: 8px 12px; margin-right: 4px;
	border: 1px solid rgba(255,255,255,.25); border-radius: 8px; color: #fff;
}
.vma-pagination .current { background: rgba(255,255,255,.18); }

.vma-prevnext { display: flex; justify-content: space-between; gap: 16px; margin-top: 36px; opacity: .9; }
.vma-prevnext .next { margin-left: auto; }

/* ===== SAĞ PANEL: MENÜ ===== */
.vma-right {
	background: var(--vma-white);
	color: var(--vma-text);
	display: flex;
	flex-direction: column;
	border-left: 1px solid var(--vma-border);
	position: sticky;
	top: 0;
	height: 100vh;
	max-height: 100vh;
	z-index: 100;
	width: var(--vma-right-width);
	padding: 24px 22px 28px;
	/* Logo (vma-separator-logo) sola taşan absolute bir öğe — bu yüzden burada kırpmıyoruz */
	overflow: visible;
}
.vma-right > *:not(.vma-separator-logo):not(.vma-menu-wrap) { display: none; }
.vma-mobile-brand { display: none !important; }
#vma-menu-toggle { display: none !important; visibility: hidden !important; } /* Hard hide on desktop */

.vma-separator-logo {
	position: absolute;
	top: var(--vma-sep-top, 28px);
	left: var(--vma-sep-offset-x, 0px);
	transform: translateX(-50%);
	width: var(--vma-sep-size);
	height: var(--vma-sep-size);
	z-index: 1;
	filter: drop-shadow(0 10px 26px rgba(15,23,42,.10));
}
.vma-separator-logo svg, .vma-separator-logo img { width: 100%; height: 100%; object-fit: contain; }

.vma-menu-wrap {
	display: flex !important;
	flex-direction: column;
	width: 100%;
	background: transparent;
	padding: 0;
	box-shadow: none;
	position: relative;
	z-index: 2;
	/* margin-top JS tarafından dinamik olarak ayarlanır (vmaAlignMenu) */
	margin-top: 0;
	flex: 1 1 auto;
	min-height: 0;
	max-height: 100%;
	overflow: hidden;
}

	.vma-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1 1 0;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(15,23,42,.18) transparent;
	display: flex;
	flex-direction: column;
	gap: 2px;
	/* Footer çubuğunun üstüne menü kaymasın diye küçük bir alt padding */
	padding-bottom: 12px;
}
.vma-menu::-webkit-scrollbar { width: 4px; }
.vma-menu::-webkit-scrollbar-track { background: transparent; }
.vma-menu::-webkit-scrollbar-thumb { background: rgba(15,23,42,.18); border-radius: 4px; }
.vma-menu::-webkit-scrollbar-thumb:hover { background: rgba(30,58,138,.35); }
/* === MAIN MENU (modern, adaptive) === */
.vma-menu li { position: relative; }
.vma-menu > li {
	border-bottom: none;
}
.vma-menu > li + li {
	margin-top: 1px;
}
.vma-menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px 10px 16px;
	color: var(--vma-text);
	font-weight: 600;
	font-size: clamp(0.84rem, 0.95vw, 0.95rem);
	line-height: 1.25;
	letter-spacing: -.005em;
	text-decoration: none;
	border-radius: 12px;
	transition: background-color 0.22s ease, color 0.22s ease, padding 0.22s ease, transform 0.22s ease;
}
.vma-menu > li > a::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 50%;
	width: 4px;
	height: 4px;
	background: var(--vma-blue);
	border-radius: 999px;
	transform: translate(-12px, -50%) scale(.6);
	opacity: 0;
	transition: transform 0.28s cubic-bezier(.4,.0,.2,1), opacity 0.22s ease;
}
.vma-menu > li > a:hover {
	color: var(--vma-blue);
	background: linear-gradient(90deg, rgba(30,58,138,.07), rgba(30,58,138,0));
}
.vma-menu > li > a:hover::before,
.vma-menu > li.current-menu-item > a::before,
.vma-menu > li.current-menu-parent > a::before,
.vma-menu > li.is-active > a::before {
	transform: translate(0, -50%) scale(1);
	opacity: 1;
}
.vma-menu > li.current-menu-item > a,
.vma-menu > li.current-menu-parent > a,
.vma-menu > li.is-active > a {
	color: var(--vma-blue);
	background: linear-gradient(90deg, rgba(30,58,138,.10), rgba(30,58,138,.02));
}
.vma-menu li a span { display: inline !important; }
.vma-menu li a::after { display: none !important; }
.vma-menu .menu-item-has-children > a {
	padding-right: 44px;
}
.vma-submenu-toggle {
	position: absolute;
	top: 5px;
	right: 6px;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--vma-muted);
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.vma-submenu-toggle span {
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform .2s ease;
}
.vma-submenu-toggle:hover,
.vma-submenu-toggle[aria-expanded="true"] {
	background: rgba(30,58,138,.08);
	color: var(--vma-blue);
}
.vma-submenu-toggle[aria-expanded="true"] span {
	transform: rotate(225deg) translateY(-2px);
}

.vma-right.is-menu-tight .vma-menu { gap: 0; }
.vma-right.is-menu-tight .vma-menu > li > a {
	padding: 7px 12px 7px 14px;
	font-size: clamp(0.78rem, 0.85vw, 0.85rem);
	line-height: 1.2;
}
.vma-right.is-menu-tight .vma-menu .menu-item-has-children > a {
	padding-right: 40px;
}

/* === SUB-MENU (graceful, indented) === */
.vma-menu .sub-menu {
	list-style: none;
	padding: 4px 0 8px 18px;
	margin: 2px 0 4px;
	display: flex;
	flex-direction: column;
	gap: 1px;
	position: relative;
}
.vma-menu .menu-item-has-children:not(.is-submenu-open) > .sub-menu {
	display: none;
}
.vma-menu .sub-menu::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 6px;
	bottom: 10px;
	width: 1px;
	background: linear-gradient(180deg, rgba(30,58,138,.18), rgba(30,58,138,0));
	border-radius: 1px;
}
.vma-menu .sub-menu li { padding: 0; }
.vma-menu .sub-menu a {
	display: flex;
	align-items: center;
	padding: 6px 12px 6px 14px;
	color: var(--vma-muted);
	font-size: clamp(0.78rem, 0.85vw, 0.85rem);
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -.003em;
	text-decoration: none;
	border-radius: 8px;
	transition: background-color 0.2s ease, color 0.2s ease, padding 0.2s ease;
}
.vma-menu .sub-menu a:hover {
	color: var(--vma-blue);
	background: rgba(30,58,138,.05);
	padding-left: 18px;
}
.vma-menu .sub-menu .current-menu-item > a,
.vma-menu .sub-menu .is-active > a {
	color: var(--vma-blue);
	background: rgba(30,58,138,.08);
}
.vma-right.is-menu-tight .vma-menu .sub-menu {
	padding: 2px 0 4px 16px;
	margin: 0 0 2px;
}
.vma-right.is-menu-tight .vma-menu .sub-menu a {
	padding: 4px 10px;
	font-size: 0.76rem;
	line-height: 1.18;
}

	.vma-menu-footer {
	display: flex !important;
	flex-direction: column;
	gap: 12px;
	margin-top: 12px;
	border-top: 1px solid var(--vma-border);
	padding-top: 18px;
	flex-shrink: 0;
	background: #fff;
}
.vma-right.is-menu-tight .vma-menu-footer {
	gap: 8px;
	margin-top: 12px;
	padding-top: 12px;
}

.vma-btn-mini {
	display: block;
	background: var(--vma-blue);
	color: #fff !important;
	text-decoration: none !important;
	padding: 8px 12px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.78rem;
	line-height: 1.2;
	text-align: center;
	transition: transform 0.25s ease, background 0.3s ease, filter .25s ease;
}
.vma-right.is-menu-tight .vma-btn-mini {
	padding: 6px 10px;
	border-radius: 7px;
	font-size: 0.72rem;
}
.vma-btn-mini:hover {
	transform: translateY(-2px);
	filter: brightness(1.1);
}
.vma-btn-mini--ghost {
	background: transparent;
	border: 1px solid var(--vma-blue);
	color: var(--vma-blue) !important;
	margin-top: 0; /* gap aralığı zaten 12px */
}

.vma-social-icons {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	align-items: center;
	margin: 4px 0 2px;
}
.vma-social-icons a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	color: var(--vma-blue);
	background: rgba(8,21,79,.06);
	border: 1px solid rgba(8,21,79,.10);
	border-radius: 10px;
	text-decoration: none !important;
	transition: background .2s ease, transform .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.vma-right.is-menu-tight .vma-social-icons {
	gap: 8px;
	margin: 2px 0 0;
}
.vma-right.is-menu-tight .vma-social-icons a {
	width: 34px;
	height: 34px;
	border-radius: 8px;
}
.vma-right.is-menu-tight .vma-social-icons svg {
	width: 19px;
	height: 19px;
}
.vma-social-icons a:hover {
	transform: translateY(-2px);
	color: #fff;
	background: var(--vma-blue);
	border-color: var(--vma-blue);
	box-shadow: 0 8px 18px rgba(8,21,79,.18);
}
.vma-social-icons svg {
	width: 22px;
	height: 22px;
	display: block;
	color: currentColor;
}

/* ===== Footer ===== */
.vma-footer {
	background: var(--vma-blue-deep);
	color: rgba(255,255,255,.78);
	padding: 24px 0;
	font-size: .9rem;
}
.vma-footer a { color: #fff; text-decoration: none; }
.vma-footer a:hover { text-decoration: underline; }
.vma-footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 14px;
}
.vma-footer-menu {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 18px; flex-wrap: wrap;
}
.vma-footer-menu a { color: #fff; opacity: .85; text-decoration: none; }
.vma-footer-menu a:hover { opacity: 1; text-decoration: underline; }
.vma-footer-credit {
	margin: 0;
	color: rgba(255,255,255,.58);
	font-size: .82rem;
}

/* ===== Misc ===== */
.vma-muted { color: var(--vma-muted); }
.vma-search { display: flex; gap: 8px; margin-top: 8px; }
.vma-search input {
	flex: 1; padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.4);
	background: rgba(255,255,255,.08); color: #fff;
}
.vma-search button {
	padding: 10px 18px; border-radius: 10px; border: 0; background: #fff; color: var(--vma-blue); font-weight: 600;
}

/* ===== Loader (AJAX) ===== */
.vma-loader { position: absolute; top: 24px; right: 24px; width: 22px; height: 22px;
	border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
	border-radius: 50%; animation: vma-spin 0.8s linear infinite; opacity: 0; pointer-events: none; transition: opacity .15s ease; }
.is-loading .vma-loader { opacity: 1; }
@keyframes vma-spin { to { transform: rotate(360deg); } }

/* Soft fade+slide animation on AJAX content swap — override handled above */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
	:root { --vma-right-width: clamp(210px, 18vw, 260px); }
}

@media (max-width: 1024px) {
	:root {
		--vma-sep-size: clamp(96px, 11vw, 130px);
		--vma-right-width: clamp(200px, 21vw, 240px);
	}
	.vma-left { padding: 48px 40px; }
	.vma-right { padding-left: 16px; padding-right: 16px; }
	.vma-brand { margin-bottom: 40px; }
	.vma-menu > li > a { padding: 8px 12px 8px 14px; }
	.vma-menu .sub-menu { padding-left: 14px; }
}

@media (max-width: 860px) {
	body { display: flex; flex-direction: column; min-height: 100vh; }
	.vma-shell { grid-template-columns: 1fr; min-height: auto; flex: 1 0 auto; }
	.vma-footer { flex-shrink: 0; }
	.vma-right {
		position: fixed;
		top: 16px; right: 16px;
		z-index: 120;
		padding: 0;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		gap: 0;
		border: none;
		background: transparent;
		backdrop-filter: none;
		height: auto;
		width: auto;
		pointer-events: none;
	}
	.vma-right > * { display: flex !important; pointer-events: auto; }
	.vma-separator-logo { display: none !important; }
	.vma-mobile-brand { display: none !important; }
	#vma-menu-toggle {
		display: inline-flex !important;
		visibility: visible !important;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		width: 44px; height: 44px;
		background: #fff;
		border: none;
		border-radius: 10px;
		padding: 10px 10px;
		margin-top: 0;
		position: relative;
		z-index: 110;
		box-shadow: 0 4px 12px rgba(0,0,0,0.15);
		transition: all 0.3s ease;
	}
	#vma-menu-toggle span {
		display: block; height: 2px; background: var(--vma-text); border-radius: 2px;
		width: 100%;
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
		transform-origin: center;
	}
	#vma-menu-toggle[aria-expanded="true"] {
		background: rgba(15,23,42,0.05);
		box-shadow: none;
	}
	#vma-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	#vma-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
	#vma-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.vma-menu-wrap {
		display: flex !important;
		position: fixed; top: 0; right: 0; bottom: 0; left: auto;
		background: #fff;
		padding: 78px 24px 28px;
		border-bottom: 0;
		border-left: 1px solid var(--vma-border);
		box-shadow: -10px 0 40px rgba(15,23,42,.15);
		width: clamp(260px, 75vw, 320px);
		height: 100vh;
		transform: translateX(105%);
		transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		z-index: 100;
		overflow: hidden;
	}
	.vma-menu-wrap.is-open { transform: translateX(0); }
	.vma-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto;
		overflow-x: hidden;
		padding-bottom: 6px;
	}
	.vma-menu > li + li { margin-top: 0; }
		.vma-menu > li > a {
			background: transparent;
			color: var(--vma-text) !important;
			width: 100%; height: auto;
			padding: 12px 14px !important;
		font-size: 1rem !important;
		font-weight: 600;
		border-radius: 10px;
			justify-content: flex-start !important;
		}
		.vma-menu .menu-item-has-children > a { padding-right: 46px !important; }
	.vma-menu > li > a:hover {
		background: rgba(30,58,138,.06);
	}
	.vma-menu > li > a::after { display: none !important; }
	.vma-menu .sub-menu { padding-left: 16px; margin: 2px 0 6px; }
	.vma-menu .sub-menu a {
		padding: 8px 12px !important;
		font-size: 0.92rem !important;
	}
	.vma-menu li a span { display: inline !important; }
	.vma-menu-footer { display: flex !important; flex-direction: column; gap: 10px; margin-top: 14px; border-top: 1px solid var(--vma-border); padding-top: 14px; padding-bottom: 0; flex-shrink: 0; background: #fff; }
	
	.vma-left { padding: 32px 20px 50px; }
	.vma-brand {
		width: 56px;
		height: 56px;
		margin-bottom: 24px;
		align-items: center;
	}
	.vma-brand-text {
		font-size: 0.72rem;
		line-height: 0.95;
		letter-spacing: 0;
	}
	.vma-list a { grid-template-columns: 84px 1fr; gap: 10px; }
	.vma-coach-grid { grid-template-columns: 1fr; }
	.vma-coach-card { padding: 18px; border-radius: 16px; }
	.vma-coach-card-top { grid-template-columns: 64px 1fr; gap: 13px; }
	.vma-coach-photo,
	.vma-coach-monogram { width: 64px; height: 64px; border-radius: 14px; }
}

/* ============================================================
   FORMS (mootie panel için ortak)
   ============================================================ */
.vma-form { display: grid; gap: 14px; max-width: 560px; }
.vma-field { display: grid; gap: 6px; }
.vma-field label { font-weight: 600; font-size: .92rem; color: rgba(255,255,255,.9); }
.vma-field input[type="text"],
.vma-field input[type="email"],
.vma-field input[type="tel"],
.vma-field input[type="url"],
.vma-field input[type="password"],
.vma-field textarea,
.vma-field select {
	width: 100%;
	padding: 11px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,.25);
	background: rgba(255,255,255,.08);
	color: #fff;
	font: inherit;
}
.vma-field input::placeholder, .vma-field textarea::placeholder { color: rgba(255,255,255,.55); }
.vma-field-row { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .vma-field-row { grid-template-columns: 1fr 1fr; } }
.vma-field-help { font-size: .82rem; color: rgba(255,255,255,.65); }
.vma-form .vma-btn { justify-self: start; }

.vma-alert { padding: 14px 16px; border-radius: 12px; margin: 12px 0; font-size: .95rem; }
.vma-alert--ok    { background: rgba(34,197,94,.18); border: 1px solid rgba(34,197,94,.35); }
.vma-alert--err   { background: rgba(239,68,68,.18); border: 1px solid rgba(239,68,68,.35); }
.vma-alert--info  { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); }

/* Privacy toggle */
.vma-priv {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: .78rem; color: rgba(255,255,255,.7);
	margin-left: 8px;
}
.vma-priv input { accent-color: var(--vma-accent); }

/* Alumni grid */
.vma-team-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	margin-top: 24px;
}
.vma-mootie-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 28px !important;
	transition: transform 0.2s ease, border-color 0.2s ease;
}
.vma-mootie-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255,255,255,0.2);
}
.vma-alumni .vma-mootie-card {
	position: relative;
	overflow: hidden;
	min-height: 190px;
	padding: 18px !important;
	gap: 14px;
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
	border: 1px solid rgba(255,255,255,.18);
	color: #fff;
	box-shadow: 0 18px 42px rgba(0,0,0,.22);
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
}
.vma-alumni .vma-mootie-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.08));
	pointer-events: none;
}
.vma-alumni .vma-mootie-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 38%);
	pointer-events: none;
	z-index: 0;
}
.vma-alumni .vma-mootie-card > * {
	position: relative;
	z-index: 1;
}
.vma-mootie-header {
	display: flex;
	align-items: center;
	gap: 20px;
}
.vma-mootie-card .vma-photo {
	width: 72px; height: 72px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background: rgba(255,255,255,.05);
	border: 2px solid rgba(255,255,255,.1);
	display: flex; align-items: center; justify-content: center;
}
.vma-photo--placeholder {
	display: flex !important;
	align-items: flex-end;
	justify-content: center;
	color: rgba(255,255,255,.45);
	overflow: hidden;
}
.vma-photo--placeholder svg { width: 70%; height: auto; margin-bottom: 0; }

/* Front-page: güncel ekip roster */
.vma-team-col {
	position: relative;
	overflow: visible;
}
.vma-team-col .vma-team-grid {
	grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
	gap: 16px;
	margin-top: 24px;
}
.vma-team-col .vma-mootie-card {
	padding: 9px !important;
	background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.055));
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 22px;
	align-items: stretch;
	position: relative;
	overflow: hidden;
	gap: 11px;
	box-shadow: 0 18px 38px rgba(0,0,0,.16);
	backdrop-filter: blur(18px) saturate(145%);
	-webkit-backdrop-filter: blur(18px) saturate(145%);
	isolation: isolate;
	text-decoration: none !important;
}
.vma-team-col .vma-current-team-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255,255,255,.28), transparent 38%),
		radial-gradient(circle at 85% 8%, rgba(255,255,255,.22), transparent 30%);
	opacity: .74;
	pointer-events: none;
	z-index: 0;
}
.vma-team-col .vma-mootie-card .vma-photo,
.vma-team-col .vma-mootie-card-body {
	position: relative;
	z-index: 1;
}
.vma-team-col .vma-mootie-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255,255,255,.32);
	background: linear-gradient(145deg, rgba(255,255,255,.20), rgba(255,255,255,.075));
	box-shadow: 0 24px 46px rgba(0,0,0,.20);
}
.vma-team-col .vma-mootie-card .vma-photo {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-width: 1px;
	border-color: rgba(255,255,255,.18);
	border-radius: 17px !important;
	box-shadow: 0 14px 28px rgba(0,0,0,.14);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.vma-team-col .vma-mootie-card:hover .vma-photo {
	transform: scale(1.018);
	border-color: rgba(255,255,255,0.36);
	box-shadow: 0 18px 32px rgba(0,0,0,.18);
}
.vma-team-col .vma-mootie-card-body {
	position: relative;
	transform: none;
	background: transparent;
	backdrop-filter: none;
	padding: 0 3px 4px;
	border-radius: 0;
	border: 0;
	opacity: 1;
	visibility: visible;
	transition: none;
	white-space: normal;
	z-index: 1;
	pointer-events: auto;
	box-shadow: none;
}
/* Tooltip pointer */
.vma-team-col .vma-mootie-card-body::after {
	display: none;
}
.vma-team-col .vma-mootie-card:hover .vma-mootie-card-body {
	transform: none;
}
.vma-team-col .vma-mootie-card .vma-name {
	font-size: 0.94rem;
	line-height: 1.24;
	color: #fff;
	text-align: left;
	margin: 0;
	font-weight: 650;
	letter-spacing: 0;
}
.vma-team-col .vma-mootie-card .vma-role {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	min-height: 24px;
	margin-top: 7px;
	padding: 4px 9px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.18);
	background: rgba(255,255,255,.12);
	color: rgba(255,255,255,0.86);
	font-size: 0.68rem;
	line-height: 1.15;
	font-weight: 700;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.vma-team-all-link {
	width: auto;
	justify-content: center;
	margin-top: 18px;
	min-height: 40px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.22);
	background: rgba(255,255,255,.12);
	color: #fff !important;
	opacity: 1;
	box-shadow: 0 14px 28px rgba(0,0,0,.12);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
.vma-team-all-link:hover {
	background: rgba(255,255,255,.20);
	transform: translateY(-1px);
}

.vma-mootie-main-info { display: flex; flex-direction: column; }
.vma-mootie-card .vma-name { font-weight: 700; font-size: 1.25rem; margin: 0 0 4px; letter-spacing: -0.01em; }
.vma-mootie-card .vma-name a { color: #fff !important; text-decoration: none !important; }
.vma-mootie-card .vma-name a:hover { text-decoration: underline !important; }
.vma-mootie-card .vma-role { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,.8); }
.vma-mootie-card .vma-grad-year { font-size: 0.8rem; color: rgba(255,255,255,.5); margin-top: 2px; }

.vma-mootie-details {
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255,255,255,.7);
	border-top: 1px solid rgba(255,255,255,.08);
	padding-top: 16px;
}
.vma-job-info { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.vma-job-title { font-weight: 600; color: #fff; }
.vma-inst { font-weight: 500; }
.vma-sep { color: rgba(255,255,255,.4); }

.vma-mootie-actions {
	display: flex; gap: 12px; margin-top: auto; padding-top: 6px;
}
.vma-action-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,.06);
	color: rgba(255,255,255,.8) !important;
	border: 1px solid rgba(255,255,255,.05);
	transition: all 0.2s ease;
}
.vma-action-btn:hover {
	background: #fff;
	color: var(--vma-blue) !important;
	transform: translateY(-2px);
}

.vma-alumni .vma-team-grid {
	grid-template-columns: repeat(auto-fill, minmax(min(390px, 100%), 1fr));
	gap: 18px;
}
.vma-alumni .vma-mootie-header {
	align-items: center;
	gap: 16px;
	min-width: 0;
}
.vma-alumni .vma-mootie-card .vma-photo {
	width: 82px;
	height: 104px;
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,.18);
	background: rgba(255,255,255,.06);
	box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.vma-alumni .vma-photo--placeholder {
	color: rgba(255,255,255,.55);
}
.vma-alumni .vma-mootie-main-info {
	min-width: 0;
}
.vma-alumni .vma-mootie-card .vma-name {
	margin: 0 0 6px;
	font-size: 1.08rem;
	line-height: 1.2;
	color: #fff;
}
.vma-alumni .vma-mootie-card .vma-name a {
	color: #fff !important;
}
.vma-alumni .vma-mootie-card .vma-name a:hover {
	text-decoration: none !important;
	color: rgba(255,255,255,.85) !important;
}
.vma-alumni .vma-mootie-card .vma-role {
	font-size: .86rem;
	line-height: 1.35;
	color: rgba(255,255,255,.78);
}
.vma-alumni .vma-mootie-card .vma-grad-year {
	display: inline-flex;
	width: fit-content;
	margin-top: 9px;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(255,255,255,.12);
	color: rgba(255,255,255,.85);
	font-size: .72rem;
	font-weight: 750;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.vma-alumni .vma-mootie-details {
	margin-top: 2px;
	padding-top: 12px;
	border-top: 1px solid rgba(255,255,255,.14);
	color: rgba(255,255,255,.78);
}
.vma-alumni .vma-job-info {
	gap: 5px;
}
.vma-alumni .vma-job-title {
	color: #fff;
}
.vma-alumni .vma-inst {
	color: rgba(255,255,255,.74);
}
.vma-alumni .vma-sep {
	color: rgba(255,255,255,.45);
}
.vma-alumni .vma-mootie-actions {
	gap: 8px;
	padding-top: 12px;
	border-top: 1px solid rgba(255,255,255,.14);
}
.vma-alumni .vma-action-btn {
	width: 34px;
	height: 34px;
	background: rgba(255,255,255,.10);
	color: #fff !important;
	border-color: rgba(255,255,255,.16);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.vma-alumni .vma-action-btn:hover {
	background: rgba(255,255,255,.92);
	color: var(--vma-blue) !important;
}

.vma-year-block { margin: 36px 0; }
.vma-year-head {
	display: flex; align-items: baseline; gap: 12px;
	border-bottom: 1px solid rgba(255,255,255,.18);
	padding-bottom: 6px;
	margin-bottom: 14px;
}
.vma-year-head h2 { margin: 0; font-size: 1.4rem; }
.vma-year-head .vma-tag { font-family: var(--vma-mono); font-size: .85rem; color: rgba(255,255,255,.7); }

/* Profil tek mootie */
.vma-mootie-single {
	position: relative;
	overflow: hidden;
	display: grid;
	gap: 32px;
	padding: clamp(24px, 4vw, 44px);
	background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
	border: 1px solid rgba(255,255,255,0.16);
	border-radius: 24px;
	backdrop-filter: blur(20px);
	box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.vma-mootie-single::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,.09), transparent 34%);
	pointer-events: none;
}
.vma-mootie-single > * {
	position: relative;
	z-index: 1;
}
@media (min-width: 720px) {
	.vma-mootie-single {
		grid-template-columns: minmax(170px, 220px) 1fr;
		align-items: start;
		gap: 48px;
	}
}
.vma-mootie-photo-wrap {
	width: min(220px, 62vw);
	aspect-ratio: 4 / 5;
	border-radius: 24px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.18);
	overflow: hidden;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 20px 42px rgba(0,0,0,.22);
}
.vma-mootie-photo { width: 100%; height: 100%; object-fit: cover; }
.vma-mootie-profile {
	min-width: 0;
}
.vma-mootie-profile .vma-h1 {
	margin-bottom: 18px;
}

.vma-mootie-meta {
	margin-top: 32px;
	display: grid;
	grid-template-columns: minmax(120px, max-content) 1fr;
	gap: 12px 18px;
	padding: 18px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 18px;
	background: rgba(255,255,255,.06);
}
@media (min-width: 980px) { .vma-mootie-meta { grid-template-columns: max-content 1fr max-content 1fr; } }
.vma-mootie-meta dt {
	color: rgba(255,255,255,.58);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 0;
}
.vma-mootie-meta dd {
	margin: 0;
	font-size: .98rem;
	font-weight: 650;
	color: #fff;
	overflow-wrap: anywhere;
}
.vma-mootie-meta dd a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s ease; }
.vma-mootie-meta dd a:hover { color: #fff; text-decoration: underline; }

/* Hidden field (özel) */
.vma-private-hint {
	font-size: .82rem;
	background: rgba(255,255,255,.06);
	padding: 6px 10px;
	border-radius: 8px;
	display: inline-block;
}

/* AJAX Loader */
.vma-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border: 3px solid rgba(255,255,255,0.1);
	border-top-color: #fff;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 1000;
}
@keyframes vma-spin {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}
.vma-left.is-loading .vma-loader {
	opacity: 1;
	animation: vma-spin 0.8s linear infinite;
}

/* ===== Stats Slider ===== */
.vma-stats-section {
	margin-top: 56px;
}
.vma-stats-slider {
	position: relative;
	min-height: 140px;
}
.vma-stat-card {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
	text-align: left;
}
.vma-stat-card.is-active {
	position: relative;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.vma-stat-num {
	display: block;
	font-size: clamp(3rem, 8vw, 5rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	color: #fff;
}
.vma-stat-label {
	display: block;
	font-size: 1.1rem;
	font-weight: 600;
	opacity: 0.7;
	margin-top: 8px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.vma-stats-dots {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}
.vma-stats-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1.5px solid rgba(255,255,255,0.4);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}
.vma-stats-dot.is-active {
	background: #fff;
	border-color: #fff;
	transform: scale(1.2);
}
.vma-stats-dot:hover {
	border-color: rgba(255,255,255,0.8);
}

/* ===== Home polish, gallery, memorandum ===== */
.vma-section-head {
	display: grid;
	gap: 6px;
	margin-bottom: 22px;
}
.vma-section-head .vma-eyebrow,
.vma-card-box .vma-section-head .vma-eyebrow {
	margin-bottom: 0;
}
.vma-card-box .vma-section-head .vma-h2,
.vma-section-head .vma-h1,
.vma-section-head .vma-h2 {
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0;
}
.vma-section-head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
}
.vma-inline-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
	opacity: .86;
}
.vma-inline-link::after {
	content: "→";
	font-size: 1.1em;
	transition: transform .2s ease;
}
.vma-inline-link:hover {
	opacity: 1;
}
.vma-inline-link:hover::after {
	transform: translateX(3px);
}
.vma-team-col .vma-team-all-link {
	align-self: flex-start;
	background: rgba(255,255,255,.12);
	color: #fff !important;
	opacity: 1;
}
.vma-team-col .vma-team-all-link::after {
	color: currentColor;
}

.vma-home-hero {
	display: grid;
	gap: 24px;
	align-items: end;
	margin-top: 0;
	padding-top: clamp(12px, 3vw, 40px);
}
@media (min-width: 900px) {
	.vma-home-hero {
		grid-template-columns: minmax(0, 1fr) auto;
	}
}
.vma-home-hero .vma-hero-lead {
	margin: 0;
	max-width: 72ch;
}
.vma-home-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.vma-home-actions--compact {
	margin-top: 18px;
}
.vma-home-current {
	margin-top: clamp(36px, 5vw, 64px);
}
.vma-home-info {
	display: grid;
	gap: 18px;
	padding: clamp(18px, 2.5vw, 26px);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 16px;
	background: rgba(255,255,255,.055);
}
.vma-home-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px;
}
.vma-home-info-grid div {
	display: grid;
	gap: 6px;
	min-height: 86px;
	padding: 14px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 12px;
	background: rgba(255,255,255,.055);
}
.vma-home-info-grid span,
.vma-process-step span,
.vma-announcement-list span {
	color: rgba(255,255,255,.62);
	font-size: .75rem;
	font-weight: 780;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.vma-home-info-grid strong {
	color: #fff;
	font-size: 1rem;
	line-height: 1.3;
}
.vma-process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 12px;
	counter-reset: process;
}
.vma-process-step {
	display: grid;
	gap: 8px;
	padding: 18px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 14px;
	background: rgba(255,255,255,.045);
	min-height: 164px;
}
.vma-process-step h3 {
	margin: 0;
	color: #fff;
	font-size: 1.05rem;
	line-height: 1.25;
}
.vma-process-step p,
.vma-home-note {
	margin: 0;
	color: rgba(255,255,255,.76);
}
.vma-link-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 14px;
}
.vma-home-link-card {
	min-height: 136px;
}
.vma-announcement-list {
	display: grid;
	gap: 10px;
}
.vma-announcement-list a {
	display: grid;
	grid-template-columns: minmax(120px, .45fr) minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	padding: 14px 16px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 12px;
	background: rgba(255,255,255,.055);
	color: #fff !important;
	text-decoration: none !important;
}
.vma-announcement-list a:hover {
	background: rgba(255,255,255,.09);
}
.vma-announcement-list strong {
	min-width: 0;
	color: #fff;
	line-height: 1.3;
}
.vma-comp-schedule {
	display: grid;
	gap: 10px;
	counter-reset: vma-schedule;
}
.vma-comp-schedule-head,
.vma-comp-schedule-row {
	display: grid;
	align-items: center;
	gap: 12px;
}
.vma-comp-schedule-head {
	grid-template-columns: minmax(150px, .7fr) minmax(0, 1.2fr) minmax(120px, .45fr);
	padding: 0 18px 4px 60px;
	color: rgba(255,255,255,.58);
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
}
.vma-comp-schedule-row {
	position: relative;
	counter-increment: vma-schedule;
	grid-template-columns: 38px minmax(150px, .7fr) minmax(0, 1.2fr) minmax(120px, .45fr);
	min-height: 76px;
	padding: 16px 18px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
	color: rgba(255,255,255,.78);
	box-shadow: 0 14px 32px rgba(0,0,0,.10);
}
.vma-comp-schedule-row::before {
	content: counter(vma-schedule, decimal-leading-zero);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	background: rgba(255,255,255,.10);
	color: #fff;
	font-size: .76rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}
.vma-comp-schedule-row > span {
	color: rgba(255,255,255,.74);
	font-variant-numeric: tabular-nums;
}
.vma-comp-schedule-row strong {
	color: #fff;
	font-size: 1.02rem;
	line-height: 1.25;
}
.vma-comp-schedule-row em {
	justify-self: start;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255,255,255,.12);
	color: #fff;
	font-size: .82rem;
	font-style: normal;
	font-weight: 800;
	white-space: nowrap;
}
.vma-comp-schedule-row em.is-tamamlandi {
	background: rgba(34,197,94,.18);
	color: #bbf7d0;
}
.vma-comp-schedule-row em.is-devam-ediyor {
	background: rgba(251,191,36,.2);
	color: #fde68a;
}
.vma-comp-schedule-row em.is-yaklasan {
	background: rgba(96,165,250,.2);
	color: #bfdbfe;
}
.vma-comp-schedule-row em.is-ilan-edilecek {
	background: rgba(255,255,255,.10);
	color: rgba(255,255,255,.78);
}
.vma-home-seasons,
.vma-home-winners {
	margin-top: clamp(42px, 6vw, 76px);
}
.vma-comp-mini-list {
	display: grid;
	gap: 5px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(255,255,255,.74);
	font-size: .92rem;
	line-height: 1.45;
}
.vma-home-topline {
	align-items: stretch;
}
.vma-home-topline .vma-card-box {
	min-height: 330px;
}
.vma-stats-slider a {
	color: inherit !important;
	text-decoration: none !important;
}
.vma-stat-card a {
	display: block;
}

.vma-home-gallery-band {
	margin-top: 76px;
	margin-bottom: 76px;
}
.vma-home-photo-slider {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	padding: 2px 0;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.vma-home-photo-track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: vma-gallery-flow 42s linear infinite;
	will-change: transform;
}
.vma-home-photo-slider:hover .vma-home-photo-track {
	animation-play-state: paused;
}
.vma-home-photo-slider.is-static .vma-home-photo-track {
	animation: none;
	width: 100%;
	flex-wrap: wrap;
}
.vma-home-photo-slide {
	position: relative;
	width: clamp(220px, 28vw, 360px);
	aspect-ratio: 4 / 3;
	padding: 0;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 16px;
	overflow: hidden;
	background: rgba(255,255,255,.06);
	color: #fff;
	text-align: left;
	box-shadow: 0 20px 50px rgba(0,0,0,.16);
	flex: 0 0 auto;
}
.vma-home-photo-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease, filter .45s ease;
}
.vma-home-photo-slide:hover img,
.vma-home-photo-slide:focus-visible img {
	transform: scale(1.06);
	filter: saturate(1.08);
}
.vma-home-photo-slide span {
	position: absolute;
	inset: auto 0 0;
	display: grid;
	gap: 3px;
	padding: 42px 16px 14px;
	background: linear-gradient(180deg, transparent, rgba(2,6,23,.82));
	pointer-events: none;
}
.vma-home-photo-slide strong,
.vma-home-photo-slide small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.vma-home-photo-slide small {
	color: rgba(255,255,255,.72);
}
@keyframes vma-gallery-flow {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.vma-gallery {
	display: grid;
	gap: 34px;
}
.vma-gallery-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}
.vma-gallery-stat {
	position: relative;
	display: grid;
	gap: 6px;
	min-height: 118px;
	padding: 22px;
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
	box-shadow: 0 18px 42px rgba(0,0,0,.16);
	overflow: hidden;
}
.vma-gallery-stat::after {
	content: "";
	position: absolute;
	inset: 0;
	border-top: 2px solid rgba(194,164,92,.74);
	pointer-events: none;
}
.vma-gallery-stat-number {
	color: #fff;
	font-family: var(--vma-sans);
	font-size: clamp(2.1rem, 4vw, 3.2rem);
	line-height: .95;
	letter-spacing: 0;
}
.vma-gallery-stat-label {
	align-self: end;
	color: rgba(255,255,255,.72);
	font-size: .82rem;
	font-weight: 800;
	letter-spacing: 0;
}
.vma-gallery-type {
	display: grid;
	gap: 20px;
}
.vma-gallery-type-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	border-bottom: 1px solid rgba(255,255,255,.16);
	padding-bottom: 12px;
}
.vma-gallery-type-head .vma-h2 {
	margin: 0;
}
.vma-gallery-events {
	display: grid;
	gap: 28px;
}
.vma-gallery-event {
	display: grid;
	gap: 14px;
}
.vma-gallery-event-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
}
.vma-gallery-event-head h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.15rem, 2vw, 1.45rem);
}
.vma-gallery-event-head span {
	color: rgba(255,255,255,.72);
	font-weight: 600;
}
.vma-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(190px, 100%), 280px));
	gap: 14px;
	justify-content: start;
	align-items: start;
}
.vma-gallery-item {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	width: 100%;
	max-width: 280px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 14px;
	background: rgba(255,255,255,.06);
	overflow: hidden;
	color: #fff;
	text-align: left;
	box-shadow: 0 16px 36px rgba(0,0,0,.14);
}
.vma-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease, filter .35s ease;
}
.vma-gallery-item:hover img,
.vma-gallery-item:focus-visible img {
	transform: scale(1.06);
	filter: saturate(1.08);
}
.vma-gallery-caption {
	position: absolute;
	inset: auto 0 0;
	display: grid;
	gap: 3px;
	padding: 44px 12px 12px;
	background: linear-gradient(180deg, transparent, rgba(2,6,23,.82));
}
.vma-gallery-caption strong,
.vma-gallery-caption small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.vma-gallery-caption small {
	color: rgba(255,255,255,.72);
	font-size: .78rem;
}

.vma-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(18px, 4vw, 44px);
	background: rgba(2,6,23,.78);
	backdrop-filter: blur(14px);
}
.vma-lightbox.is-open {
	display: flex;
}
.vma-lightbox__dialog {
	position: relative;
	display: grid;
	gap: 12px;
	max-width: min(1060px, 94vw);
	max-height: 92vh;
}
.vma-lightbox.is-pdf .vma-lightbox__dialog {
	width: min(1160px, 94vw);
	height: min(820px, 88vh);
	grid-template-rows: minmax(0, 1fr) auto;
}
.vma-lightbox__img {
	max-width: 100%;
	max-height: 82vh;
	object-fit: contain;
	border-radius: 14px;
	box-shadow: 0 28px 80px rgba(0,0,0,.46);
}
.vma-lightbox__frame {
	display: none;
	width: 100%;
	height: 100%;
	min-height: 0;
	border: 0;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 28px 80px rgba(0,0,0,.46);
}
.vma-lightbox.is-pdf .vma-lightbox__img {
	display: none;
}
.vma-lightbox.is-pdf .vma-lightbox__frame {
	display: block;
}
.vma-lightbox__caption {
	color: rgba(255,255,255,.84);
	text-align: center;
	font-weight: 600;
	min-height: 1.4em;
}
.vma-lightbox__close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.18);
	background: rgba(15,23,42,.9);
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
}

.vma-filterbar {
	display: grid;
	grid-template-columns: repeat(3, minmax(170px, 1fr)) auto;
	align-items: end;
	gap: 12px;
	margin: 26px 0 34px;
	padding: 16px;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 14px;
	background: rgba(255,255,255,.06);
}
.vma-filterbar label {
	display: grid;
	gap: 6px;
	color: rgba(255,255,255,.76);
	font-size: .84rem;
	font-weight: 700;
}
.vma-filterbar select {
	width: 100%;
	min-height: 42px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 10px;
	background: rgba(255,255,255,.92);
	color: var(--vma-text);
	padding: 0 12px;
}
.vma-filterbar .vma-btn {
	min-height: 36px;
	padding: 8px 20px;
	border-radius: 999px;
	font-size: .92rem;
	white-space: nowrap;
}
.vma-filterbar__submit {
	justify-self: end;
	min-width: 128px;
}
.vma-memorandums,
.vma-memo-year,
.vma-memo-side {
	display: grid;
	gap: 18px;
}
.vma-memo-year {
	margin-top: 34px;
}
.vma-memo-side .vma-h3 {
	margin: 0;
}
.vma-memo-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}
.vma-memo-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 16px 18px;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 16px;
	background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
	box-shadow: 0 14px 34px rgba(0,0,0,.12);
}
.vma-memo-file {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 78px;
	border-radius: 12px;
	background: rgba(255,255,255,.92);
	color: var(--vma-blue);
	font-family: var(--vma-mono);
	font-weight: 800;
	font-size: .74rem;
	overflow: hidden;
	box-shadow: inset 0 -8px 0 rgba(30,58,138,.08), 0 10px 24px rgba(0,0,0,.16);
}
.vma-memo-file.has-image {
	background: rgba(255,255,255,.08);
	box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.vma-memo-file img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.vma-memo-file-icon {
	width: 28px;
	height: 28px;
}
.vma-memo-body {
	min-width: 0;
}
.vma-memo-body h4 {
	margin: 0 0 6px;
	color: #fff;
	font-size: 1rem;
	line-height: 1.25;
}
.vma-memo-authors,
.vma-memo-excerpt {
	margin: 0;
	color: rgba(255,255,255,.72);
	font-size: .88rem;
}
.vma-memo-label {
	color: rgba(255,255,255,.9);
	font-weight: 800;
	margin-right: 4px;
}
.vma-memo-authors a {
	color: rgba(255,255,255,.88);
	text-decoration: none;
}
.vma-memo-authors a:hover {
	text-decoration: underline;
}
.vma-memo-excerpt {
	margin-top: 8px;
}
.vma-memo-open {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255,255,255,.92);
	color: var(--vma-blue) !important;
	font-weight: 800;
	text-decoration: none !important;
	transition: transform .2s ease, background .2s ease, color .2s ease;
}
.vma-memo-open svg {
	width: 20px;
	height: 20px;
}
.vma-memo-open:hover,
.vma-memo-open:focus-visible {
	background: #fff;
	transform: translateY(-2px);
	outline: none;
}
.vma-memo-open.is-disabled {
	background: rgba(255,255,255,.1);
	color: rgba(255,255,255,.62) !important;
	transform: none;
}
.vma-linkedin-col a[href*="elfsight.com/linkedin-feed-widget"],
.vma-linkedin-col a[href*="utm_campaign=free-widget"],
.vma-linkedin-col [class*="eapps-widget-toolbar"] {
	display: none !important;
}
.vma-mootie-memos {
	margin-top: 44px;
}
.vma-mootie-content {
	margin-top: 32px;
}
.vma-mootie-photos-section {
	margin-top: 44px;
}

@media (max-width: 860px) {
	.vma-section-head--row {
		align-items: flex-start;
		flex-direction: column;
	}
	.vma-comp-schedule-head {
		display: none;
	}
	.vma-comp-schedule-row {
		grid-template-columns: 34px minmax(0, 1fr);
		align-items: start;
	}
	.vma-comp-schedule-row > span,
	.vma-comp-schedule-row strong,
	.vma-comp-schedule-row em {
		grid-column: 2;
	}
	.vma-comp-schedule-row::before {
		grid-row: 1 / span 3;
	}
	.vma-announcement-list a {
		grid-template-columns: 1fr;
		gap: 5px;
	}
	.vma-home-topline .vma-card-box {
		min-height: 0;
	}
	.vma-home-photo-slider {
		margin-inline: -20px;
		border-radius: 0;
		mask-image: none;
	}
	.vma-home-photo-track {
		overflow-x: auto;
		width: 100%;
		animation: none;
		padding: 0 20px 10px;
		scroll-snap-type: x mandatory;
	}
	.vma-home-photo-slide {
		width: min(78vw, 320px);
		scroll-snap-align: start;
	}
	.vma-gallery-stats {
		grid-template-columns: 1fr;
	}
	.vma-gallery-stats.vma-alumni-stats {
		grid-template-columns: 1fr;
	}
	.vma-gallery-stat {
		min-height: 104px;
	}
	.vma-gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 280px));
	}
	.vma-memo-grid {
		grid-template-columns: 1fr;
	}
	.vma-filterbar {
		grid-template-columns: 1fr;
	}
	.vma-filterbar__submit {
		justify-self: stretch;
	}
}
