/**
 * Ana sayfa — Çözümlü testler tanıtım bloğu.
 */

/* ——— Hocalarımız (hikâye halkaları) ——— */
.home-books-section--ogretmenler {
	margin-bottom: 1.5rem;
}

.home-books-section--ogretmenler .home-books-section__surface {
	padding: clamp(1.5rem, 3.5vw, 2.25rem);
}

.home-ogretmenler__title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.25rem, 2.4vw, 1.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.home-ogretmenler__lead {
	margin: 0 0 1.25rem;
	max-width: 40rem;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--text-muted, #64748b);
}

.home-ogretmenler__stories {
	display: flex;
	flex-wrap: nowrap;
	gap: 1rem 1.25rem;
	overflow-x: auto;
	overflow-y: visible;
	padding: 0.35rem 0.25rem 0.75rem;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
}

.home-ogretmenler__story-item {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.home-ogretmenler__story-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 5.5rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: inherit;
	text-align: center;
}

.home-ogretmenler__story-btn:focus-visible {
	outline: 2px solid var(--primary, #2563eb);
	outline-offset: 4px;
	border-radius: 0.5rem;
}

.home-ogretmenler__story-btn {
	position: relative;
}

.home-ogretmenler__story-img-wrap {
	display: block;
	padding: 3px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f97316, #ec4899, #a855f7, #06b6d4);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.home-ogretmenler__story-img-inner {
	display: block;
	width: 4.65rem;
	height: 4.65rem;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--surface, #fff);
	background: var(--surface-muted, #f1f5f9);
}

.home-ogretmenler__story-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-ogretmenler__story-label {
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.2;
	max-width: 5.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--text, #0f172a);
}

/* ——— Hikâye popup: mobil tam ekran (IG mobil), masaüstü yan kartlar + orta (IG masaüstü) ——— */
.home-ogretmen-story-dialog {
	width: 100%;
	max-width: none;
	height: 100%;
	max-height: none;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	color: #fff;
}

.home-ogretmen-story-dialog::backdrop {
	background: #0a0a0a;
}

.home-ogretmen-story-dialog__viewport {
	position: relative;
	min-height: 100dvh;
	min-height: 100vh;
	width: 100%;
	background: #0a0a0a;
	overflow: hidden;
	animation: home-ogretmen-dialog-in 0.24s ease-out;
}

@keyframes home-ogretmen-dialog-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.home-ogretmen-story-dialog__close-x {
	position: fixed;
	top: max(0.75rem, env(safe-area-inset-top));
	right: max(0.75rem, env(safe-area-inset-right));
	z-index: 40;
	display: none;
	width: 2.75rem;
	height: 2.75rem;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

.home-ogretmen-story-dialog__close-x:hover {
	background: rgba(255, 255, 255, 0.2);
}

.home-ogretmen-story-dialog__close-x:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.home-ogretmen-story-carousel {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-height: 100dvh;
	min-height: 100vh;
	width: 100%;
}

.home-ogretmen-story-carousel__side {
	display: none;
}

.home-ogretmen-story-carousel__chev {
	display: none;
}

.home-ogretmen-story-carousel__main {
	flex: 1;
	display: flex;
	align-items: stretch;
	justify-content: center;
	min-height: 0;
}

.home-ogretmen-story-main {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	min-height: 100%;
	background: #000;
}

.home-ogretmen-story-main__progress {
	position: absolute;
	top: max(0.5rem, env(safe-area-inset-top));
	left: max(0.65rem, env(safe-area-inset-left));
	right: max(0.65rem, env(safe-area-inset-right));
	z-index: 5;
	display: flex;
	gap: 4px;
	height: 3px;
	pointer-events: none;
}

.home-ogretmen-story-main__progress-seg {
	flex: 1;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.28);
	overflow: hidden;
}

.home-ogretmen-story-main__progress-seg span {
	display: block;
	height: 100%;
	width: 0;
	background: #fff;
	border-radius: 2px;
	transition: width 0.2s ease;
}

.home-ogretmen-story-main__progress-seg.is-active span {
	width: 100%;
}

.home-ogretmen-story-main__header {
	position: absolute;
	top: calc(max(0.5rem, env(safe-area-inset-top)) + 12px);
	left: 0;
	right: 0;
	z-index: 6;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.35rem max(0.75rem, env(safe-area-inset-left)) 0 max(0.5rem, env(safe-area-inset-left));
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
	pointer-events: auto;
}

.home-ogretmen-story-main__back {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	cursor: pointer;
}

.home-ogretmen-story-main__back:hover {
	background: rgba(255, 255, 255, 0.18);
}

.home-ogretmen-story-main__header-avatar {
	flex: 0 0 auto;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.35);
}

.home-ogretmen-story-main__header-text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.home-ogretmen-story-main__name {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.01em;
}

.home-ogretmen-story-main__branch {
	font-size: 0.78rem;
	opacity: 0.88;
	line-height: 1.25;
}

.home-ogretmen-story-main__menu {
	flex: 0 0 auto;
	width: 2.25rem;
	height: 2.25rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 1.1rem;
	line-height: 1;
	cursor: default;
}

.home-ogretmen-story-main__media {
	position: relative;
	flex: 1;
	min-height: 0;
	background: #050505;
}

.home-ogretmen-story-main__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.home-ogretmen-story-main__no-video {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1.25rem;
	text-align: center;
	background: linear-gradient(160deg, #1e1b4b, #0f172a);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	line-height: 1.5;
}

.home-ogretmen-story-main__no-video p {
	margin: 0;
}

.home-ogretmen-story-main__footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: max(0.85rem, env(safe-area-inset-bottom)) max(0.85rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(0.85rem, env(safe-area-inset-left));
	background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
	pointer-events: none;
}

.home-ogretmen-story-main__reply-pill {
	flex: 1;
	max-width: calc(100% - 4.5rem);
	padding: 0.55rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.75);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home-ogretmen-story-main__footer-icons {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	color: #fff;
}

.home-ogretmen-story-main__icon {
	display: block;
	opacity: 0.95;
}

/* Masaüstü: yan önizlemeler + oklar + ortada dikey kart */
@media (min-width: 900px) {
	.home-ogretmen-story-dialog__close-x {
		display: flex;
	}

	.home-ogretmen-story-main__back {
		display: none;
	}

	.home-ogretmen-story-carousel {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 0.35rem;
		padding: 1.5rem 1rem 2rem;
		box-sizing: border-box;
	}

	.home-ogretmen-story-carousel__side {
		display: flex;
		align-items: center;
		justify-content: center;
		width: min(11rem, 18vw);
		flex: 0 0 auto;
		opacity: 0.42;
		filter: brightness(0.72);
		transform: scale(0.88);
		transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
	}

	.home-ogretmen-story-carousel__side-card {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.5rem;
		text-align: center;
	}

	.home-ogretmen-story-carousel__side-ring {
		display: block;
		padding: 3px;
		border-radius: 50%;
		background: linear-gradient(135deg, #f97316, #ec4899, #a855f7);
	}

	.home-ogretmen-story-carousel__side-avatar {
		display: block;
		width: 4.25rem;
		height: 4.25rem;
		border-radius: 50%;
		object-fit: cover;
		border: 3px solid #1a1a1a;
	}

	.home-ogretmen-story-carousel__side-name {
		font-size: 0.72rem;
		font-weight: 600;
		color: rgba(255, 255, 255, 0.85);
		max-width: 9rem;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.home-ogretmen-story-carousel__chev {
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 auto;
		width: 2.75rem;
		height: 2.75rem;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.1);
		color: #fff;
		cursor: pointer;
		z-index: 8;
	}

	.home-ogretmen-story-carousel__chev:hover {
		background: rgba(255, 255, 255, 0.2);
	}

	.home-ogretmen-story-carousel__chev:focus-visible {
		outline: 2px solid #fff;
		outline-offset: 2px;
	}

	.home-ogretmen-story-carousel__main {
		flex: 0 1 auto;
		width: min(380px, 28vw);
		max-width: 100%;
		min-height: min(88vh, 820px);
		max-height: 88vh;
		border-radius: 1rem;
		overflow: hidden;
		box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
	}

	.home-ogretmen-story-main {
		min-height: 100%;
		border-radius: 1rem;
		overflow: hidden;
	}

	.home-ogretmen-story-main__progress {
		top: 0.65rem;
		left: 0.65rem;
		right: 0.65rem;
	}

	.home-ogretmen-story-main__header {
		top: calc(0.65rem + 12px);
		padding-left: 0.65rem;
		padding-right: 0.65rem;
	}

	.home-ogretmen-story-main__footer {
		padding-bottom: 1rem;
	}
}

.home-ogretmen-story-dialog.is-single .home-ogretmen-story-carousel__side,
.home-ogretmen-story-dialog.is-single .home-ogretmen-story-carousel__chev {
	display: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.home-ogretmen-story-dialog__viewport {
		animation: none;
	}

	.home-ogretmen-story-main__progress-seg span {
		transition: none;
	}
}

 .home-books-section--cozumlu-testler {
	margin-bottom: 2rem;
}

.home-books-section--cozumlu-testler .home-books-section__surface {
	padding: clamp(1.75rem, 4vw, 3rem);
}

.home-cozumlu-testler__intro-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin-bottom: 1rem;
}

.home-cozumlu-testler__kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--primary, #2563eb);
}

.home-cozumlu-testler__kicker-icon {
	display: flex;
	color: var(--primary, #2563eb);
}

.home-cozumlu-testler__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: flex-end;
}

.home-cozumlu-testler__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.65rem 1.15rem;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	border-radius: 10px;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.home-cozumlu-testler__btn--wa {
	color: #0f172a;
	background: #fff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.home-cozumlu-testler__btn--wa:hover {
	border-color: #cbd5e1;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.home-cozumlu-testler__wa-icon {
	color: #25d366;
	flex-shrink: 0;
}

.home-cozumlu-testler__btn--primary {
	color: #fff;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	border: 1px solid transparent;
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.home-cozumlu-testler__btn--primary:hover {
	filter: brightness(1.05);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.home-cozumlu-testler__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.65rem, 4vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: #0f172a;
}

.home-cozumlu-testler__lead {
	margin: 0 0 2rem;
	font-size: 20px;
	line-height: 1.65;
	color: #64748b;
	letter-spacing: -0.5px;
}

/* Flex: ≥900px solda görsel, sağda metin (DOM: önce metin, sonra görsel → row-reverse). Mobilde sütun, önce metin. */
.home-cozumlu-testler__grid {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 2rem;
	align-items: stretch;
}

.home-cozumlu-testler__copy {
	min-width: 0;
	flex: 1 1 auto;
}

@media (min-width: 900px) {
	.home-cozumlu-testler__grid {
		flex-direction: row-reverse;
		align-items: center;
		gap: 3rem;
	}

	.home-cozumlu-testler__visual {
		flex: 0 1 46%;
		min-width: 0;
		max-width: 46%;
		align-self: flex-start;
	}

	.home-cozumlu-testler__copy {
		flex: 1 1 0;
		min-width: 0;
	}

	.home-cozumlu-testler__visual-frame {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		box-sizing: border-box;
	}

	.home-cozumlu-testler__visual-img {
		width: 100%;
		max-width: 100%;
		max-height: 280px;
		height: auto;
		object-fit: contain;
		object-position: center;
	}
}

.home-cozumlu-testler__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.home-cozumlu-testler__feature {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.home-cozumlu-testler__feature-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--primary, #2563eb);
}

.home-cozumlu-testler__feature-icon--play svg {
	margin-left: 2px;
}

.home-cozumlu-testler__feature-title {
	margin: 0 0 0.35rem;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	color: #0f172a;
}

.home-cozumlu-testler__feature-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #64748b;
}

.home-cozumlu-testler__visual {
	position: relative;
	margin: 0;
	width: 100%;
	max-width: min(520px, 100%);
	min-width: 0;
	perspective: 1200px;
	align-self: center;
}

.home-cozumlu-testler__visual-frame {
	position: relative;
	z-index: 1;
	overflow: hidden;
	/* Gradient “çerçeve” + organik köşeler */
	padding: 0.4rem;

	transform-origin: 40% 50%;
	transition:
		transform 0.5s cubic-bezier(0.34, 1.35, 0.64, 1),
		box-shadow 0.4s ease;
	will-change: transform;
}


@media (prefers-reduced-motion: reduce) {
	.home-cozumlu-testler__visual-frame,
	.home-cozumlu-testler__visual:hover .home-cozumlu-testler__visual-frame {
		transition: none;
	}

	.home-cozumlu-testler__visual:hover .home-cozumlu-testler__visual-frame {
		transform: rotate(-2.75deg) translateZ(0);
	}
}

@media (prefers-reduced-motion: reduce) and (max-width: 899px) {
	.home-cozumlu-testler__visual:hover .home-cozumlu-testler__visual-frame {
		transform: rotate(-1.25deg) translateZ(0);
	}
}

.home-cozumlu-testler__visual-img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 1.25rem 1.75rem 1.1rem 1.65rem;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

@media (max-width: 899px) {
	.home-cozumlu-testler__visual-frame {
		height: min(52vw, 248px);
		transform: rotate(-1.25deg) translateZ(0);
		border-radius: 1.35rem 1.75rem 1.2rem 1.65rem;
	}

	.home-cozumlu-testler__visual:hover .home-cozumlu-testler__visual-frame {
		transform: rotate(-0.5deg) translateY(-4px) translateZ(0);
	}

	.home-cozumlu-testler__visual-img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 1rem 1.45rem 0.95rem 1.35rem;
	}
}

