/**
 * dgs2_pfc_site_header — v1 dgs2_site_header'ın navy/lacivert (#0e2a5c) PFC portu.
 *
 * Renk paleti:
 *   - Ana navy:     #0e2a5c  (v1 #082569'dan ~%8 koyulaştırılmış lacivert)
 *   - Overlay rgba: rgba(5, 26, 77, x)
 *
 * Yapı:
 *   - .pfch-main          → üst bar (brand / search / menu)
 *   - .pfch-strip         → alt bar (phone / email / nav×3 / language)
 *   - .dgs2-pfc-overlay   → full-screen overlay (brand + 3×3 grid + 3-col footer)
 */
/* Keep a permanent vertical scrollbar on the root. The theme propagates
   scrolling from body{overflow-x:hidden}; when the MENU overlay locks the page
   with body{overflow:hidden} the scrollbar vanishes and the centred content
   jumps sideways = the flicker. Forcing overflow-y:scroll on <html> both keeps
   the scrollbar always present AND stops body→viewport overflow propagation,
   so locking the body no longer shifts the layout. */
html { overflow-y: scroll; scrollbar-gutter: stable; }

.dgs2-pfc-site-header *,
.dgs2-pfc-site-header *::before,
.dgs2-pfc-site-header *::after { box-sizing: border-box; margin: 0; padding: 0; }
.dgs2-pfc-overlay *,
.dgs2-pfc-overlay *::before,
.dgs2-pfc-overlay *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--pfc-header-navy: #0e2a5c;
	--pfch-main-pad-x: 50px;
}

.dgs2-pfc-site-header {
	font-family: 'Poppins', sans-serif;
	width: 100%;
	max-width: 100%;
	position: relative;
	overflow-x: hidden;
}

/*
 * Hero + sayfa tepesi: header TEK düz lacivert (üst/alt bar aynı ton).
 * Uzun mavi geçiş yalnızca ::after ile header altından hero'ya sarkar.
 */
html.pfch-hero-merge .dgs2-pfc-site-header.pfch-at-top {
	background: var(--pfc-header-navy);
	overflow: visible;
}

html.pfch-hero-merge .dgs2-pfc-site-header.pfch-at-top .pfch-main,
html.pfch-hero-merge .dgs2-pfc-site-header.pfch-at-top .pfch-strip {
	background: transparent;
}

html.pfch-hero-merge .dgs2-pfc-site-header.pfch-at-top .pfch-strip {
	border-top-color: rgba(255, 255, 255, 0.08);
}

html.pfch-hero-merge .dgs2-pfc-site-header.pfch-at-top::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100vw;
	max-width: 100vw;
	height: clamp(72px, 11vh, 140px);
	transform: translate(-50%, 99%);
	background: linear-gradient(
		180deg,
		var(--pfc-header-navy) 0%,
		rgba(14, 42, 92, 0.90) 16%,
		rgba(14, 42, 92, 0.70) 38%,
		rgba(14, 42, 92, 0.40) 64%,
		rgba(14, 42, 92, 0.18) 82%,
		transparent 100%
	);
	pointer-events: none;
	z-index: 3;
}

