/* DGS Elements 6 — ACU Admissions Hub (white section) */
.acu-hub,
.acu-hub *,
.acu-hub *::before,
.acu-hub *::after { box-sizing: border-box; }

.acu-hub {
	--acu-brick:   #F37021;
	--acu-brick-d: #C2510E;
	--acu-accent:  #F59B6B;
	--acu-ink:     #2B211B;
	--acu-line:    rgba(43,33,27,.10);
	--acu-pad-x:   clamp(20px, 5vw, 72px);
	--acu-thumb:   88px;

	width: 100%;
	background: #fff;
	color: var(--acu-ink);
	font-family: var(--acu-font, "Poppins", "Inter", system-ui, sans-serif);
	padding: clamp(48px, 7vw, 80px) var(--acu-pad-x);
}
.acu-hub-inner { max-width: 1320px; margin: 0 auto; }

.acu-hub-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: clamp(16px, 3vw, 32px);
}
.acu-hub-head__copy { flex: 1; min-width: 0; }
.acu-hub-head__thumb {
	flex-shrink: 0;
	width: var(--acu-thumb);
	height: var(--acu-thumb);
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--acu-line);
	box-shadow: 0 8px 20px -10px rgba(43,33,27,.2);
}
.acu-hub-head__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.acu-hub-eyebrow {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--acu-brick);
}
.acu-hub-eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: var(--acu-accent); }
.acu-hub-title { margin: 16px 0 0; font-size: clamp(28px, 3.8vw, 44px); line-height: 1.1; font-weight: 700; letter-spacing: -.02em; }
.acu-hub-accent { color: var(--acu-brick); }
.acu-hub-lead { margin: 14px 0 0; max-width: 680px; font-size: clamp(15px, 1.1vw, 17px); line-height: 1.65; color: rgba(43,33,27,.68); }

.acu-hub-stat-band {
	margin-top: 20px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: clamp(18px, 2.8vw, 32px);
	padding: clamp(20px, 2.6vw, 28px) clamp(24px, 3.2vw, 40px);
	border-radius: 18px;
	background: linear-gradient(120deg, var(--acu-brick-d) 0%, var(--acu-brick) 55%, rgba(245,155,107,.35) 100%);
	color: #fff;
	border: 1px solid rgba(255,255,255,.12);
	box-shadow: 0 20px 44px -24px rgba(151,66,31,.35);
}
.acu-hub-stat-band__n {
	flex-shrink: 0;
	align-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(44px, 5.2vw, 64px);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1;
	color: var(--acu-accent);
	padding-top: 0.08em;
	margin-bottom: -0.08em;
}
.acu-hub-stat-band__t {
	margin: 0;
	align-self: center;
	font-size: clamp(16px, 1.55vw, 20px);
	line-height: 1.5;
	font-weight: 600;
	color: rgba(255,255,255,.95);
	max-width: 820px;
}
.acu-hub-stat-band__t strong { color: #fff; font-weight: 800; }

.acu-hub-shell {
	margin-top: 24px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(14px, 2vw, 20px);
	align-items: start;
	--acu-hub-grid-h: calc(5 * 90px + 4 * 10px);
}

.acu-hub-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(5, 90px);
	gap: 10px;
	height: var(--acu-hub-grid-h);
	min-height: 0;
}