@media (max-width: 899px) {
	.home-cozumlu-testler__intro-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.home-cozumlu-testler__actions {
		width: 100%;
		justify-content: flex-start;
	}

	.home-cozumlu-testler__btn {
		flex: 1 1 auto;
		min-width: 0;
		justify-content: center;
	}
}

/* ========== Ders kitabı çözümleri (ikinci promo; metin sol, görsel sağ) ========== */

/* Tam satır genişliğinde arka plan (.container padding’inin dışına taşar) */
.home-books-section--ders-kitabi-cevap {
	position: relative;
	margin-top: 1.25rem;
	isolation: isolate;
}

.home-books-section--ders-kitabi-cevap::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	transform: translateX(-50%);
	background-color: #ecf4f1;
	background-image: linear-gradient(165deg, #e8f5f0 0%, #eef6f3 45%, #e9f0ec 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
	pointer-events: none;
}

.home-books-section--ders-kitabi-cevap .home-books-section__surface {
	position: relative;
	z-index: 1;
	padding: clamp(1.75rem, 4vw, 3rem);
}

.home-kitap-cevap__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.65rem, 4vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: #0f172a;
}

.home-kitap-cevap__lead {
	margin: 0 0 2rem;
	font-size: 20px;
	line-height: 1.65;
	color: #64748b;
	letter-spacing: -0.5px;
}

