:root {
	--mhf-color-primary: #1b4f72;
	--mhf-color-primary-hover: #154360;
	--mhf-color-secondary: #2e86c1;
	--mhf-color-secondary-hover: #2471a3;
	--mhf-color-text: #2c3e50;
	--mhf-color-text-soft: #5d6d7e;
	--mhf-color-surface: #f0f4f8;
	--mhf-color-dark: #1a1a2e;
	--mhf-color-white: #ffffff;
	--mhf-radius-lg: 24px;
	--mhf-radius-md: 18px;
	--mhf-shadow-soft: 0 20px 60px rgba(27, 79, 114, 0.10);
}

.mhf-section-shell {
	width: min(calc(100% - 24px), 1280px);
	margin-inline: auto;
	box-sizing: border-box;
	padding: clamp(72px, 8vw, 112px) clamp(18px, 3.5vw, 42px);
}

.mhf-section-shell.is-soft {
	background: linear-gradient(180deg, #eaf3fb 0%, #ddeaf6 100%);
	border-top:    1px solid rgba(27, 79, 114, 0.12);
	border-bottom: 1px solid rgba(27, 79, 114, 0.12);
}

.mhf-hero-surface {
	border-radius: 32px;
	padding: clamp(32px, 5vw, 56px);
	background:
		radial-gradient(circle at top right, rgba(46, 134, 193, 0.18), transparent 30%),
		linear-gradient(135deg, #ffffff 0%, #eef4f8 100%);
	box-shadow: var(--mhf-shadow-soft);
	overflow: hidden;
}

.mhf-mini-hero-shell {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	padding: clamp(56px, 8vw, 88px) clamp(24px, 5vw, 48px);
	text-align: center;
	background:
		radial-gradient(circle at 18% 24%, rgba(116, 183, 255, 0.28), transparent 24%),
		radial-gradient(circle at 82% 22%, rgba(255, 176, 220, 0.26), transparent 26%),
		radial-gradient(circle at 48% 82%, rgba(171, 211, 255, 0.26), transparent 30%),
		linear-gradient(180deg, #fcfdff 0%, #f4f8fd 100%);
	box-shadow: var(--mhf-shadow-soft);
}

.mhf-mini-hero-shell::before,
.mhf-mini-hero-shell::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(12px);
	opacity: 0.85;
	pointer-events: none;
}

.mhf-mini-hero-shell::before {
	top: -54px;
	left: 10%;
	width: 240px;
	height: 240px;
	background: rgba(138, 201, 255, 0.24);
}

.mhf-mini-hero-shell::after {
	right: 8%;
	bottom: -72px;
	width: 280px;
	height: 280px;
	background: rgba(255, 190, 224, 0.22);
}

.mhf-mini-hero-shell > * {
	position: relative;
	z-index: 1;
}

.mhf-mini-hero-shell .mhf-kicker {
	margin-bottom: 10px;
}

.mhf-mini-hero-shell h1 {
	margin: 0;
	font-size: clamp(34px, 5vw, 54px);
	line-height: 1.12;
}

.mhf-service-card,
.mhf-education-card,
.mhf-proof-card {
	height: 100%;
	border-radius: var(--mhf-radius-lg);
	background: var(--mhf-color-white);
	box-shadow: var(--mhf-shadow-soft);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.mhf-service-card:hover,
.mhf-education-card:hover,
.mhf-proof-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 72px rgba(27, 79, 114, 0.14);
}

.mhf-cta-shell {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	padding: clamp(28px, 5vw, 48px);
	background: linear-gradient(135deg, #1b4f72 0%, #2e86c1 100%);
	color: #ffffff;
}

.mhf-cta-shell :is(h2, h3, p, li) {
	color: inherit;
}

.mhf-cta-shell::before,
.mhf-cta-shell::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.mhf-cta-shell::before {
	top: -80px;
	right: -60px;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.07);
}

.mhf-cta-shell::after {
	bottom: -90px;
	left: 8%;
	width: 340px;
	height: 340px;
	background: rgba(255, 255, 255, 0.04);
}

.mhf-cta-shell > * {
	position: relative;
	z-index: 1;
}

.mhf-kicker {
	display: flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	margin-bottom: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mhf-color-secondary);
}

.mhf-kicker::before {
	content: '';
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.mhf-section-shell h2 {
	font-size: clamp(27px, 3.4vw, 44px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.13;
}

.mhf-lead {
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.7;
	color: var(--mhf-color-text-soft);
}

.mhf-image-frame img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 28px;
	box-shadow: 0 30px 80px rgba(27, 79, 114, 0.16);
}

.mhf-card-stack {
	display: grid;
	gap: 18px;
	align-content: start;
}

.mhf-logo-lockup img {
	max-width: 220px;
	height: auto;
}

.mhf-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.mhf-stat-chip {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border: 1px solid rgba(46, 134, 193, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	color: var(--mhf-color-text);
	font-size: 14px;
	font-weight: 600;
}

.mhf-testimonial-marquee {
	position: relative;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.mhf-testimonial-marquee::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.mhf-testimonial-marquee__track {
	display: flex;
	gap: 24px;
	width: max-content;
}

.mhf-testimonial-marquee.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.mhf-testimonial-marquee.is-dragging .mhf-testimonial-card {
	pointer-events: none;
	user-select: none;
}

.mhf-testimonial-card {
	width: min(360px, 82vw);
	padding: 24px;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: var(--mhf-shadow-soft);
}

.mhf-service-card,
.mhf-education-card,
.mhf-proof-card,
.mhf-process-card,
.mhf-faq-card {
	padding: clamp(22px, 3vw, 30px);
}

.mhf-service-card h3,
.mhf-education-card h3,
.mhf-proof-card h3,
.mhf-process-card h3,
.mhf-faq-card h3 {
	margin-top: 0;
	margin-bottom: 12px;
}

.mhf-card-media img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 18px;
	border-radius: 22px;
}

.mhf-card-link {
	margin-top: 18px;
	font-weight: 700;
}

.mhf-card-link a {
	color: var(--mhf-color-primary);
	text-decoration: none;
}

.mhf-card-link a:hover {
	color: var(--mhf-color-secondary);
}

.mhf-testimonial-meta {
	margin-top: 16px;
	font-size: 14px;
	color: var(--mhf-color-text-soft);
}

.mhf-check-list {
	margin: 18px 0 0;
	padding-left: 18px;
}

.mhf-check-list li {
	margin-bottom: 10px;
	color: var(--mhf-color-text);
}

.mhf-proof-grid {
	margin-top: 26px;
	align-items: stretch;
}

.mhf-proof-grid > .wp-block-column {
	display: flex;
}

.blog .entry-hero.post-archive-hero-section .entry-hero-container-inner {
	position: relative;
	overflow: hidden;
	background: var(--global-palette8, #f7f7f7);
}

.blog .entry-hero.post-archive-hero-section .hero-section-overlay {
	opacity: 0.70;
	background-image: url('/wp-content/uploads/2021/04/bg-0.png');
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.blog .entry-hero.post-archive-hero-section .hero-container.site-container {
	max-width: 600px;
	margin-inline: auto;
	padding-top: 52px;
	padding-right: 0;
	padding-bottom: 36px;
	padding-left: 0;
}

.blog .entry-hero.post-archive-hero-section .entry-header {
	text-align: center;
}

@media all and (max-width: 1024px), only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (hover: none) {
	.blog .entry-hero.post-archive-hero-section .hero-section-overlay {
		background-attachment: scroll;
	}
}

@media all and (max-width: 1024px) {
	.blog .entry-hero.post-archive-hero-section .hero-container.site-container {
		padding-top: 46px;
		padding-right: 0;
		padding-bottom: 34px;
		padding-left: 0;
	}
}

@media all and (max-width: 767px) {
	.blog .entry-hero.post-archive-hero-section .hero-container.site-container {
		padding-top: 36px;
		padding-right: 20px;
		padding-bottom: 28px;
		padding-left: 20px;
	}
}

.mhf-footer-shell {
	margin-top: 64px;
	padding: 56px 0 24px;
	background:
		radial-gradient(circle at 12% 20%, rgba(116, 183, 255, 0.14), transparent 24%),
		radial-gradient(circle at 88% 18%, rgba(255, 176, 220, 0.12), transparent 22%),
		linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
	border-top: 1px solid rgba(27, 79, 114, 0.08);
}

.mhf-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: start;
}

.mhf-footer-brand .custom-logo-link,
.mhf-footer-wordmark {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.mhf-footer-brand .custom-logo {
	max-width: 180px;
	height: auto;
}

.mhf-footer-description {
	max-width: 420px;
	margin: 18px 0 0;
	color: var(--mhf-color-text-soft);
}

.mhf-footer-column h3 {
	margin: 0 0 14px;
	font-size: 17px;
}

.mhf-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.mhf-footer-links a {
	color: var(--mhf-color-text);
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.mhf-footer-links a:hover {
	color: var(--mhf-color-primary);
	transform: translateX(2px);
}

.mhf-footer-bottom {
	margin-top: 36px;
	padding-top: 20px;
	border-top: 1px solid rgba(27, 79, 114, 0.08);
}

.mhf-footer-bottom p {
	margin: 0;
	color: var(--mhf-color-text-soft);
	font-size: 15px;
}

@media all and (max-width: 1024px) {
	.mhf-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media all and (max-width: 767px) {
	.mhf-footer-shell {
		padding: 44px 0 22px;
	}

	.mhf-footer-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
	}
}

.mhf-proof-grid .mhf-proof-card {
	width: 100%;
	padding: 24px;
}

.mhf-social-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.mhf-social-row .wp-block-button__link {
	border-radius: 999px;
}

.mhf-latest-posts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 36px 0 0;
	padding: 0;
	list-style: none;
}

.mhf-latest-posts li {
	padding: 22px;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: var(--mhf-shadow-soft);
}

.mhf-latest-posts .wp-block-latest-posts__featured-image {
	margin-bottom: 16px;
}

.mhf-latest-posts .wp-block-latest-posts__featured-image img {
	display: block;
	width: 100%;
	border-radius: 20px;
}

.mhf-latest-posts__post-title {
	display: block;
	margin-bottom: 10px;
	color: var(--mhf-color-dark);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
}

.mhf-latest-posts .wp-block-latest-posts__post-excerpt {
	color: var(--mhf-color-text-soft);
	line-height: 1.7;
}

.mhf-reference-form-wrap {
	display: grid;
	gap: 16px;
}

.mhf-reference-success {
	padding: 14px 16px;
	border-radius: 14px;
	background: rgba(46, 134, 193, 0.12);
	color: var(--mhf-color-text);
}

.mhf-reference-form {
	display: grid;
	gap: 18px;
}

.mhf-reference-form input,
.mhf-reference-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #d8e2ea;
	border-radius: 14px;
}

.mhf-reference-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border: 0;
	border-radius: 999px;
	background: var(--mhf-color-primary);
	color: #fff;
	cursor: pointer;
}

.mhf-reference-form button:hover {
	background: var(--mhf-color-primary-hover);
}

.mhf-floating-wa {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 20px;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 16px 36px rgba(37, 211, 102, 0.42);
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.mhf-floating-wa:hover,
.mhf-floating-wa:focus-visible {
	background: #1ebe5d;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 20px 44px rgba(37, 211, 102, 0.5);
	outline: none;
}

.mhf-floating-wa__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* On phones, collapse to a compact circular icon so it never covers
   hero CTAs or other on-screen controls. */
@media (max-width: 767px) {
	.mhf-floating-wa {
		gap: 0;
		width: 56px;
		height: 56px;
		padding: 0;
		justify-content: center;
		right: 16px;
		bottom: max(16px, env(safe-area-inset-bottom, 16px));
	}

	.mhf-floating-wa__label {
		display: none;
	}
}


/* ==========================================================================
   Lesson Archive (Öğretici İçerikler)
   ========================================================================== */

.mhf-lesson-archive {
	display: grid;
	gap: clamp(28px, 4vw, 44px);
}

/* Archive toolbar (filter combobox + search + sort) ------------------------ */

.mhf-archive-toolbar {
	position: relative;
	z-index: 50;
	display: grid;
	grid-template-columns: minmax(220px, 1.2fr) minmax(240px, 1.6fr) minmax(180px, 1fr);
	gap: 16px;
	padding: 16px;
	border-radius: var(--mhf-radius-lg, 18px);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--mhf-shadow-soft);
	backdrop-filter: saturate(140%) blur(8px);
	border: 1px solid rgba(46, 134, 193, 0.14);
}

.mhf-archive-toolbar__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.mhf-archive-toolbar__label {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(27, 79, 114, 0.7);
	padding-left: 4px;
}

/* Combobox ----------------------------------------------------------------- */

.mhf-combobox {
	position: relative;
	width: 100%;
}

.mhf-combobox__toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(46, 134, 193, 0.22);
	border-radius: 12px;
	background: #fff;
	color: var(--mhf-color-text);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	text-align: left;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.mhf-combobox__toggle:hover {
	border-color: rgba(27, 79, 114, 0.42);
}

.mhf-combobox__toggle:focus-visible,
.mhf-combobox[data-open="true"] .mhf-combobox__toggle {
	outline: none;
	border-color: var(--mhf-color-secondary, #2e86c1);
	box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.18);
}

.mhf-combobox__toggle--lg {
	padding: 18px 22px;
	font-size: 16px;
	border-radius: 14px;
}

.mhf-combobox__icon {
	display: inline-flex;
	color: var(--mhf-color-primary, #1b4f72);
	flex-shrink: 0;
}

.mhf-combobox__value {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--mhf-color-dark);
}

.mhf-combobox__value--placeholder {
	color: rgba(27, 79, 114, 0.55);
	font-weight: 500;
}

.mhf-combobox__caret {
	display: inline-flex;
	color: rgba(27, 79, 114, 0.6);
	flex-shrink: 0;
	transition: transform 200ms ease;
}

.mhf-combobox[data-open="true"] .mhf-combobox__caret {
	transform: rotate(180deg);
}

.mhf-combobox__panel {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	max-height: 360px;
	background: #fff;
	border: 1px solid rgba(46, 134, 193, 0.18);
	border-radius: 14px;
	box-shadow: 0 24px 60px rgba(15, 35, 60, 0.18);
	overflow: hidden;
	animation: mhfComboboxIn 160ms ease;
}

@keyframes mhfComboboxIn {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}

.mhf-combobox__search {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-bottom: 1px solid rgba(46, 134, 193, 0.12);
	color: rgba(27, 79, 114, 0.6);
	flex-shrink: 0;
}

.mhf-combobox__search .mhf-combobox__search-input,
input[type="search"].mhf-combobox__search-input {
	box-sizing: border-box;
	flex: 1;
	height: auto;
	min-height: 0;
	margin: 0;
	border: none !important;
	outline: none;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 14.5px;
	line-height: 1.4;
	color: var(--mhf-color-text);
	padding: 4px 0 !important;
}

.mhf-combobox__search-input::placeholder {
	color: rgba(27, 79, 114, 0.45);
}

.mhf-combobox__list {
	list-style: none;
	margin: 0;
	padding: 6px;
	overflow-y: auto;
	flex: 1;
	scrollbar-width: thin;
}

.mhf-combobox__list::-webkit-scrollbar {
	width: 8px;
}
.mhf-combobox__list::-webkit-scrollbar-thumb {
	background: rgba(27, 79, 114, 0.2);
	border-radius: 4px;
}

.mhf-combobox__option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 14.5px;
	color: var(--mhf-color-text);
	transition: background 140ms ease, color 140ms ease;
}

.mhf-combobox__option:hover,
.mhf-combobox__option.is-active {
	background: rgba(46, 134, 193, 0.10);
	color: var(--mhf-color-primary, #1b4f72);
}

.mhf-combobox__option.is-selected {
	background: linear-gradient(135deg, rgba(27, 79, 114, 0.08), rgba(46, 134, 193, 0.12));
	color: var(--mhf-color-primary, #1b4f72);
	font-weight: 700;
}

.mhf-combobox__option.is-hidden {
	display: none;
}

.mhf-combobox__option-label {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mhf-combobox__check {
	display: inline-flex;
	color: var(--mhf-color-primary);
	opacity: 0;
	transition: opacity 140ms ease;
	flex-shrink: 0;
}

.mhf-combobox__option.is-selected .mhf-combobox__check {
	opacity: 1;
}

.mhf-combobox__arrow {
	color: rgba(27, 79, 114, 0.5);
	font-size: 16px;
	transition: transform 200ms ease, color 200ms ease;
	flex-shrink: 0;
}

.mhf-combobox__option:hover .mhf-combobox__arrow,
.mhf-combobox__option.is-active .mhf-combobox__arrow {
	color: var(--mhf-color-primary);
	transform: translateX(3px);
}

.mhf-combobox__no-match {
	margin: 0;
	padding: 18px 14px;
	text-align: center;
	color: rgba(27, 79, 114, 0.6);
	font-size: 14px;
}

/* Search input ------------------------------------------------------------- */

.mhf-archive-search {
	position: relative;
	display: flex;
	align-items: center;
}

.mhf-archive-search__icon {
	position: absolute;
	left: 14px;
	color: rgba(27, 79, 114, 0.55);
	pointer-events: none;
}

.mhf-archive-search .mhf-archive-search__input,
input[type="search"].mhf-archive-search__input {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	min-height: 0;
	margin: 0;
	padding: 12px 40px 12px 44px !important;
	border: 1px solid rgba(46, 134, 193, 0.22);
	border-radius: 12px;
	background: #fff;
	font-size: 14.5px;
	line-height: 1.4;
	color: var(--mhf-color-text);
	outline: none;
	box-shadow: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mhf-archive-search__input::placeholder {
	color: rgba(27, 79, 114, 0.45);
}

.mhf-archive-search__input:focus {
	border-color: var(--mhf-color-secondary, #2e86c1);
	box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.18);
}

.mhf-archive-search__clear {
	position: absolute;
	right: 10px;
	width: 26px;
	height: 26px;
	border: none;
	border-radius: 50%;
	background: rgba(27, 79, 114, 0.08);
	color: rgba(27, 79, 114, 0.7);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 140ms ease, color 140ms ease;
}

.mhf-archive-search__clear:hover {
	background: rgba(27, 79, 114, 0.18);
	color: var(--mhf-color-primary);
}

/* Sort select -------------------------------------------------------------- */

.mhf-archive-sort {
	position: relative;
	display: flex;
	align-items: center;
}

.mhf-archive-sort__icon {
	position: absolute;
	left: 14px;
	color: rgba(27, 79, 114, 0.6);
	pointer-events: none;
}

.mhf-archive-sort .mhf-archive-sort__select,
select.mhf-archive-sort__select {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	min-height: 0;
	margin: 0;
	padding: 12px 36px 12px 40px !important;
	border: 1px solid rgba(46, 134, 193, 0.22);
	border-radius: 12px;
	background: #fff
		url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b4f72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E")
		no-repeat right 12px center / 14px 14px;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--mhf-color-text);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.mhf-archive-sort__select:focus,
.mhf-archive-sort__select:hover {
	border-color: var(--mhf-color-secondary, #2e86c1);
	box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.18);
}

/* Topic finder (combobox above topic cards) -------------------------------- */

.mhf-topic-finder {
	position: relative;
	z-index: 50;
	margin: 0 auto clamp(28px, 4vw, 44px);
	max-width: 720px;
}

.mhf-combobox--finder {
	position: relative;
	box-shadow: 0 18px 50px rgba(27, 79, 114, 0.10);
	border-radius: 16px;
}

.mhf-combobox--finder .mhf-combobox__panel {
	max-height: 420px;
}

.mhf-lesson-grid {
	display: grid;
	gap: clamp(20px, 2.8vw, 28px);
	grid-template-columns: repeat(var(--mhf-lesson-cols, 3), minmax(0, 1fr));
}

.mhf-lesson-grid[data-columns="1"] { --mhf-lesson-cols: 1; }
.mhf-lesson-grid[data-columns="2"] { --mhf-lesson-cols: 2; }
.mhf-lesson-grid[data-columns="3"] { --mhf-lesson-cols: 3; }
.mhf-lesson-grid[data-columns="4"] { --mhf-lesson-cols: 4; }

.mhf-lesson-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border-radius: var(--mhf-radius-lg);
	background: var(--mhf-color-white);
	box-shadow: var(--mhf-shadow-soft);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.mhf-lesson-card.is-hidden {
	display: none !important;
}

.mhf-lesson-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 72px rgba(27, 79, 114, 0.16);
}

.mhf-lesson-card__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, #eef4f8 0%, #dbe8f2 100%);
	color: rgba(27, 79, 114, 0.55);
}

.mhf-lesson-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 500ms ease;
}

.mhf-lesson-card:hover .mhf-lesson-card__media img {
	transform: scale(1.04);
}

.mhf-lesson-card__media-placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
}

.mhf-lesson-card__media-placeholder svg {
	width: 46%;
	max-width: 120px;
	height: auto;
}

.mhf-lesson-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: clamp(20px, 2.6vw, 26px);
	flex: 1;
}

.mhf-lesson-card__badge {
	align-self: flex-start;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(46, 134, 193, 0.12);
	color: var(--mhf-color-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.mhf-lesson-card__title {
	margin: 0;
	font-size: clamp(19px, 1.6vw, 22px);
	line-height: 1.35;
	color: var(--mhf-color-dark);
}

.mhf-lesson-card__title a {
	color: inherit;
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0 2px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: background-size 260ms ease, color 180ms ease;
}

.mhf-lesson-card__title a:hover {
	color: var(--mhf-color-primary);
	background-size: 100% 2px;
}

.mhf-lesson-card__excerpt {
	margin: 0;
	color: var(--mhf-color-text-soft);
	font-size: 15.5px;
	line-height: 1.65;
}

.mhf-lesson-card__link {
	margin: 4px 0 0;
	font-weight: 700;
}

.mhf-lesson-card__link a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--mhf-color-primary);
	text-decoration: none;
	transition: gap 220ms ease, color 180ms ease;
}

.mhf-lesson-card__link a:hover {
	color: var(--mhf-color-secondary);
	gap: 12px;
}

.mhf-lesson-empty {
	padding: clamp(24px, 3vw, 32px);
	border-radius: var(--mhf-radius-md);
	background: rgba(255, 255, 255, 0.7);
	text-align: center;
	box-shadow: var(--mhf-shadow-soft);
}

.mhf-lesson-empty p {
	margin: 0;
}

/* ==========================================================================
   Topics grid (Öğretici İçerikler landing)
   ========================================================================== */

.mhf-topics-grid {
	display: grid;
	gap: clamp(20px, 2.8vw, 28px);
	grid-template-columns: repeat(var(--mhf-topic-cols, 3), minmax(0, 1fr));
}

.mhf-topics-grid[data-columns="1"] { --mhf-topic-cols: 1; }
.mhf-topics-grid[data-columns="2"] { --mhf-topic-cols: 2; }
.mhf-topics-grid[data-columns="3"] { --mhf-topic-cols: 3; }
.mhf-topics-grid[data-columns="4"] { --mhf-topic-cols: 4; }

.mhf-topic-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: clamp(24px, 3vw, 32px);
	border-radius: var(--mhf-radius-lg);
	background:
		radial-gradient(circle at 14% 8%, rgba(116, 183, 255, 0.18), transparent 46%),
		linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
	box-shadow: var(--mhf-shadow-soft);
	color: var(--mhf-color-text);
	text-decoration: none;
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.mhf-topic-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 72px rgba(27, 79, 114, 0.16);
}

