.yepx-faqs {
	--yepx-faq-dcols: 2;
	--yepx-faq-tcols: 2;
	--yepx-faq-mcols: 2;
	--yepx-faq-cols: var(--yepx-faq-mcols);
	--yepx-faq-gap: 16px;
	--yepx-faq-radius: 16px;
	--yepx-faq-card-bg: #fff;
	--yepx-faq-q-color: var(--yepx-color-heading, #102c3b);
	--yepx-faq-a-color: var(--yepx-color-muted, #81909a);
	--yepx-faq-border: #eceff3;
	--yepx-faq-hover-dur: var(--yepx-duration, 240ms);
	width: 100%;
	max-width: var(--yepx-container-max, 1240px);
	margin-inline: auto;
	box-sizing: border-box;
}

.yepx-faqs--w-wide {
	max-width: 90vw;
}

.yepx-faqs--w-full {
	max-width: 100vw;
}

.yepx-faqs--dcols-1 { --yepx-faq-dcols: 1; }
.yepx-faqs--dcols-2 { --yepx-faq-dcols: 2; }
.yepx-faqs--dcols-3 { --yepx-faq-dcols: 3; }
.yepx-faqs--tcols-1 { --yepx-faq-tcols: 1; }
.yepx-faqs--tcols-2 { --yepx-faq-tcols: 2; }
.yepx-faqs--tcols-3 { --yepx-faq-tcols: 3; }
.yepx-faqs--mcols-1 { --yepx-faq-mcols: 1; }
.yepx-faqs--mcols-2 { --yepx-faq-mcols: 2; }
.yepx-faqs--mcols-3 { --yepx-faq-mcols: 3; }

.yepx-faqs__inner {
	width: 100%;
}

.yepx-faqs__head {
	margin-bottom: 2.5rem;
}

.yepx-faqs__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--yepx-color-heading, #102c3b);
}

.yepx-faqs__title--center,
.yepx-faqs__lead--center {
	text-align: center;
}

.yepx-faqs__title--left,
.yepx-faqs__lead--left {
	text-align: left;
}

.yepx-faqs__title--right,
.yepx-faqs__lead--right {
	text-align: right;
}

.yepx-faqs__lead {
	margin: 0 auto;
	max-width: 40rem;
	color: var(--yepx-color-muted, #81909a);
	font-size: 1rem;
	line-height: 1.6;
}

.yepx-faqs__lead--left,
.yepx-faqs__lead--right {
	margin-inline: 0;
}

.yepx-faqs__list {
	display: grid;
	grid-template-columns: repeat(var(--yepx-faq-cols), minmax(0, 1fr));
	gap: var(--yepx-faq-gap);
	align-items: start;
	position: relative;
}

.yepx-faqs__item {
	background: var(--yepx-faq-card-bg);
	border: 1px solid var(--yepx-faq-border);
	border-radius: var(--yepx-faq-radius);
	box-shadow: 0 1px 2px rgba(16, 44, 59, 0.04);
	min-width: 0;
	overflow: hidden;
}

.yepx-faqs__q-wrap {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
}

.yepx-faqs__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	min-height: 56px;
	padding: 1rem 1.15rem;
	margin: 0;
	border: 0;
	background: transparent;
	color: var(--yepx-faq-q-color);
	font: inherit;
	text-align: inherit;
	cursor: pointer;
}

.yepx-faqs__q:focus-visible {
	outline: 2px solid var(--yepx-color-primary, #06b5f2);
	outline-offset: -2px;
}

.yepx-faqs__q-text {
	flex: 1 1 auto;
	min-width: 0;
	line-height: 1.4;
}

.yepx-faqs--q-al-left .yepx-faqs__q { text-align: left; }
.yepx-faqs--q-al-center .yepx-faqs__q { text-align: center; }
.yepx-faqs--q-al-right .yepx-faqs__q { text-align: right; }
.yepx-faqs--q-al-justify .yepx-faqs__q { text-align: justify; }

.yepx-faqs--q-fs-sm .yepx-faqs__q { font-size: 0.9375rem; }
.yepx-faqs--q-fs-md .yepx-faqs__q { font-size: 1rem; }
.yepx-faqs--q-fs-lg .yepx-faqs__q { font-size: 1.0625rem; }
.yepx-faqs--q-fs-xl .yepx-faqs__q { font-size: 1.125rem; }
.yepx-faqs--q-fs-custom .yepx-faqs__q { font-size: var(--yepx-faq-q-size, 1rem); }

.yepx-faqs--q-fw-400 .yepx-faqs__q { font-weight: 400; }
.yepx-faqs--q-fw-500 .yepx-faqs__q { font-weight: 500; }
.yepx-faqs--q-fw-600 .yepx-faqs__q { font-weight: 600; }
.yepx-faqs--q-fw-700 .yepx-faqs__q { font-weight: 700; }
.yepx-faqs--q-fw-800 .yepx-faqs__q { font-weight: 800; }

.yepx-faqs__chev {
	flex: 0 0 auto;
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform var(--yepx-faq-hover-dur) ease;
	opacity: 0.55;
}

.yepx-faqs__item.is-open .yepx-faqs__chev {
	transform: rotate(225deg);
}

.yepx-faqs__a {
	padding: 0 1.15rem 1.15rem;
	color: var(--yepx-faq-a-color);
	line-height: 1.65;
}

.yepx-faqs__a[hidden] {
	display: none;
}

.yepx-faqs__a > :first-child {
	margin-top: 0;
}

.yepx-faqs__a > :last-child {
	margin-bottom: 0;
}

.yepx-faqs--a-al-left .yepx-faqs__a { text-align: left; }
.yepx-faqs--a-al-center .yepx-faqs__a { text-align: center; }
.yepx-faqs--a-al-right .yepx-faqs__a { text-align: right; }
.yepx-faqs--a-al-justify .yepx-faqs__a { text-align: justify; }

.yepx-faqs--a-fs-sm .yepx-faqs__a { font-size: 0.875rem; }
.yepx-faqs--a-fs-md .yepx-faqs__a { font-size: 0.9375rem; }
.yepx-faqs--a-fs-lg .yepx-faqs__a { font-size: 1rem; }
.yepx-faqs--a-fs-xl .yepx-faqs__a { font-size: 1.0625rem; }
.yepx-faqs--a-fs-custom .yepx-faqs__a { font-size: var(--yepx-faq-a-size, 0.9375rem); }

.yepx-faqs--a-fw-400 .yepx-faqs__a { font-weight: 400; }
.yepx-faqs--a-fw-500 .yepx-faqs__a { font-weight: 500; }
.yepx-faqs--a-fw-600 .yepx-faqs__a { font-weight: 600; }
.yepx-faqs--a-fw-700 .yepx-faqs__a { font-weight: 700; }
.yepx-faqs--a-fw-800 .yepx-faqs__a { font-weight: 800; }

@media (min-width: 768px) {
	.yepx-faqs {
		--yepx-faq-cols: var(--yepx-faq-tcols);
	}
}

@media (min-width: 1025px) {
	.yepx-faqs {
		--yepx-faq-cols: var(--yepx-faq-dcols);
	}
}

/*
 * «Devamını gör» — visual collapse only.
 * FAQ kolon BP (header 1024 değil): mobil ≤767, tablet 768–1024, masaüstü ≥1025.
 * No display:none / [hidden] / aria-hidden on items. Source Q+A stays.
 *
 * Kök (gap): gizlenen öğe grid hücresi olarak kalıyordu. height/max-height:0 +
 * visibility:hidden track’i silmez; grid-auto-rows + row-gap (ve q min-height)
 * son görünür madde ile buton arasında boş satır bırakır. position:absolute
 * öğeyi grid akışından çıkarır; clip ile görsel gizler.
 */
.yepx-faqs__more {
	display: none;
	justify-content: center;
	margin-top: var(--yepx-space-4, 1rem);
}

.yepx-faqs__more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--yepx-space-2, 0.5rem);
	min-height: 44px;
	padding: 0.65rem 1.2rem;
	border: 1px solid var(--yepx-color-border, #e5eaed);
	border-radius: var(--yepx-btn-radius, 9999px);
	background: var(--yepx-color-surface, #fff);
	color: var(--yepx-color-heading, #102c3b);
	box-shadow: var(--yepx-shadow-xs, 0 1px 2px rgba(11, 44, 61, 0.06));
	font: inherit;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition:
		background-color var(--yepx-duration-fast, 140ms) ease,
		border-color var(--yepx-duration-fast, 140ms) ease,
		box-shadow var(--yepx-duration-fast, 140ms) ease,
		color var(--yepx-duration-fast, 140ms) ease;
}

.yepx-faqs__more-btn:hover {
	background: var(--yepx-color-primary-soft, #e8f7fb);
	border-color: var(--yepx-color-primary, #06baf3);
	color: var(--yepx-color-heading, #102c3b);
	box-shadow: var(--yepx-shadow-sm, 0 4px 12px rgba(6, 186, 243, 0.12));
}

.yepx-faqs__more-btn:focus-visible {
	outline: 2px solid var(--yepx-color-focus, #0a7ca8);
	outline-offset: 2px;
}

.yepx-faqs__more-label {
	display: inline-block;
}

.yepx-faqs__more-chev {
	flex: 0 0 auto;
	width: 1.125rem;
	height: 1.125rem;
	display: block;
	transform: rotate(0deg);
	transition: transform var(--yepx-duration-fast, 140ms) ease;
}

.yepx-faqs__more-btn[aria-expanded="true"] .yepx-faqs__more-chev {
	transform: rotate(180deg);
}

@media (max-width: 767px) {
	.yepx-faqs--m-has-more .yepx-faqs__more {
		display: flex;
	}

	.yepx-faqs:not(.is-expanded) .yepx-faqs__item--m-beyond {
		position: absolute;
		inset-inline-start: 0;
		top: 0;
		width: 1px;
		height: 1px;
		max-height: 0;
		min-height: 0;
		margin: 0;
		padding: 0;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		visibility: hidden;
		border-width: 0;
		box-shadow: none;
		pointer-events: none;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.yepx-faqs--t-has-more .yepx-faqs__more {
		display: flex;
	}

	.yepx-faqs:not(.is-expanded) .yepx-faqs__item--t-beyond {
		position: absolute;
		inset-inline-start: 0;
		top: 0;
		width: 1px;
		height: 1px;
		max-height: 0;
		min-height: 0;
		margin: 0;
		padding: 0;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		visibility: hidden;
		border-width: 0;
		box-shadow: none;
		pointer-events: none;
	}
}

@media (min-width: 1025px) {
	.yepx-faqs--d-has-more .yepx-faqs__more {
		display: flex;
	}

	.yepx-faqs:not(.is-expanded) .yepx-faqs__item--d-beyond {
		position: absolute;
		inset-inline-start: 0;
		top: 0;
		width: 1px;
		height: 1px;
		max-height: 0;
		min-height: 0;
		margin: 0;
		padding: 0;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		clip-path: inset(50%);
		visibility: hidden;
		border-width: 0;
		box-shadow: none;
		pointer-events: none;
	}
}

@media (max-width: 390px) {
	.yepx-faqs {
		overflow-x: clip;
	}

	.yepx-faqs__q {
		min-height: 48px;
		padding: 0.85rem 0.9rem;
	}

	.yepx-faqs--mcols-3 .yepx-faqs__q {
		font-size: 0.8125rem;
		padding: 0.7rem 0.65rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yepx-faqs__chev {
		transition: none;
	}

	.yepx-faqs__more-btn {
		transition: none;
	}

	.yepx-faqs__more-chev {
		transition: none;
	}
}

.yepx-faqs--reduced .yepx-faqs__chev,
.yepx-faqs--reduced .yepx-faqs__more-chev {
	transition: none;
}

.yepx-faq-ed__kicker,
.yepx-faq-ed__child-kicker {
	margin: 0 0 0.35rem;
	font-size: 0.8125rem;
	color: #6b7280;
}

.yepx-faq-ed__child-q {
	margin: 0;
	font-weight: 600;
}