.home-kitap-cevap__grid {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 2rem;
	align-items: stretch;
}

.home-kitap-cevap__copy {
	min-width: 0;
	flex: 1 1 auto;
}

@media (min-width: 900px) {
	.home-kitap-cevap__grid {
		flex-direction: row;
		align-items: center;
		gap: 3rem;
	}

	.home-kitap-cevap__copy {
		flex: 1 1 0;
		min-width: 0;
	}

	.home-kitap-cevap__visual {
		flex: 0 1 42%;
		min-width: 0;
		max-width: 42%;
		align-self: flex-start;
	}
}

.home-kitap-cevap__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.home-kitap-cevap__feature {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.home-kitap-cevap__feature-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--primary, #2563eb);
}

.home-kitap-cevap__feature-icon--play svg {
	margin-left: 2px;
}

.home-kitap-cevap__feature-title {
	margin: 0 0 0.35rem;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	color: #0f172a;
}

.home-kitap-cevap__feature-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #64748b;
}

.home-kitap-cevap__visual {
	position: relative;
	margin: 0;
	width: 100%;
	max-width: min(440px, 100%);
	min-width: 0;
	perspective: 1200px;
	align-self: center;
}

.home-kitap-cevap__visual-frame {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 0.4rem;
	border-radius: 1.65rem 2.15rem 1.45rem 2.05rem;
	transform: rotate(2.25deg) translateZ(0);
	transform-origin: 45% 50%;
	transition:
		transform 0.5s cubic-bezier(0.34, 1.35, 0.64, 1),
		box-shadow 0.4s ease;
	will-change: transform;
}