.mhf-topic-card__title {
	margin: 6px 0 2px;
	font-size: clamp(22px, 2vw, 26px);
	color: var(--mhf-color-dark);
	line-height: 1.25;
}

.mhf-topic-card__desc {
	margin: 0;
	color: var(--mhf-color-text-soft);
	font-size: 15.5px;
	line-height: 1.65;
}

.mhf-topic-card__meta {
	margin: 12px 0 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--mhf-color-primary);
	font-weight: 700;
	font-size: 14.5px;
	letter-spacing: 0.02em;
	transition: gap 220ms ease;
}

.mhf-topic-card:hover .mhf-topic-card__meta {
	gap: 12px;
}

/* Responsive ----------------------------------------------------------------- */

@media (max-width: 1024px) {
	.mhf-lesson-grid[data-columns="3"],
	.mhf-lesson-grid[data-columns="4"],
	.mhf-topics-grid[data-columns="3"],
	.mhf-topics-grid[data-columns="4"] {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.mhf-archive-toolbar {
		grid-template-columns: 1fr 1fr;
	}
	.mhf-archive-toolbar__field--search {
		grid-column: 1 / -1;
		order: -1;
	}
}

@media (max-width: 640px) {
	.mhf-lesson-grid,
	.mhf-topics-grid {
		grid-template-columns: 1fr !important;
	}

	.mhf-archive-toolbar {
		grid-template-columns: 1fr;
		padding: 14px;
		gap: 12px;
	}

	.mhf-archive-toolbar__field--search {
		order: 0;
	}

	.mhf-combobox__toggle--lg {
		padding: 14px 16px;
		font-size: 15px;
	}
}

@media (max-width: 767px) {
	.mhf-chip-row,
	.mhf-social-row {
		flex-direction: column;
	}

	.mhf-section-shell {
		padding-right: 16px;
		padding-left: 16px;
	}

	.mhf-testimonial-card {
		width: min(300px, 78vw);
		padding: 20px;
	}

	.mhf-testimonial-marquee__track {
		gap: 18px;
		animation-duration: 28s;
	}

	.mhf-latest-posts {
		grid-template-columns: 1fr;
	}

	/* Eğitim kartları mobilde tekrar dikey */
	.mhf-education-card.wp-block-group {
		padding: 0 !important;
	}

	.mhf-education-card.wp-block-group > .wp-block-group__inner-container {
		display: block;
		padding: clamp(22px, 3vw, 30px) !important;
	}

	.mhf-education-card.wp-block-group > .wp-block-group__inner-container > .mhf-card-media {
		margin-bottom: 18px !important;
	}

	.mhf-education-card.wp-block-group > .wp-block-group__inner-container > .mhf-card-media img {
		height: auto;
		border-radius: 22px;
	}

	.mhf-education-card.wp-block-group > .wp-block-group__inner-container > *:not(.mhf-card-media) {
		padding-inline: 0;
	}
}

/* ----------------------------------------------------------------
   Ders Notları — kart üzeri "PDF" bayrağı
---------------------------------------------------------------- */

.mhf-note-card .mhf-lesson-card__media {
	position: relative;
}

.mhf-note-card__flag {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--mhf-color-primary, #1b4f72);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.6px;
	box-shadow: 0 6px 16px rgba(27, 79, 114, 0.25);
}

.mhf-note-card__media-placeholder {
	background: linear-gradient(135deg, rgba(27, 79, 114, 0.08), rgba(46, 134, 193, 0.18));
}

/* ----------------------------------------------------------------
   Video kartları — lite embed (thumbnail + oynat)
---------------------------------------------------------------- */

.mhf-video-card__player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #0b1b2b;
	border-top-left-radius: var(--mhf-radius-lg, 24px);
	border-top-right-radius: var(--mhf-radius-lg, 24px);
}