/* ── MAIN BAR ─────────────────────────────────────────────── */
.dgs2-pfc-site-header .pfch-main { background: #0e2a5c; width: 100%; }
.dgs2-pfc-site-header .pfch-main-inner {
	width: 100%;
	padding: 0 var(--pfch-main-pad-x);
	height: 96px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
}

/* Brand */
.dgs2-pfc-site-header .pfch-brand {
	flex-shrink: 0;
	text-decoration: none;
	display: flex;
	align-items: center;
	color: #fff;
}
.dgs2-pfc-site-header .pfch-brand img { height: var(--pfch-logo-h, 52px); width: auto; display: block; }
/* Brand wordmark is a dark two-tone logo, but the header sits on a dark teal /
   hero background — render it as a clean monochrome white wordmark for contrast. */
.dgs2-pfc-site-header .pfch-brand img { filter: brightness(0) invert(1); }
.dgs2-pfc-site-header .pfch-brand-text {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #fff;
	line-height: 1;
	white-space: nowrap;
}
.dgs2-pfc-site-header .pfch-brand-text .pfch-brand-accent { color: #f47c2a; }

/* Search */
.dgs2-pfc-site-header .pfch-search {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	height: 52px;
	max-width: 720px;
	width: 100%;
	justify-self: center;
	transition: border-color .2s, background .2s;
	overflow: hidden;
}
.dgs2-pfc-site-header .pfch-search:focus-within {
	border-color: rgba(255, 255, 255, 0.40);
	background: rgba(255, 255, 255, 0.10);
}
.dgs2-pfc-site-header .pfch-search-input {
	flex: 1;
	background: transparent;
	border: 0;
	outline: 0;
	color: #fff;
	font: inherit;
	font-size: 15px;
	padding: 0 20px;
	min-width: 0;
	height: 100%;
	text-transform: none;
}
.dgs2-pfc-site-header .pfch-search-input::placeholder {
	color: rgba(255, 255, 255, 0.55);
	text-transform: none;
}
.dgs2-pfc-site-header .pfch-search-btn {
	width: 52px;
	height: 52px;
	background: transparent;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .2s;
	flex-shrink: 0;
}
.dgs2-pfc-site-header .pfch-search-btn:hover { background: rgba(255, 255, 255, 0.08); }
.dgs2-pfc-site-header .pfch-search-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Menu button — brand'ten biraz küçük, search ile uyumlu */
.dgs2-pfc-site-header .pfch-menu-btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 0 4px;
	background: transparent;
	border: 0;
	color: #fff;
	text-decoration: none;
	font-family: inherit;
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity .2s;
}
.dgs2-pfc-site-header .pfch-menu-btn:hover { opacity: 0.85; }
.dgs2-pfc-site-header .pfch-menu-lines { display: inline-flex; flex-direction: column; gap: 5px; }
.dgs2-pfc-site-header .pfch-menu-lines span {
	display: block;
	width: 30px;
	height: 2.2px;
	background: #fff;
	border-radius: 2px;
}
.dgs2-pfc-site-header .pfch-menu-text { line-height: 1; }

/* ── BOTTOM STRIP — aynı navy ── */
.dgs2-pfc-site-header .pfch-strip { background: #0e2a5c; border-top: 1px solid rgba(255, 255, 255, 0.08); width: 100%; }
.dgs2-pfc-site-header .pfch-strip-inner {
	width: 100%;
	padding: 0;
	min-height: 52px;
	display: flex;
	align-items: stretch;
}
.dgs2-pfc-site-header .pfch-bar-item {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 400;
	text-decoration: none;
	letter-spacing: 0.1px;
	padding: 0 10px;
	transition: color .2s, background .2s;
	white-space: nowrap;
	position: relative;
	min-width: 0;
}
.dgs2-pfc-site-header .pfch-bar-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0; top: 50%;
	transform: translateY(-50%);
	width: 1px; height: 16px;
	background: rgba(255, 255, 255, 0.14);
}
.dgs2-pfc-site-header .pfch-bar-item:hover { color: #fff; background: rgba(255, 255, 255, 0.04); }
.dgs2-pfc-site-header .pfch-bar-item svg {
	width: 14px; height: 14px;
	stroke: rgba(255, 255, 255, 0.55);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex-shrink: 0;
	transition: stroke .2s;
}
.dgs2-pfc-site-header .pfch-bar-item:hover svg { stroke: rgba(255, 255, 255, 0.92); }
.dgs2-pfc-site-header .pfch-bar-item span,
.dgs2-pfc-site-header .pfch-bar-label {
	overflow: hidden;
	text-overflow: ellipsis;
}
.dgs2-pfc-site-header .pfch-bar-caret {
	width: 10px;
	height: 10px;
	margin-left: 2px;
	stroke: rgba(255, 255, 255, 0.55);
	stroke-width: 2.5;
}

.dgs2-pfc-site-header .pfch-bar-lang { cursor: pointer; font-size: inherit; }
.dgs2-pfc-site-header .pfch-bar-lang span { font-size: inherit; }
.dgs2-pfc-site-header .pfch-bar-lang { font-size: 12px; }
.dgs2-pfc-site-header .pfch-bar-lang > div[class*="elfsight"],
.dgs2-pfc-site-header .pfch-bar-lang [class*="elfsight-app"] {
	font-size: inherit !important;
}

/* ── OVERLAY MENU (v2 — split editorial) ─────────────────── */
.dgs2-pfc-overlay {
	--pfco-pad-x: 24px;
	--pfco-accent: #7B9CD4;
	--pfco-accent-2: #455e8a;
	position: fixed;
	inset: 0;
	z-index: 1100;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	overflow-y: auto;
	overflow-x: hidden;
	opacity: 0;
	visibility: hidden;
	transition: opacity .38s ease, visibility 0s linear .38s;
}
.dgs2-pfc-overlay::before,
.dgs2-pfc-overlay::after {
	content: '';
	position: fixed;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}
.dgs2-pfc-overlay::before {
	width: min(58vw, 520px);
	height: min(58vw, 520px);
	top: -12%;
	right: -8%;
	background: radial-gradient(circle, rgba(105, 139, 197, 0.34) 0%, rgba(105, 139, 197, 0) 68%);
}
.dgs2-pfc-overlay::after {
	width: min(42vw, 380px);
	height: min(42vw, 380px);
	bottom: -10%;
	left: -6%;
	background: radial-gradient(circle, rgba(105, 139, 197, 0.16) 0%, rgba(105, 139, 197, 0) 70%);
}
.dgs2-pfc-overlay {
	background:
		linear-gradient(118deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 38%),
		linear-gradient(165deg, #0c1828 0%, #142646 46%, #1a2f52 100%);
}
.dgs2-pfc-overlay.is-open {
	opacity: 1;
	visibility: visible;
	transition: opacity .38s ease, visibility 0s;
}

.pfco-close {
	position: fixed;
	top: clamp(18px, 3vh, 28px);
	right: var(--pfco-pad-x);
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: background .22s ease, border-color .22s ease, transform .22s ease;
}
.pfco-close svg { width: 22px; height: 22px; opacity: 0.95; display: block; }
.pfco-close:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.34);
	transform: translateY(-1px);
}

.pfco-inner {
	position: relative;
	z-index: 1;
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(42px, 5.5vh, 72px) var(--pfco-pad-x) 28px;
	width: 100%;
	min-height: 100vh;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	grid-template-rows: auto auto;
	align-items: stretch;
	gap: clamp(11px, 1.6vh, 16px) clamp(28px, 4vw, 52px);
}

.pfco-brand {
	grid-column: 1 / -1;
	text-align: center;
	padding: 0 0 clamp(10px, 1.2vh, 14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pfco-brand--hidden { display: none; }
.pfco-brand-name {
	font-size: clamp(34px, 4.6vw, 56px);
	font-weight: 600;
	letter-spacing: -0.02em;
	text-transform: none;
	margin: 0 auto 8px;
	color: #fff;
	line-height: 1.08;
	max-width: 18ch;
}
.pfco-brand-name .pfch-brand-accent { color: var(--pfco-accent); }
.pfco-tagline {
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	letter-spacing: 0.02em;
	font-weight: 400;
	max-width: 42ch;
	line-height: 1.45;
}

.pfco-grid {
	counter-reset: pfco-nav;
	display: flex;
	flex-direction: column;
	gap: 0;
	grid-column: 1;
	grid-row: 2;
	align-self: stretch;
	width: 100%;
	height: 100%;
}
.pfco-tile {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 0;
	padding: 15px 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
	text-decoration: none;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-align: left;
	position: relative;
	transition: color .22s ease, padding .22s ease, border-color .22s ease;
}
.pfco-tile::before {
	counter-increment: pfco-nav;
	content: counter(pfco-nav, decimal-leading-zero);
	flex: 0 0 auto;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: rgba(123, 156, 212, 0.85);
	min-width: 26px;
}
.pfco-tile::after {
	content: '';
	margin-left: auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background:
		rgba(255, 255, 255, 0.04)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 3l5 4-5 4'/%3E%3C/svg%3E")
		center / 14px no-repeat;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity .22s ease, transform .22s ease, border-color .22s ease, background-color .22s ease;
}
.pfco-tile:hover,
.pfco-tile:focus-visible {
	color: #fff;
	padding-left: 10px;
	border-bottom-color: rgba(255, 255, 255, 0.30);
	box-shadow: inset 3px 0 0 rgba(255, 255, 255, 0.55);
}
.pfco-tile:hover::after,
.pfco-tile:focus-visible::after {
	opacity: 1;
	transform: translateX(0);
	border-color: rgba(255, 255, 255, 0.40);
	background-color: rgba(255, 255, 255, 0.10);
}
.pfco-tile:first-child { border-top: 1px solid rgba(255, 255, 255, 0.08); }

.dgs2-pfc-overlay.is-open .pfco-tile {
	animation: pfco-tile-in .45s ease both;
}
.dgs2-pfc-overlay.is-open .pfco-tile:nth-child(1) { animation-delay: .04s; }
.dgs2-pfc-overlay.is-open .pfco-tile:nth-child(2) { animation-delay: .07s; }
.dgs2-pfc-overlay.is-open .pfco-tile:nth-child(3) { animation-delay: .10s; }
.dgs2-pfc-overlay.is-open .pfco-tile:nth-child(4) { animation-delay: .13s; }
.dgs2-pfc-overlay.is-open .pfco-tile:nth-child(5) { animation-delay: .16s; }
.dgs2-pfc-overlay.is-open .pfco-tile:nth-child(6) { animation-delay: .19s; }
.dgs2-pfc-overlay.is-open .pfco-tile:nth-child(7) { animation-delay: .22s; }
.dgs2-pfc-overlay.is-open .pfco-tile:nth-child(8) { animation-delay: .25s; }
.dgs2-pfc-overlay.is-open .pfco-tile:nth-child(9) { animation-delay: .28s; }
@keyframes pfco-tile-in {
	from { opacity: 0; transform: translateX(-14px); }
	to { opacity: 1; transform: translateX(0); }
}

.pfco-footer {
	grid-column: 2;
	grid-row: 2;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-top: 0;
	border-top: 0;
	align-self: stretch;
	height: 100%;
	min-height: 0;
}
.pfco-footer > * { min-width: 0; }
.pfco-col {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 24px 26px;
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 40px rgba(8, 16, 32, 0.22);
}
.pfco-col-title {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 16px;
	color: rgba(255, 255, 255, 0.92);
	position: relative;
	display: block;
	padding: 0 0 0 12px;
	border-left: 3px solid var(--pfco-accent);
}
.pfco-col-title::after { display: none; }

.pfco-col-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1 1 auto;
}
.pfco-col-list li { display: flex; gap: 11px; align-items: flex-start; line-height: 1.55; color: rgba(255, 255, 255, 0.82); font-size: 15px; }
.pfco-col-list svg { flex: 0 0 auto; width: 17px; height: 17px; color: var(--pfco-accent); margin-top: 3px; }
.pfco-col-list a { color: rgba(255, 255, 255, 0.88); text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
.pfco-col-list a:hover { color: #fff; border-bottom-color: var(--pfco-accent); }

.pfco-social {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: auto;
	padding-top: 18px;
}
.pfco-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.pfco-social a:hover {
	background: rgba(123, 156, 212, 0.18);
	border-color: rgba(123, 156, 212, 0.45);
	transform: translateY(-2px);
}
.pfco-social svg { width: 17px; height: 17px; }

.pfco-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pfco-promo {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	min-height: 140px;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(8, 16, 32, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.pfco-promo--video {
	display: block;
	padding: 0;
	border: 0;
	cursor: pointer;
	font: inherit;
	color: inherit;
	text-align: left;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.pfco-promo--video:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
	border-color: rgba(123, 156, 212, 0.4);
}
.pfco-promo--video:focus-visible {
	outline: 2px solid var(--pfco-accent);
	outline-offset: 3px;
}
.pfco-promo img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.pfco-promo-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 24, 56, 0.22);
	pointer-events: none;
	transition: background 0.22s ease;
}
.pfco-promo--video:hover .pfco-promo-play { background: rgba(8, 24, 56, 0.36); }
.pfco-promo-play-ico {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255, 255, 255, 0.92);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
	position: relative;
}
.pfco-promo-play-ico::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 13px solid #142646;
	transform: translateX(2px);
}
.pfco-promo-ph {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(126, 200, 240, 0.18);
	color: #7ec8f0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pfco-promo--video > .pfco-promo-ph {
	width: 100%;
	height: 100%;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.06);
}

/* Promo video modal (menü üstünde) */
.pfco-video-modal[hidden] { display: none !important; }
.pfco-video-modal {
	position: fixed;
	inset: 0;
	z-index: 12050;
	display: grid;
	place-items: center;
	padding: 24px;
}
.pfco-video-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
}
.pfco-video-dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 92vw);
	aspect-ratio: 16 / 9;
	background: #000;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.16);
}
.pfco-video-close {
	position: absolute;
	top: -44px;
	right: 0;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}