@media (prefers-reduced-motion: reduce) {
	.home-kitap-cevap__visual-frame,
	.home-kitap-cevap__visual:hover .home-kitap-cevap__visual-frame {
		transition: none;
	}

	.home-kitap-cevap__visual:hover .home-kitap-cevap__visual-frame {
		transform: rotate(2.25deg) translateZ(0);
	}
}

.home-kitap-cevap__visual-img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 899px) {

	.home-books-section--ders-kitabi-cevap .home-books-section__surface {
		padding: 40px 0;
	}
	.home-books-section--cozumlu-testler .home-books-section__surface {
		padding: 40px 0;
	}

	.home-kitap-cevap__visual-frame {
		max-height: min(58vw, 280px);
		transform: rotate(1deg) translateZ(0);
	}

	.home-kitap-cevap__visual:hover .home-kitap-cevap__visual-frame {
		transform: rotate(0.5deg) translateY(-3px) translateZ(0);
	}

	.home-kitap-cevap__visual-img {
		width: 100%;
		max-height: 220px;
		object-fit: cover;
		object-position: center bottom;
	}
}

@media (prefers-reduced-motion: reduce) and (max-width: 899px) {
	.home-kitap-cevap__visual:hover .home-kitap-cevap__visual-frame {
		transform: rotate(1deg) translateZ(0);
	}
}

/**
 * Masaüstü: İnteraktif testler, ders kitabı çözümleri, son eklenenler — aynı iç dikey/yatay padding ve aralık.
 * (Bu dosya yalnızca ön sayfada yüklenir; .home-books-section--recent ile birlikte eşitlenir.)
 */
@media (min-width: 900px) {
	.home-books-section--cozumlu-testler {
		margin-top: 0;
		margin-bottom: clamp(2rem, 4vw, 3rem);
	}

	.home-books-section--ders-kitabi-cevap {
		margin-top: 0;
		margin-bottom: clamp(2rem, 4vw, 3rem);
	}

	.home-books-section--recent {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
	}

	.home-books-section--ogretmenler .home-books-section__surface,
	.home-books-section--cozumlu-testler .home-books-section__surface,
	.home-books-section--ders-kitabi-cevap .home-books-section__surface,
	.home-books-section--recent .home-books-section__surface {
		padding: clamp(2rem, 4.5vw, 3.25rem) 0;
	}
}