.mhf-video-card__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.mhf-video-card__player:hover .mhf-video-card__thumb {
	transform: scale(1.04);
}

.mhf-video-card__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease;
}

.mhf-video-card__play:hover,
.mhf-video-card__play:focus-visible {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
	outline: none;
}

.mhf-video-card__play-icon {
	width: 72px;
	height: auto;
	filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
	transition: transform 0.2s ease;
}

.mhf-video-card__play:hover .mhf-video-card__play-icon,
.mhf-video-card__play:focus-visible .mhf-video-card__play-icon {
	transform: scale(1.08);
}

.mhf-video-card__iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.mhf-video-card__player.is-playing {
	background: #000;
}

.mhf-video-card {
	cursor: default;
}

.mhf-video-card:hover {
	transform: none;
}

/* ----------------------------------------------------------------
   Tekil ders/ders-notu sayfasında "PDF olarak indir" butonu
---------------------------------------------------------------- */

.mhf-pdf-download {
	margin: 40px 0 8px;
}

.mhf-pdf-download__btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 14px 22px;
	border-radius: var(--mhf-radius-lg, 24px);
	background: linear-gradient(135deg, var(--mhf-color-primary, #1b4f72), var(--mhf-color-secondary, #2e86c1));
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	box-shadow: var(--mhf-shadow-soft, 0 18px 40px rgba(27, 79, 114, 0.22));
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mhf-pdf-download__btn:hover,
.mhf-pdf-download__btn:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 24px 48px rgba(27, 79, 114, 0.28);
	color: #fff;
	text-decoration: none;
	outline: none;
}

.mhf-pdf-download__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	flex: 0 0 40px;
}