.acu-hub-card {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 13px;
	row-gap: 2px;
	align-items: center;
	align-content: center;
	padding: 14px 34px 14px 14px;
	border-radius: 16px;
	border: 1px solid var(--acu-line);
	background: #fff;
	text-align: left;
	cursor: pointer;
	font-family: inherit;
	transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
	position: relative;
	min-height: 0;
	height: 100%;
}
.acu-hub-card:hover { border-color: rgba(243,112,33,.28); transform: translateY(-2px); box-shadow: 0 12px 28px -16px rgba(43,33,27,.18); }
.acu-hub-card.is-active {
	border-color: var(--acu-brick);
	background: linear-gradient(145deg, rgba(243,112,33,.07) 0%, #fff 70%);
	box-shadow: 0 14px 32px -18px rgba(243,112,33,.28);
}
.acu-hub-card__icon {
	width: 40px; height: 40px; border-radius: 12px;
	display: grid; place-items: center;
	background: rgba(243,112,33,.08); color: var(--acu-brick);
	flex-shrink: 0;
	grid-column: 1; grid-row: 1 / span 2; align-self: center;
}
.acu-hub-card.is-active .acu-hub-card__icon { background: var(--acu-brick); color: #fff; }
.acu-hub-card__title { grid-column: 2; grid-row: 1; font-size: 13.5px; font-weight: 700; line-height: 1.3; color: var(--acu-ink); }
.acu-hub-card__sub { grid-column: 2; grid-row: 2; font-size: 11.5px; line-height: 1.35; color: rgba(43,33,27,.52); font-weight: 500; }
.acu-hub-card__arrow {
	position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
	font-size: 16px; font-weight: 700; color: rgba(43,33,27,.25);
	transition: color .2s, transform .2s;
}
.acu-hub-card.is-active .acu-hub-card__arrow { color: var(--acu-brick); transform: translate(2px, -50%); }

.acu-hub-panel {
	border-radius: 20px;
	border: 1px solid rgba(243,112,33,.14);
	background: linear-gradient(165deg, rgba(251,246,240,.55) 0%, #fff 45%);
	height: var(--acu-hub-grid-h);
	max-height: var(--acu-hub-grid-h);
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: acuHubPanel .35s ease;
}
@keyframes acuHubPanel { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.acu-hub-panel.is-swapping { opacity: .6; transform: translateY(4px); transition: opacity .15s, transform .15s; }

.acu-hub-panel__content {
	padding: clamp(18px, 2.2vw, 24px);
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	overflow-y: hidden;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}
.acu-hub-panel.is-overflowing .acu-hub-panel__content {
	overflow-y: auto;
}

.acu-hub-panel__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 4px;
	flex-shrink: 0;
}
.acu-hub-panel__top-main {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	flex: 1;
	min-width: 0;
}
.acu-hub-panel__thumb {
	flex-shrink: 0;
	width: var(--acu-thumb);
	height: var(--acu-thumb);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--acu-line);
}
.acu-hub-panel__thumb[hidden] { display: none; }
.acu-hub-panel__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.acu-hub-panel__icon {
	width: 44px; height: 44px; border-radius: 12px;
	display: grid; place-items: center;
	background: rgba(243,112,33,.1); color: var(--acu-brick);
	flex-shrink: 0;
	overflow: visible;
}
.acu-hub-panel__k {
	font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	color: rgba(43,33,27,.48);
}
.acu-hub-panel__title {
	margin: 6px 0 0; font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; line-height: 1.2; letter-spacing: -.02em;
}
.acu-hub-panel__lead {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: 400; /* bold değil — gövde metniyle aynı ağırlık (TEKMER/Yurt "komple bold" düzeltmesi) */
	line-height: 1.4;
	color: var(--acu-brick-d);
	flex-shrink: 0;
}
.acu-hub-panel__body {
	margin: 8px 0 0; font-size: 14px; line-height: 1.55; color: rgba(43,33,27,.72);
	flex-shrink: 0;
}
.acu-hub-panel__list {
	margin: 12px 0 0; padding: 0; list-style: none;
	display: flex; flex-direction: column; gap: 7px;
	flex-shrink: 0;
}
.acu-hub-panel__list li {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: 13px; line-height: 1.45; font-weight: 500; color: rgba(43,33,27,.75);
}
.acu-hub-panel__list li::before {
	content: ""; width: 7px; height: 7px; border-radius: 50%; margin-top: 7px; flex-shrink: 0;
	background: var(--acu-accent); box-shadow: 0 0 0 3px rgba(245,155,107,.2);
}
.acu-hub-panel__note {
	margin: 28px 0 0; padding: 11px 13px; border-radius: 12px;
	font-size: 12.5px; line-height: 1.45; color: rgba(43,33,27,.58);
	background: rgba(243,112,33,.06); border: 1px solid rgba(243,112,33,.1);
	flex-shrink: 0;
}
.acu-hub-panel__note[hidden],
.acu-hub-panel__body[hidden],
.acu-hub-panel__lead[hidden],
.acu-hub-panel__list[hidden],
.acu-hub-panel__cta[hidden],
[data-panel-sections][hidden] {
	display: none !important;
}

/* Burslar konusu — başvuru formuna götüren CTA */
.acu-hub-panel__cta {
	align-self: flex-start;
	flex-shrink: 0;
	margin: 22px 0 2px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 999px;
	background: var(--acu-brick);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(243,112,33,.28);
	transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.acu-hub-panel__cta:hover,
.acu-hub-panel__cta:focus-visible {
	background: var(--acu-brick-d);
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(194,81,14,.32);
}
.acu-hub-panel__cta svg { flex-shrink: 0; }

/* Çok sütunlu konu içeriği — diğer panellerle aynı tipografi/renk */
.acu-hub-panel__sections {
	margin: 10px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
	min-height: 0;
	align-items: stretch;
}

.acu-hub-panel__col {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
	height: 100%;
}

.acu-hub-panel__block-title {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	color: rgba(43, 33, 27, .85);
	letter-spacing: 0;
}

.acu-hub-panel__block-icon {
	display: none; /* Bold bölüm başlıklarının yanında madde simgesi gösterilmez. */
}

.acu-hub-panel__block-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.acu-hub-panel__block-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 500;
	color: rgba(43, 33, 27, .75);
}

.acu-hub-panel__block-list li::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	margin-top: 7px;
	flex-shrink: 0;
	background: var(--acu-accent);
	box-shadow: 0 0 0 3px rgba(245,155,107, .2);
}

@media (max-width: 960px) {
	.acu-hub-shell { grid-template-columns: 1fr; }
	.acu-hub-grid {
		display: flex;
		flex-direction: column;
		gap: 10px;
		grid-template-columns: none;
		grid-template-rows: none;
		height: auto;
	}
	.acu-hub.is-mobile-accordion .acu-hub-card.is-active + .acu-hub-panel {
		margin-top: -6px;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
	.acu-hub.is-mobile-accordion .acu-hub-card.is-active:has(+ .acu-hub-panel) {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		border-bottom-color: rgba(243,112,33,.14);
		box-shadow: none;
	}
	.acu-hub-card { height: auto; min-height: 100px; }
	.acu-hub-panel { height: auto; min-height: 0; }
	/* Mobilde tüm konular varsayılan kapalı; açık olan kart tekrar tıklanınca kapanır */
	.acu-hub-panel.is-mobile-hidden { display: none; }
	.acu-hub-card__arrow { transition: transform .2s ease, color .2s ease; }
	.acu-hub-card.is-active .acu-hub-card__arrow { transform: translate(0, -50%) rotate(90deg); }
	.acu-hub-stat-band {
		grid-template-columns: auto minmax(0, 1fr);
		align-items: center;
		justify-items: start;
		text-align: left;
		gap: 14px 18px;
		padding: 22px 20px;
	}
	.acu-hub-stat-band__n {
		font-size: clamp(40px, 11vw, 52px);
	}
	.acu-hub-stat-band__t {
		flex: 1 1 200px;
		font-size: clamp(15px, 4.2vw, 18px);
		max-width: none;
	}
	.acu-hub-shell { --acu-hub-grid-h: auto; }
	.acu-hub-grid {
		grid-template-rows: none;
		height: auto;
	}
	.acu-hub-panel {
		height: auto;
		max-height: none;
	}
	.acu-hub-panel__sections { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 520px) {
	.acu-hub { padding-left: 20px; padding-right: 20px; }
	.acu-hub-head { flex-direction: column; }
}

/* ── Akreditasyon tablosu (4 sütun) ── */
.acu-hub-table-wrap { overflow-x: auto; margin-top: 6px; border: 1px solid var(--acu-line, #e7ded2); border-radius: 12px; }
.acu-hub-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 560px; }
.acu-hub-table th, .acu-hub-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--acu-line, #e7ded2); vertical-align: top; line-height: 1.45; }
.acu-hub-table td { color: rgba(43,33,27,.72); font-weight: 500; font-family: inherit; }
.acu-hub-table td:nth-child(2) { color: rgba(43,33,27,.82); font-weight: 600; }
.acu-hub-table tbody tr:last-child td { border-bottom: 0; }
.acu-hub-table thead th { font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--acu-brick, #F37021); background: rgba(243,112,33,.07); }
.acu-hub-table tbody tr:hover { background: rgba(243,112,33,.04); }
.acu-hub-table__n { width: 36px; color: var(--acu-brick, #F37021); font-weight: 700; }
.acu-hub-table__d { white-space: nowrap; font-variant-numeric: tabular-nums; }
/* Mobil: tabloyu yatay kaydırma yerine sığdır — sabit layout + kelime kır (taşma/kayıp yok).
   Web hiç dokunulmaz: tablo min-width:560 + panel kendi dikey kaymasını korur. */
@media (max-width: 700px) {
	.acu-hub-panel__content > * { min-width: 0; }
	[data-panel-table] { min-width: 0; max-width: 100%; }
	.acu-hub-table-wrap { max-width: 100%; overflow-x: visible; }
	.acu-hub-table {
		min-width: 0;
		width: 100%;
		table-layout: fixed;
		font-size: 11px;
	}
	.acu-hub-table th,
	.acu-hub-table td {
		padding: 8px 6px;
		word-break: break-word;
		overflow-wrap: anywhere;
		white-space: normal;
		vertical-align: top;
		line-height: 1.35;
	}
	.acu-hub-table th:nth-child(1), .acu-hub-table td:nth-child(1) { width: 8%; }
	.acu-hub-table th:nth-child(2), .acu-hub-table td:nth-child(2) { width: 36%; }
	.acu-hub-table th:nth-child(3), .acu-hub-table td:nth-child(3) { width: 20%; }
	.acu-hub-table th:nth-child(4), .acu-hub-table td:nth-child(4) { width: 36%; }
	.acu-hub-table__d { white-space: normal; }
}