.pfco-video-close:hover { background: rgba(0, 0, 0, 0.55); }
.pfco-video-frame,
.pfco-video-frame iframe,
.pfco-video-frame video {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}
html.pfco-video-open { overflow: hidden; }

.pfco-about {
	margin: 0;
	flex: 1 1 auto;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.6;
	font-size: 15px;
}
.pfco-readmore {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 16px;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}
.pfco-readmore::after {
	content: '→';
	color: var(--pfco-accent);
	transition: transform .2s ease;
}
.pfco-readmore:hover::after { transform: translateX(4px); }

body.pfc-overlay-open { overflow: hidden; }

/* ── Responsive ── */
@media (max-width: 1100px) {
	.dgs2-pfc-site-header {
		--pfch-main-pad-x: 28px;
	}
	.dgs2-pfc-site-header .pfch-main-inner { padding: 0 var(--pfch-main-pad-x); gap: 20px; height: 84px; }
	.dgs2-pfc-site-header .pfch-search { height: 46px; }
	.dgs2-pfc-site-header .pfch-search-btn { width: 46px; height: 46px; }
	.dgs2-pfc-site-header .pfch-brand-text { font-size: 34px; }
}
@media (max-width: 900px) {
	.dgs2-pfc-site-header {
		--pfch-main-pad-x: 20px;
	}
	.dgs2-pfc-site-header .pfch-main-inner {
		grid-template-columns: 1fr auto;
		grid-auto-rows: auto;
		gap: 12px 16px;
		padding: 14px var(--pfch-main-pad-x);
		height: auto;
	}
	.dgs2-pfc-site-header .pfch-brand-text { font-size: 32px; }
	/* Mobile: hide search bar */
	.dgs2-pfc-site-header .pfch-search { display: none; }
	.dgs2-pfc-site-header .pfch-menu-text { display: none; }
	/* Menü butonu sağ kenara tam yaslı; sağ boşluğu = başlığın sol boşluğu */
	.dgs2-pfc-site-header .pfch-menu-btn { padding: 0; justify-self: end; }

	.dgs2-pfc-site-header .pfch-strip-inner {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.dgs2-pfc-site-header .pfch-bar-item {
		flex: none;
		min-width: 0;
		font-size: 12px;
		padding: 10px 8px;
		line-height: 1.25;
		white-space: normal;
	}
	.dgs2-pfc-site-header .pfch-bar-item span {
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
	}
	.dgs2-pfc-site-header .pfch-bar-item::after { display: none; }
	.dgs2-pfc-site-header .pfch-bar-item:nth-child(-n+4) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.10);
	}
	.dgs2-pfc-site-header .pfch-bar-item:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.10);
	}
	.dgs2-pfc-site-header .pfch-bar-lang { grid-column: 1 / -1; }

	.dgs2-pfc-overlay { --pfco-pad-x: 14px; }
	.pfco-inner {
		padding: 68px var(--pfco-pad-x) 40px;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		gap: 28px;
	}
	.pfco-brand { grid-column: 1; }
	.pfco-grid { grid-column: 1; grid-row: 2; height: auto; }
	.pfco-footer {
		grid-column: 1;
		grid-row: 3;
		height: auto;
	}
	.pfco-footer .pfco-col {
		flex: none;
		padding: 22px 20px;
	}
	.pfco-social { margin-top: 16px; padding-top: 0; }
	.pfco-readmore { margin-top: 14px; padding-top: 0; }
	.pfco-tile { font-size: 19px; padding: 13px 0; }
	.pfco-promo {
		aspect-ratio: 16 / 9;
		min-height: 200px;
	}
}
@media (max-width: 520px) {
	.dgs2-pfc-site-header .pfch-brand-text { font-size: 28px; }
	.dgs2-pfc-site-header .pfch-bar-item { flex: 1 1 50%; }
	.dgs2-pfc-site-header .pfch-bar-item::after { display: none; }
	.dgs2-pfc-site-header .pfch-bar-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.10); }
	.dgs2-pfc-site-header .pfch-bar-item:not(:nth-last-child(-n+2)) { border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
	.dgs2-pfc-site-header .pfch-bar-item { font-size: 12.5px; }
	.pfco-brand-name { max-width: none; }
	.pfco-tile::after { display: none; }
}