.mhf-pdf-download__text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.mhf-pdf-download__text strong {
	font-size: 16px;
}

.mhf-pdf-download__text small {
	font-size: 12px;
	opacity: 0.85;
	font-weight: 500;
	letter-spacing: 0.3px;
}

/* ==========================================================================
   Header logo — boyut + mobil çakışma düzeltmesi (Kadence override)
   ========================================================================== */

/* Logo görselindeki beyaz kenar boşlukları kırpıldığı için (oran 1.17:1)
   aynı yükseklikte belirgin biçimde daha büyük görünüyor. Yükseklikler
   header'ın kendi yüksekliğine göre üst sınırda tutuldu. */
.site-branding a.brand img,
.site-branding .custom-logo,
.site-header .site-branding img {
	max-height: 76px !important;
	width: auto !important;
	height: auto;
	max-width: 220px;
	object-fit: contain;
}

/* 1200px altında Kadence hamburger menüye geçiyor; logonun yanında yalnızca
   menü düğmesi kaldığı için bu aralıkta çakışma riski yok. */
@media (max-width: 1199px) {
	.site-branding a.brand img,
	.site-branding .custom-logo,
	.site-header .site-branding img {
		max-height: 64px !important;
		max-width: 180px;
	}
}

@media (max-width: 719px) {
	.site-branding a.brand img,
	.site-branding .custom-logo,
	.site-header .site-branding img {
		max-height: 56px !important;
		max-width: 150px;
	}

	/* Ensure hero/page headers don't ride under the sticky header */
	.entry-hero,
	.page-hero,
	.kadence-page-hero,
	.entry-hero-container-inner {
		padding-top: clamp(16px, 4vw, 28px);
	}
}

/* ==========================================================================
   Testimonial marquee — manual scroll + nav buttons
   ========================================================================== */

.mhf-testimonial-marquee-wrap {
	display: grid;
	gap: 18px;
}

.mhf-testimonial-marquee-row {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
}

.mhf-marquee-nav {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(46, 134, 193, 0.22);
	border-radius: 50%;
	background: #ffffff;
	color: var(--mhf-color-primary);
	cursor: pointer;
	box-shadow: 0 12px 30px rgba(27, 79, 114, 0.14);
	transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
	padding: 0;
	line-height: 0;
	flex-shrink: 0;
}

.mhf-marquee-nav svg {
	display: block;
	pointer-events: none;
}

.mhf-marquee-nav:hover,
.mhf-marquee-nav:focus-visible {
	background: var(--mhf-color-primary);
	color: #fff;
	transform: scale(1.06);
	box-shadow: 0 16px 32px rgba(27, 79, 114, 0.22);
	outline: none;
}

.mhf-marquee-nav[disabled] {
	opacity: 0.35;
	cursor: default;
	transform: none;
}

.mhf-marquee-nav[disabled]:hover {
	background: #ffffff;
	color: var(--mhf-color-primary);
	transform: none;
	box-shadow: 0 12px 30px rgba(27, 79, 114, 0.14);
}

@media (max-width: 540px) {
	.mhf-marquee-nav {
		width: 38px;
		height: 38px;
	}
}

.mhf-testimonial-marquee__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0 4px;
}

.mhf-testimonial-marquee__hint {
	margin: 0;
	color: var(--mhf-color-text-soft);
	font-size: 13.5px;
}

.mhf-testimonial-marquee__all-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid rgba(46, 134, 193, 0.22);
	border-radius: 999px;
	background: #fff;
	color: var(--mhf-color-primary);
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease, gap 180ms ease;
}

.mhf-testimonial-marquee__all-btn:hover {
	background: var(--mhf-color-primary);
	color: #fff;
	gap: 12px;
}

/* Testimonial modal -------------------------------------------------------- */

body.mhf-modal-open {
	overflow: hidden;
}

.mhf-testimonial-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(12px, 3vw, 28px);
}

.mhf-testimonial-modal[hidden] {
	display: none;
}

.mhf-testimonial-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 35, 60, 0.55);
	backdrop-filter: blur(4px);
}

.mhf-testimonial-modal__panel {
	position: relative;
	width: min(960px, 100%);
	max-height: calc(100vh - 32px);
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 30px 80px rgba(15, 35, 60, 0.28);
	overflow: hidden;
	animation: mhfModalIn 220ms ease;
}

@keyframes mhfModalIn {
	from { opacity: 0; transform: translateY(12px) scale(0.98); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mhf-testimonial-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	border-bottom: 1px solid rgba(27, 79, 114, 0.08);
}

.mhf-testimonial-modal__header h2 {
	margin: 0;
	font-size: clamp(18px, 2vw, 22px);
}

.mhf-testimonial-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	background: var(--mhf-color-primary);
	color: #ffffff;
	cursor: pointer;
	padding: 0;
	line-height: 0;
	transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
	box-shadow: 0 6px 16px rgba(27, 79, 114, 0.25);
}

.mhf-testimonial-modal__close svg {
	display: block;
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	pointer-events: none;
}

.mhf-testimonial-modal__close:hover,
.mhf-testimonial-modal__close:focus-visible {
	background: var(--mhf-color-primary-hover);
	transform: scale(1.06);
	outline: none;
	box-shadow: 0 10px 22px rgba(27, 79, 114, 0.32);
}

.mhf-testimonial-modal__body {
	padding: 22px;
	overflow-y: auto;
}

.mhf-testimonial-modal__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.mhf-testimonial-card--modal {
	width: auto;
}

/* ==========================================================================
   Contact links shortcode (iletişim sayfası)
   ========================================================================== */

.mhf-contact-links {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.mhf-contact-link {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border-radius: 18px;
	background: #fff;
	color: var(--mhf-color-text);
	text-decoration: none;
	box-shadow: var(--mhf-shadow-soft);
	border: 1px solid rgba(46, 134, 193, 0.10);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mhf-contact-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 52px rgba(27, 79, 114, 0.16);
	border-color: rgba(46, 134, 193, 0.32);
	color: var(--mhf-color-text);
	text-decoration: none;
}

.mhf-contact-link__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: linear-gradient(135deg, #1b4f72, #2e86c1);
	color: #fff;
	flex-shrink: 0;
}

.mhf-contact-link--linkedin .mhf-contact-link__icon { background: linear-gradient(135deg, #0a66c2, #0077b5); }
.mhf-contact-link--youtube  .mhf-contact-link__icon { background: linear-gradient(135deg, #ff0000, #cc0000); }
.mhf-contact-link--whatsapp .mhf-contact-link__icon { background: linear-gradient(135deg, #25d366, #128c7e); }

.mhf-contact-link__icon svg {
	width: 24px;
	height: 24px;
}

.mhf-contact-link__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

.mhf-contact-link__label {
	font-weight: 700;
	font-size: 16px;
	color: var(--mhf-color-dark);
}

.mhf-contact-link__desc {
	font-size: 14px;
	color: var(--mhf-color-text-soft);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mhf-contact-link__arrow {
	color: rgba(27, 79, 114, 0.45);
	font-size: 18px;
	transition: transform 200ms ease, color 200ms ease;
	flex-shrink: 0;
}

.mhf-contact-link:hover .mhf-contact-link__arrow {
	color: var(--mhf-color-primary);
	transform: translateX(4px);
}

/* Footer social icons ------------------------------------------------------- */

.mhf-footer-links a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.mhf-footer-links__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: var(--mhf-color-primary);
	flex-shrink: 0;
}

.mhf-footer-links__icon svg {
	width: 18px;
	height: 18px;
}

/* ==========================================================================
   Topics archive section (öğretici içerikler — chip filter altında)
   ========================================================================== */

.mhf-topics-archive-section {
	margin-top: clamp(48px, 6vw, 80px);
	display: grid;
	gap: clamp(24px, 4vw, 36px);
}

.mhf-topics-archive-section__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

.mhf-topics-archive-section__title {
	margin: 0 0 8px;
	font-size: clamp(26px, 3vw, 36px);
	color: var(--mhf-color-dark);
}

.mhf-topics-archive-section__lead {
	margin: 0;
	color: var(--mhf-color-text-soft);
	font-size: clamp(15px, 1.4vw, 17px);
}

/* ==========================================================================
   Eğitim Paketleri — kart grid + detay sayfası
   ========================================================================== */

.mhf-package-archive {
	display: grid;
	gap: clamp(28px, 4vw, 44px);
	width: min(calc(100% - 24px), 1280px);
	margin-inline: auto;
	box-sizing: border-box;
	padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 32px);
}

/* When the shortcode is rendered inside an mhf-section-shell wrapper
   (homepage strip), drop the shortcode-level container to avoid
   double padding/centering. */
.mhf-section-shell .mhf-package-archive {
	width: 100%;
	padding: 0;
	margin-inline: 0;
}

.mhf-package-grid {
	display: grid;
	gap: clamp(20px, 2.8vw, 28px);
	grid-template-columns: repeat(var(--mhf-pkg-cols, 3), minmax(0, 1fr));
}

.mhf-package-grid[data-columns="1"] { --mhf-pkg-cols: 1; }
.mhf-package-grid[data-columns="2"] { --mhf-pkg-cols: 2; }
.mhf-package-grid[data-columns="3"] { --mhf-pkg-cols: 3; }
.mhf-package-grid[data-columns="4"] { --mhf-pkg-cols: 4; }

.mhf-package-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border-radius: var(--mhf-radius-lg);
	background: var(--mhf-color-white);
	box-shadow: var(--mhf-shadow-soft);
	transition: transform 200ms ease, box-shadow 200ms ease;
}

.mhf-package-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 72px rgba(27, 79, 114, 0.16);
}

.mhf-package-card__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, #eef4f8 0%, #dbe8f2 100%);
	color: rgba(27, 79, 114, 0.5);
}

.mhf-package-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 500ms ease;
}

.mhf-package-card:hover .mhf-package-card__media img {
	transform: scale(1.04);
}

.mhf-package-card__media-placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
}

.mhf-package-card__media-placeholder svg {
	width: 46%;
	max-width: 130px;
}

.mhf-package-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 11px;
	border-radius: 999px;
	background: linear-gradient(135deg, #1b4f72, #2e86c1);
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.mhf-package-card__badge--yeni      { background: linear-gradient(135deg, #16a085, #1abc9c); }
.mhf-package-card__badge--cok-satan { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.mhf-package-card__badge--baslangic { background: linear-gradient(135deg, #2e86c1, #5dade2); }
.mhf-package-card__badge--pro       { background: linear-gradient(135deg, #6c3483, #8e44ad); }

.mhf-package-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: clamp(18px, 2.2vw, 24px);
	flex: 1;
}

.mhf-package-card__title {
	margin: 0;
	font-size: clamp(17px, 1.5vw, 20px);
	font-weight: 700;
	line-height: 1.3;
	color: var(--mhf-color-dark);
}

.mhf-package-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 180ms ease;
}

.mhf-package-card__title a:hover {
	color: var(--mhf-color-primary);
}

.mhf-package-card__excerpt {
	margin: 0;
	color: var(--mhf-color-text-soft);
	font-size: 14px;
	line-height: 1.6;
	flex: 1;
}

.mhf-package-card__meta {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	color: var(--mhf-color-text-soft);
	font-size: 13px;
	font-weight: 600;
}

.mhf-package-card__meta li {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.mhf-package-card__meta svg {
	color: var(--mhf-color-primary);
}

.mhf-package-card__actions {
	margin-top: 4px;
	display: flex;
	gap: 8px;
}

.mhf-package-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 13.5px;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease, gap 180ms ease;
	flex: 1;
}

.mhf-package-card__btn--primary {
	background: linear-gradient(135deg, #1b4f72, #2e86c1);
	color: #fff;
}

.mhf-package-card__btn--primary:hover {
	gap: 12px;
	color: #fff;
}

.mhf-package-card__btn--wa {
	background: #25d366;
	color: #fff;
	flex: 0 0 auto;
	padding: 10px 14px;
}

.mhf-package-card__btn--wa:hover {
	background: #1ebe5d;
	color: #fff;
}

@media (max-width: 1024px) {
	.mhf-package-grid[data-columns="3"],
	.mhf-package-grid[data-columns="4"] {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.mhf-package-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Single package template -------------------------------------------------- */

.mhf-package-single {
	max-width: 1180px;
	margin: 0 auto;
	padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 40px);
}

.mhf-package-single__hero {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
	margin-bottom: clamp(36px, 5vw, 56px);
}

.mhf-package-single__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--mhf-color-primary);
	font-weight: 600;
	font-size: 14.5px;
	text-decoration: none;
	margin-bottom: 14px;
	transition: gap 180ms ease;
}

.mhf-package-single__back:hover {
	gap: 10px;
}

.mhf-package-single__badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.mhf-package-single__title {
	margin: 0 0 14px;
	font-size: clamp(30px, 4.4vw, 48px);
	line-height: 1.12;
	color: var(--mhf-color-dark);
}

.mhf-package-single__lead {
	margin: 0 0 18px;
	font-size: clamp(16px, 1.6vw, 19px);
	line-height: 1.65;
	color: var(--mhf-color-text-soft);
}

.mhf-package-single__meta {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	font-weight: 600;
	color: var(--mhf-color-text);
}

.mhf-package-single__meta li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.mhf-package-single__meta svg {
	color: var(--mhf-color-primary);
}

.mhf-package-single__cover img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 28px;
	box-shadow: 0 30px 80px rgba(27, 79, 114, 0.16);
}

.mhf-package-single__layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}

.mhf-package-single__body {
	font-size: 17px;
	line-height: 1.7;
	color: var(--mhf-color-text);
}

.mhf-package-single__body > *:first-child { margin-top: 0; }
.mhf-package-single__body > *:last-child  { margin-bottom: 0; }

.mhf-package-features {
	margin-top: clamp(28px, 4vw, 44px);
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
	box-shadow: var(--mhf-shadow-soft);
	overflow: hidden;
}

.mhf-package-features__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 24px;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	color: var(--mhf-color-dark);
	text-align: left;
}

.mhf-package-features__caret {
	display: inline-flex;
	color: rgba(27, 79, 114, 0.6);
	transition: transform 220ms ease;
}

.mhf-package-features__toggle[aria-expanded="false"] .mhf-package-features__caret {
	transform: rotate(-90deg);
}

.mhf-package-features__list {
	margin: 0;
	padding: 0 24px 22px;
	list-style: none;
	display: grid;
	gap: 12px;
}

.mhf-package-features__list[hidden] {
	display: none;
}

.mhf-package-features__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--mhf-color-text);
	font-size: 15.5px;
	line-height: 1.55;
}

.mhf-package-features__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(46, 134, 193, 0.14);
	color: var(--mhf-color-primary);
	flex-shrink: 0;
	margin-top: 2px;
}

.mhf-package-sidebar {
	position: sticky;
	top: 92px;
	padding: 26px;
	border-radius: 22px;
	background: linear-gradient(160deg, #1b4f72 0%, #2e86c1 100%);
	color: #fff;
	box-shadow: 0 30px 80px rgba(27, 79, 114, 0.28);
}

.mhf-package-sidebar__title {
	margin: 0 0 8px;
	font-size: 22px;
	color: #fff;
}

.mhf-package-sidebar__desc {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14.5px;
	line-height: 1.6;
}

.mhf-package-sidebar__meta {
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	padding-top: 16px;
}

.mhf-package-sidebar__meta li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.92);
}

.mhf-package-sidebar__meta strong {
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
}

.mhf-package-sidebar__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 18px;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 18px 40px rgba(37, 211, 102, 0.38);
	transition: transform 180ms ease, background 180ms ease;
}

.mhf-package-sidebar__cta:hover {
	transform: translateY(-2px);
	background: #128c7e;
	color: #fff;
}

@media (max-width: 1024px) {
	.mhf-package-single__hero {
		grid-template-columns: 1fr;
	}

	.mhf-package-single__layout {
		grid-template-columns: 1fr;
	}

	.mhf-package-sidebar {
		position: static;
	}
}

/* ==========================================================================
   Contact form + WhatsApp card (iletişim sayfası)
   ========================================================================== */

.mhf-contact-form {
	display: grid;
	gap: 16px;
}

.mhf-contact-form__hp {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.mhf-contact-form__row--two {
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 540px) {
	.mhf-contact-form__row--two {
		grid-template-columns: 1fr;
	}
}

.mhf-contact-form__field {
	display: grid;
	gap: 6px;
}

.mhf-contact-form__label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--mhf-color-text);
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.mhf-contact-form__required {
	color: #b32d2e;
}

.mhf-contact-form input[type="text"],
.mhf-contact-form input[type="email"],
.mhf-contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(46, 134, 193, 0.22);
	border-radius: 12px;
	background: #fff;
	font: inherit;
	color: var(--mhf-color-text);
	box-sizing: border-box;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.mhf-contact-form textarea {
	resize: vertical;
	min-height: 140px;
}

.mhf-contact-form input:focus,
.mhf-contact-form textarea:focus {
	outline: none;
	border-color: var(--mhf-color-secondary);
	box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.18);
}

.mhf-contact-form__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 6px;
}

.mhf-contact-form__submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	background: var(--mhf-color-primary);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: background 160ms ease, gap 160ms ease, transform 160ms ease;
}

.mhf-contact-form__submit:hover,
.mhf-contact-form__submit:focus-visible {
	background: var(--mhf-color-primary-hover);
	gap: 12px;
	transform: translateY(-1px);
	outline: none;
}

.mhf-contact-form__note {
	margin: 0;
	font-size: 12.5px;
	color: var(--mhf-color-text-soft);
}

.mhf-contact-form__alert {
	padding: 12px 14px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.45;
}

.mhf-contact-form__alert--success {
	background: rgba(26, 127, 55, 0.10);
	color: #1a7f37;
	border: 1px solid rgba(26, 127, 55, 0.25);
}

.mhf-contact-form__alert--error {
	background: rgba(179, 45, 46, 0.08);
	color: #b32d2e;
	border: 1px solid rgba(179, 45, 46, 0.25);
}

/* WhatsApp clickable card ---------------------------------------------------- */

.mhf-whatsapp-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
	border-radius: 16px;
	background: #fff;
	color: var(--mhf-color-text);
	text-decoration: none;
	box-shadow: var(--mhf-shadow-soft);
	border: 1px solid rgba(46, 134, 193, 0.10);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mhf-whatsapp-card:hover,
.mhf-whatsapp-card:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(37, 211, 102, 0.4);
	box-shadow: 0 18px 40px rgba(27, 79, 114, 0.16);
	outline: none;
}

.mhf-whatsapp-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	flex-shrink: 0;
}

.mhf-whatsapp-card__body {
	display: grid;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

.mhf-whatsapp-card__title {
	font-weight: 700;
	font-size: 16px;
	color: var(--mhf-color-text);
}

.mhf-whatsapp-card__number {
	font-weight: 600;
	color: var(--mhf-color-primary);
	font-size: 14px;
}

.mhf-whatsapp-card__desc {
	font-size: 13px;
	color: var(--mhf-color-text-soft);
}

.mhf-whatsapp-card__arrow {
	color: var(--mhf-color-primary);
	font-weight: 700;
	transition: transform 160ms ease;
}

.mhf-whatsapp-card:hover .mhf-whatsapp-card__arrow {
	transform: translateX(3px);
}

/* Compact social icons (inline çoklu kanal) ------------------------------- */

.mhf-social-icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	gap: 10px;
}

.mhf-social-icons__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--mhf-color-primary);
	color: #fff;
	transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
	box-shadow: 0 4px 12px rgba(27, 79, 114, 0.18);
}

.mhf-social-icons__link svg {
	width: 16px;
	height: 16px;
	display: block;
}

.mhf-social-icons__link:hover,
.mhf-social-icons__link:focus-visible {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 18px rgba(27, 79, 114, 0.25);
	outline: none;
}

.mhf-social-icons__link--whatsapp {
	background: #25d366;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.30);
}

.mhf-social-icons__link--whatsapp:hover,
.mhf-social-icons__link--whatsapp:focus-visible {
	box-shadow: 0 8px 18px rgba(37, 211, 102, 0.45);
}

.mhf-social-icons--lg .mhf-social-icons__link {
	width: 44px;
	height: 44px;
}

.mhf-social-icons--lg .mhf-social-icons__link svg {
	width: 18px;
	height: 18px;
}

.mhf-social-icons--sm .mhf-social-icons__link {
	width: 30px;
	height: 30px;
}

.mhf-social-icons--sm .mhf-social-icons__link svg {
	width: 14px;
	height: 14px;
}

/* ==========================================================================
   Eğitim kartları — yatay düzen
   Gutenberg, blok içeriğini .wp-block-group__inner-container içine sarar,
   bu yüzden grid iç konteynere uygulanır, doğrudan kart sarmalayıcısına değil.
   ========================================================================== */

.mhf-education-card.wp-block-group {
	overflow: hidden;
	padding: 0 !important;
	height: 100%;
}

.mhf-education-card.wp-block-group > .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: 36% 1fr;
	padding: 0 !important;
	height: 100%;
}

.mhf-education-card.wp-block-group > .wp-block-group__inner-container > .mhf-card-media {
	grid-column: 1;
	grid-row: 1 / span 10;
	align-self: stretch;
	margin: 0 !important;
	max-width: none;
}

.mhf-education-card.wp-block-group > .wp-block-group__inner-container > .mhf-card-media img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 0;
	display: block;
	margin-bottom: 0;
}

.mhf-education-card.wp-block-group > .wp-block-group__inner-container > *:not(.mhf-card-media) {
	grid-column: 2;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	padding-inline: clamp(18px, 2.4vw, 24px);
	margin-bottom: 0;
}

.mhf-education-card.wp-block-group > .wp-block-group__inner-container > .mhf-kicker {
	padding-top: clamp(20px, 2.5vw, 26px);
}

.mhf-education-card.wp-block-group > .wp-block-group__inner-container > .mhf-card-link {
	padding-bottom: clamp(20px, 2.5vw, 26px);
	align-self: end;
}

/* ------------------------------------------------------------------ */

/* ==========================================================================
   Phase 2 — Görsel yeniden tasarım CSS eklemeleri
   ========================================================================== */

/* Body font: Inter (heading'lerde zaten yüklü, body için de uygula) */
body {
	font-family: 'Inter', sans-serif;
}

/* Hero H1 — key phrase gradient */
.mhf-section-shell h1 em {
	font-style: normal;
	background: linear-gradient(90deg, var(--mhf-color-secondary) 0%, var(--mhf-color-primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Hero logo frame */
.mhf-card-stack .mhf-hero-logo {
	border-radius: 28px;
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(46, 134, 193, 0.14), transparent 40%),
		linear-gradient(135deg, #ffffff 0%, #eef4f8 100%);
	padding: clamp(24px, 3.5vw, 40px);
	box-shadow: 0 32px 80px rgba(27, 79, 114, 0.14), 0 8px 24px rgba(27, 79, 114, 0.08);
}

.mhf-card-stack .mhf-hero-logo img {
	width: 100% !important;
	max-width: 320px;
	height: auto !important;
	object-fit: contain;
	filter: drop-shadow(0 8px 24px rgba(27, 79, 114, 0.12));
	display: block;
	margin-inline: auto;
}

/* Check-list — SVG check icon yerine CSS ile */
.mhf-check-list.wp-block-list {
	list-style: none;
	padding-left: 0;
}

.mhf-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding-left: 0;
}

.mhf-check-list li::marker {
	display: none;
	content: '';
}

.mhf-check-list li::before {
	content: '';
	display: inline-flex;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	border-radius: 50%;
	background-color: rgba(46, 134, 193, 0.13);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%232e86c1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
}

/* Service card — ikon daire */
.mhf-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(27, 79, 114, 0.09), rgba(46, 134, 193, 0.14));
	color: var(--mhf-color-primary);
	flex-shrink: 0;
	margin-bottom: 8px;
}

.mhf-service-icon svg {
	width: 24px;
	height: 24px;
}

/* Proof kart — büyük ghost sayı */
.mhf-proof-num {
	display: block;
	font-size: 72px;
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: -0.05em;
	color: rgba(27, 79, 114, 0.07);
	margin-bottom: 4px;
	font-family: 'Inter', sans-serif;
	font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------ */

.screen-reader-text {
	clip: rect(1px,1px,1px,1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* ==========================================================================
   Phase 3 — Tasarım düzeltmeleri (kart hizalama, görsel oranı, başlık şeridi)
   ========================================================================== */

/* Hizmet kartları: eşit yükseklik, "Detayları gör" altta sabit. */
.mhf-service-card.wp-block-group {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.mhf-service-card.wp-block-group > .wp-block-group__inner-container {
	display: flex;
	flex-direction: column;
	flex: 1;
	height: 100%;
}

.mhf-service-card .mhf-card-link {
	margin-top: auto;
}

/* Eşit yükseklik için kolonların kartları esnemesi. */
.mhf-service-card,
.mhf-education-card {
	height: 100%;
}

/* Hizmet/eğitim kartlarındaki görseller her zaman sabit oranlı + kırpılmış,
   böylece etiket/başlık satırları kartlar arasında hizalı kalır. */
.mhf-service-card .mhf-card-media img {
	aspect-ratio: 16 / 10;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Ana sayfa "Eğitim paketleri" şeridi ile "Tüm paketleri gör" butonu
   arasındaki boşluk (butonu kart ızgarasına yapışmaktan kurtarır). */
.mhf-section-shell .mhf-package-archive + .wp-block-buttons,
.mhf-package-cta-spacing {
	margin-top: clamp(36px, 4vw, 52px);
}

/* Son yazılar (latest-posts) kartları: eşit yükseklik + sabit oranlı kapak. */
.mhf-latest-posts li {
	display: flex;
	flex-direction: column;
}

.mhf-latest-posts .wp-block-latest-posts__featured-image img {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.mhf-latest-posts .wp-block-latest-posts__post-excerpt {
	margin-bottom: 0;
}

/* Latest-posts title link (core block renders a bare <a>) — style as card title. */
.mhf-latest-posts li > a:first-of-type,
.mhf-latest-posts .wp-block-latest-posts__post-title {
	display: block;
	margin-top: 16px;
	color: var(--mhf-color-dark);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	transition: color 160ms ease;
}

.mhf-latest-posts li > a:first-of-type:hover,
.mhf-latest-posts .wp-block-latest-posts__post-title:hover {
	color: var(--mhf-color-primary);
}

/* Blog arşivi (Kadence loop) — kapak görselleri sabit oranlı, kartlar eşit. */
.blog .loop-entry .post-thumbnail img,
.archive .loop-entry .post-thumbnail img {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Standart (Kadence) sayfa başlığı şeridini, kendi mini-hero'sunu kullanan
   sayfalarda gizlemek yerine; tüm sayfa başlık şeritlerini tutarlı kıl. */
.page .entry-hero .entry-header,
.single .entry-hero .entry-header {
	text-align: center;
}

/* ==========================================================================
   Header logosu
   ========================================================================== */

/* Logo ile menünün ilk bağlantısı arasında her zaman nefes payı kalsın —
   dar masaüstü genişliklerinde ikisi dibine kadar yaklaşıyordu. */
#main-header .site-branding {
	padding-right: 20px;
}

/* ==========================================================================
   Transparan header — ilk bölümle çakışma
   ========================================================================== */

/* Header absolute konumlu olduğu için sayfanın ilk bölümünün üzerine biniyor:
   dar ekranlarda kicker satırı header'ın içine giriyordu. Header yüksekliğini
   değişkende tutup ilk bölümün üst boşluğunu buna göre veriyoruz. */
:root {
	--mhf-header-h: 80px;
}

@media (min-width: 1200px) {
	:root {
		--mhf-header-h: 96px;
	}
}

/* Arka planı olan mini hero kutusu, header'ın altından başlasın. */
.transparent-header .entry-content > .mhf-mini-hero-shell:first-child {
	margin-top: calc(var(--mhf-header-h) + clamp(12px, 2vw, 24px));
}

/* Arka planı olmayan bölümlerde kutuyu değil içeriği indiriyoruz. */
.transparent-header .entry-content > .mhf-section-shell:first-child:not(.mhf-mini-hero-shell) {
	padding-top: max(calc(var(--mhf-header-h) + clamp(24px, 4vw, 40px)), clamp(72px, 8vw, 112px));
}

/* Referans formundaki tarih alanı: yer tutucu metin date input'ta
   görünmediği için alanın ne istediği belirsizdi; küçük bir etiket ekliyoruz. */
.mhf-reference-form__date {
	display: grid;
	gap: 6px;
}

.mhf-reference-form__date > span {
	font-size: 13px;
	font-weight: 600;
	color: var(--mhf-color-text-soft, #5d6d7e);
}
