/* ==========================================================================
   KrediKefilsiz — Design System
   ========================================================================== */

:root {
	--kk-primary: #156CC4;
	--kkf-primary: var(--kk-primary);
	--kkf-primary-rgb: 21, 108, 196;
	--kkf-text-color: var(--kk-text);
	--kk-navy: #202634;
	--kk-text: #1F2937;
	--kk-text-soft: #6B7280;
	--kk-border: #E5E7EB;
	--kk-bg: #FFFFFF;
	--kk-bg-light: #F8FAFC;
	--kk-card: #FFFFFF;
	--kk-header-bg: #FFFFFF;
	--kk-badge-bg: rgba(21, 108, 196, 0.08);
	--kk-shadow: 0 1px 3px rgba(32, 38, 52, 0.06), 0 1px 2px rgba(32, 38, 52, 0.04);
	--kk-radius: 10px;
	--kk-radius-sm: 6px;
	--kk-font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--kk-container: 1200px;
	--kk-gap: 1.5rem;
	--kk-header-h: 64px;
	--kk-transition: 0.15s ease;
	--kk-footer-bg: #FFFFFF;
	--kk-footer-text: #6B7280;
	--kk-footer-heading: #1F2937;
	--kk-footer-border: #E5E7EB;
	--kk-logo-height: 90px;
}

body.dark-mode {
	--kk-primary: #156CC4;
	--kkf-primary: var(--kk-primary);
	--kkf-primary-rgb: 21, 108, 196;
	--kkf-text-color: var(--kk-footer-text);
	--kk-navy: #F3F4F6;
	--kk-text: #F3F4F6;
	--kk-text-soft: #9CA3AF;
	--kk-border: #3D4F63;
	--kk-bg: #202634;
	--kk-bg-light: #1A2233;
	--kk-card: #1F2937;
	--kk-header-bg: #1F2937;
	--kk-badge-bg: rgba(21, 108, 196, 0.2);
	--kk-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.18);
	--kk-footer-bg: #202634;
	--kk-footer-text: #9CA3AF;
	--kk-footer-heading: #FFFFFF;
	--kk-footer-border: rgba(255, 255, 255, 0.1);
	color-scheme: dark;
}

/* Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--kk-font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--kk-text);
	background-color: var(--kk-bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--kk-primary);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em;
	line-height: 1.3;
	color: var(--kk-text);
	font-weight: 600;
}

p {
	margin: 0 0 1em;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Layout
   ========================================================================== */

.kk-container {
	width: 100%;
	max-width: var(--kk-container);
	margin-inline: auto;
	padding-inline: 1rem;
}

.kk-container--article {
	max-width: var(--kk-container);
}

.kk-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 32px;
	align-items: start;
}

.kk-single-layout--solo {
	display: block;
}

.kk-single-layout__main {
	min-width: 0;
}

@media (max-width: 992px) {
	.kk-single-layout {
		grid-template-columns: 1fr;
	}
}

/* Archive layout — kategori / etiket + sidebar
   ========================================================================== */

.archive-page-container .archive-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 32px;
	align-items: start;
}

.archive-page-container .archive-layout--solo {
	display: block;
}

.archive-page-container .archive-main {
	min-width: 0;
}

.archive-page-container .archive-sidebar {
	width: 340px;
	min-width: 0;
}

.archive-page-container .archive-sidebar .kk-sidebar {
	width: 100%;
}

@media (max-width: 992px) {
	.archive-page-container .archive-layout:not(.archive-layout--solo) {
		grid-template-columns: 1fr;
	}

	.archive-page-container .archive-sidebar {
		width: 100%;
	}
}

/* Page
   ========================================================================== */

.kk-page {
	width: 100%;
	max-width: none;
}

.kk-page__header {
	margin-bottom: 1.5rem;
}

.kk-page__title {
	margin: 0;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--kk-text);
}

@media (min-width: 768px) {
	.kk-page__title {
		font-size: 2rem;
	}
}

.kk-page__content {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--kk-text);
}

.kk-page__content > *:first-child {
	margin-top: 0;
}

.kk-page__content h2 {
	font-size: 1.375rem;
	margin-top: 2rem;
}

.kk-page__content h3 {
	font-size: 1.125rem;
	margin-top: 1.5rem;
}

.kk-page__content p {
	margin-bottom: 1.25rem;
}

.kk-page__content ul,
.kk-page__content ol {
	margin: 0 0 1.25rem 1.25rem;
	padding: 0;
	list-style: disc;
}

.kk-page__content li {
	margin-bottom: 0.375rem;
}

.kk-page__content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 3px solid var(--kk-primary);
	background: var(--kk-bg-light);
	border-radius: 0 var(--kk-radius-sm) var(--kk-radius-sm) 0;
	color: var(--kk-text-soft);
}

.kk-page__content img {
	border-radius: var(--kk-radius-sm);
	margin-block: 1rem;
	max-width: 100%;
	height: auto;
}

.kk-page__content a {
	color: var(--kk-primary);
}

/* Sidebar
   ========================================================================== */

.kk-sidebar--single {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	min-width: 0;
}

.kk-sidebar__widget {
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	padding: 1.25rem;
}

.kk-sidebar__title {
	position: relative;
	margin: 0 0 1rem;
	padding-bottom: 0.65rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--kk-text);
}

.kk-sidebar__title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 3px;
	border-radius: 999px;
	background: var(--kk-primary);
}

/* Widget başlık satırı */
.kk-sidebar-widget__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.25rem;
}

.kk-sidebar-widget__head-main {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex: 1;
	min-width: 0;
	padding-bottom: 0.75rem;
}

.kk-sidebar-widget__head-main::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 42px;
	height: 3px;
	border-radius: 999px;
	background: var(--kk-primary);
}

.kk-sidebar-widget__icon {
	font-size: 1rem;
	color: var(--kk-primary);
	flex-shrink: 0;
}

.kk-sidebar-widget__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--kk-text);
}

.kk-sidebar-widget__more {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	flex-shrink: 0;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--kk-primary);
	text-decoration: none;
	white-space: nowrap;
	transition: opacity var(--kk-transition);
}

.kk-sidebar-widget__more:hover,
.kk-sidebar-widget__more:focus-visible {
	opacity: 0.85;
	text-decoration: none;
	color: var(--kk-primary);
}

.kk-sidebar-widget__more i {
	font-size: 0.625rem;
}

/* Son Yazılar */
.kk-sidebar-recent__list {
	list-style: none;
	margin: 0 -1.25rem;
	padding: 0;
}

.kk-sidebar-recent__item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.85rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--kk-border);
}

.kk-sidebar-recent__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.kk-sidebar-recent__item:first-child {
	padding-top: 0.25rem;
}

.kk-sidebar-recent__body {
	flex: 1;
	min-width: 0;
}

.kk-sidebar-recent__title {
	margin: 0 0 0.45rem;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.45;
}

.kk-sidebar-recent__title a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--kk-text);
	text-decoration: none;
	transition: color var(--kk-transition);
}

.kk-sidebar-recent__title a:hover,
.kk-sidebar-recent__title a:focus-visible {
	color: var(--kk-primary);
}

.kk-sidebar-post-excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--kk-text-soft);
}

.kk-sidebar-recent__date {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.75rem;
	color: var(--kk-text-soft);
}

.kk-sidebar-recent__date i {
	font-size: 0.6875rem;
}

.kk-sidebar-recent__thumb {
	flex-shrink: 0;
	display: block;
	width: 120px;
	height: 80px;
	border-radius: 10px;
	overflow: hidden;
}

.kk-sidebar-recent__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kk-sidebar-recent__img--placeholder {
	background: linear-gradient(135deg, var(--kk-bg-light), var(--kk-border));
}

/* Reklam */
.kk-sidebar-ad__box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 336px;
	height: 280px;
	margin-inline: auto;
	border: 1px dashed var(--kk-border);
	border-radius: var(--kk-radius-sm);
	background: var(--kk-bg-light);
	color: var(--kk-text-soft);
	text-align: center;
}

.kk-sidebar-ad__label {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.kk-sidebar-ad__size {
	margin-top: 0.35rem;
	font-size: 0.75rem;
}

/* Popüler Yazılar */
.kk-sidebar-popular__list {
	list-style: none;
	margin: 0 -1.25rem;
	padding: 0;
}

.kk-sidebar-popular__item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--kk-border);
}

.kk-sidebar-popular__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.kk-sidebar-popular__item:first-child {
	padding-top: 0.25rem;
}

.kk-sidebar-popular__thumb {
	flex-shrink: 0;
	display: block;
	width: 130px;
	height: 95px;
	border-radius: 10px;
	overflow: hidden;
}

.kk-sidebar-popular__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kk-sidebar-popular__img--placeholder {
	background: linear-gradient(135deg, var(--kk-bg-light), var(--kk-border));
}

.kk-sidebar-popular__body {
	flex: 1;
	min-width: 0;
}

.kk-sidebar-popular__title {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.45;
}

.kk-sidebar-popular__title a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--kk-text);
	text-decoration: none;
	transition: color var(--kk-transition);
}

.kk-sidebar-popular__title a:hover,
.kk-sidebar-popular__title a:focus-visible {
	color: var(--kk-primary);
}

.kk-sidebar-popular__meta {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	font-size: 0.75rem;
	color: var(--kk-text-soft);
}

.kk-sidebar-popular__views,
.kk-sidebar-popular__date {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.kk-sidebar-popular__views i,
.kk-sidebar-popular__date i {
	font-size: 0.6875rem;
}

@media (max-width: 575px) {
	.kk-sidebar-recent__thumb {
		width: 100px;
		height: 68px;
	}

	.kk-sidebar-popular__thumb {
		width: 110px;
		height: 82px;
	}
}

/* Kategoriler */
.kk-sidebar-categories__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.kk-sidebar-categories__card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 72px;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	background-color: var(--kk-navy);
	overflow: hidden;
	text-decoration: none;
}

.kk-sidebar-categories__card--fallback {
	background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.kk-sidebar-categories__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.35s ease;
}

.kk-sidebar-categories__card:hover .kk-sidebar-categories__bg {
	transform: scale(1.05);
}

.kk-sidebar-categories__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 100%);
	transition: background var(--kk-transition);
}

.kk-sidebar-categories__card:hover .kk-sidebar-categories__overlay {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.kk-sidebar-categories__name,
.kk-sidebar-categories__count {
	position: relative;
	z-index: 1;
}

.kk-sidebar-categories__name {
	flex: 1;
	min-width: 0;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
	color: #FFFFFF;
}

.kk-sidebar-categories__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 0.45rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: var(--kk-text);
	font-size: 0.75rem;
	font-weight: 700;
	flex-shrink: 0;
}

.kk-sidebar-categories__card:hover .kk-sidebar-categories__name {
	color: #FFFFFF;
	text-decoration: none;
}

.kk-site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.kk-main {
	flex: 1;
	padding-block: 1.5rem 3rem;
}

/* Breadcrumb — Rank Math
   ========================================================================== */

.kk-breadcrumb {
	margin: 0 0 1rem;
	padding: 0;
	font-size: 0.8125rem;
	color: var(--kk-text-soft);
}

.kk-container--breadcrumb {
	max-width: var(--kk-container);
}

.kk-breadcrumb a {
	color: var(--kk-text-soft);
	text-decoration: none;
}

.kk-breadcrumb a:hover {
	color: var(--kk-primary);
}

.kk-breadcrumb .rank-math-breadcrumb {
	margin: 0;
}

.kk-breadcrumb .rank-math-breadcrumb p {
	margin: 0;
}

.kk-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.8125rem;
}

.kk-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	color: var(--kk-text-soft);
}

.kk-breadcrumb__item:not(:last-child)::after {
	content: '/';
	margin-left: 0.5rem;
	opacity: 0.55;
}

.kk-breadcrumb__item a {
	color: var(--kk-text-soft);
	text-decoration: none;
}

.kk-breadcrumb__item a:hover {
	color: var(--kk-primary);
}

.kk-breadcrumb__item span[aria-current='page'] {
	color: var(--kk-text);
}

/* Elementor tam genişlik
   ========================================================================== */

body.kk-elementor-page .kk-main {
	padding-block: 0;
}

.kk-elementor-content {
	width: 100%;
	max-width: none;
}

.kk-elementor-content .elementor {
	width: 100%;
}

body.kk-elementor-page .kk-cat-bar {
	display: none;
}

.kk-layout {
	display: grid;
	gap: var(--kk-gap);
}

.has-sidebar .kk-layout {
	grid-template-columns: 1fr;
}

@media (min-width: 992px) {
	.has-sidebar .kk-layout {
		grid-template-columns: 1fr 300px;
	}
}

.kk-content {
	min-width: 0;
}

/* Header
   ========================================================================== */

/* Top Bar
   ========================================================================== */

.kk-topbar {
	background: var(--kk-bg);
	border-bottom: 1px solid var(--kk-border);
	font-size: 0.75rem;
	color: var(--kk-text-soft);
}

.kk-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 36px;
}

.kk-topbar__ticker {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	flex: 0 1 50%;
	min-width: 0;
	max-width: 50%;
}

.kk-topbar__label {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	flex-shrink: 0;
	padding: 0.2rem 0.625rem 0.2rem 0.5rem;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	background: var(--kk-primary);
	clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 0 100%);
}

.kk-topbar__label svg {
	width: 11px;
	height: 11px;
	flex-shrink: 0;
}

.kk-topbar__ticker-viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	position: relative;
	height: 1.25rem;
}

.kk-topbar__ticker-track {
	position: relative;
	height: 100%;
}

.kk-topbar__ticker-item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	color: var(--kk-text);
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.kk-topbar__ticker-item::before {
	content: "•";
	color: var(--kk-text-soft);
	flex-shrink: 0;
}

.kk-topbar__ticker-item.is-active {
	opacity: 1;
	pointer-events: auto;
}

.kk-topbar__ticker-item:hover {
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-topbar__date {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	flex-shrink: 0;
	margin-left: auto;
	white-space: nowrap;
	font-size: 0.75rem;
	color: var(--kk-text);
}

.kk-topbar__date svg {
	width: 14px;
	height: 14px;
	color: var(--kk-text-soft);
	flex-shrink: 0;
}

body.kk-elementor-page .kk-topbar,
body.kk-elementor-page .kk-header {
	display: none;
}

@media (max-width: 575px) {
	.kk-topbar__date time {
		font-size: 0.6875rem;
	}

	.kk-topbar__ticker {
		flex: 1;
		max-width: none;
	}
}

/* Header — Logo + Reklam + Menü
   ========================================================================== */

.kk-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--kk-header-bg);
}

.kk-header__brand-row {
	border-bottom: 1px solid var(--kk-border);
}

.kk-header__brand-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1rem;
}

.kk-header__brand {
	flex-shrink: 0;
}

.kk-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--kk-navy);
	text-decoration: none;
}

.kk-logo--image {
	height: var(--kk-logo-height);
	max-width: var(--kk-header-logo-width, 160px);
	flex-shrink: 0;
}

.kk-logo--image > a,
.kk-logo--image .custom-logo-link {
	display: block;
	height: var(--kk-logo-height);
	line-height: 0;
}

.kk-logo--image img,
.kk-logo--image .kk-logo__img {
	display: block;
	height: var(--kk-logo-height);
	width: auto;
	max-width: var(--kk-header-logo-width, 160px);
	object-fit: contain;
}

.kk-logo--themed .kk-logo__img--dark {
	display: none;
}

body.dark-mode .kk-logo--themed .kk-logo__img--light {
	display: none;
}

body.dark-mode .kk-logo--themed .kk-logo__img--dark {
	display: block;
}

.kk-logo:hover {
	text-decoration: none;
}

.kk-logo__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--kk-primary), #0d5aa8);
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	flex-shrink: 0;
}

.kk-logo__text {
	display: flex;
	align-items: baseline;
	gap: 0.125rem;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.kk-logo__primary {
	color: var(--kk-primary);
}

.kk-logo__secondary {
	color: var(--kk-navy);
}

.kk-header-ad {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 728px;
	min-height: 90px;
	margin-left: auto;
	overflow: hidden;
}

.kk-header-ad img,
.kk-header-ad iframe {
	display: block;
	max-width: 100%;
	height: auto;
}

.kk-header-ad--placeholder {
	border: 2px dashed var(--kk-border);
	border-radius: var(--kk-radius-sm);
	background: var(--kk-bg-light);
	color: var(--kk-text-soft);
	font-size: 0.875rem;
	font-weight: 500;
}

.kk-header__nav-row {
	border-bottom: 1px solid var(--kk-border);
}

.kk-header__nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 48px;
}

.kk-nav {
	display: none;
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

@media (min-width: 992px) {
	.kk-nav {
		display: block;
	}
}

.kk-nav__list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.kk-nav__list::-webkit-scrollbar {
	display: none;
}

.kk-nav__list a {
	display: block;
	padding: 0.625rem 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--kk-text);
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--kk-transition);
}

.kk-nav__list a:hover,
.kk-nav__list .current-menu-item > a,
.kk-nav__list .current_page_item > a {
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-header__actions {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	flex-shrink: 0;
}

.kk-btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius-sm);
	background: var(--kk-header-bg);
	color: var(--kk-text);
	cursor: pointer;
}

.kk-btn-icon:hover,
.kk-btn-icon.is-active {
	border-color: var(--kk-primary);
	color: var(--kk-primary);
}

.kk-btn-icon svg {
	width: 18px;
	height: 18px;
}

.kk-menu-toggle {
	display: flex;
}

@media (min-width: 992px) {
	.kk-menu-toggle {
		display: none;
	}
}

.kk-icon-close,
.kk-menu-toggle.is-active .kk-icon-menu {
	display: none;
}

.kk-menu-toggle.is-active .kk-icon-close {
	display: block;
}

@media (max-width: 991px) {
	.kk-header__brand-inner {
		justify-content: center;
	}

	.kk-header-ad {
		display: none;
	}

	.kk-header__nav-inner {
		justify-content: flex-end;
	}
}

@media (max-width: 575px) {
	.kk-topbar__date {
		display: none;
	}
}

/* Search Panel
   ========================================================================== */

.kk-search-panel {
	padding: 0.875rem 0;
	background: var(--kk-header-bg);
	border-bottom: 1px solid var(--kk-border);
}

.kk-search-panel .kk-search-form {
	max-width: 100%;
	margin: 0;
}

/* Mobile Nav
   ========================================================================== */

.kk-mobile-nav {
	background: var(--kk-header-bg);
	border-bottom: 1px solid var(--kk-border);
}

.kk-mobile-nav__list {
	list-style: none;
	margin: 0;
	padding: 0.75rem 0;
}

.kk-mobile-nav__list a {
	display: block;
	padding: 0.75rem 0;
	font-weight: 500;
	color: var(--kk-text);
	border-bottom: 1px solid var(--kk-border);
	text-decoration: none;
}

.kk-mobile-nav__list li:last-child a {
	border-bottom: none;
}

/* Category Bar
   ========================================================================== */

.kk-cat-bar {
	background: var(--kk-bg-light);
	border-bottom: 1px solid var(--kk-border);
	overflow: hidden;
}

.kk-cat-bar__inner {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-block: 0.625rem;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.kk-cat-bar__inner::-webkit-scrollbar {
	display: none;
}

.kk-cat-bar a {
	flex-shrink: 0;
	padding: 0.375rem 0.875rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--kk-text-soft);
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: 999px;
	text-decoration: none;
	white-space: nowrap;
}

.kk-cat-bar a:hover,
.kk-cat-bar a.is-active {
	color: #fff;
	background: var(--kk-primary);
	border-color: var(--kk-primary);
	text-decoration: none;
}

/* Section
   ========================================================================== */

.kk-section {
	margin-bottom: 2.5rem;
}

.kk-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--kk-primary);
}

.kk-section__title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--kk-navy);
}

.kk-section__more {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-section__more:hover {
	text-decoration: underline;
}

/* Category Block — Jannah-style listing
   ========================================================================== */

.kk-cat-block {
	margin-bottom: 2.5rem;
}

.kk-cat-block__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--kk-primary);
}

.kk-cat-block__title {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--kk-navy);
}

.kk-cat-block__more {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--kk-primary);
	text-decoration: none;
	flex-shrink: 0;
}

.kk-cat-block__more:hover {
	text-decoration: underline;
}

.kk-cat-block__top {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.kk-cat-block__top {
		grid-template-columns: 1.2fr 1fr;
		align-items: stretch;
	}
}

.kk-cat-block__main,
.kk-cat-block__list {
	min-width: 0;
}

/* Ana kart */
.kk-cat-block__main-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	box-shadow: var(--kk-shadow);
	overflow: hidden;
}

.kk-cat-block__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--kk-bg-light);
}

.kk-cat-block__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kk-cat-block__main-body {
	padding: 1.125rem;
}

.kk-cat-block__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
	color: var(--kk-text-soft);
}

.kk-cat-block__badge {
	display: inline-block;
	padding: 0.15rem 0.5rem;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #FFFFFF;
	background: var(--kk-primary);
	border-radius: var(--kk-radius-sm);
}

.kk-cat-block__main-title {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
}

.kk-cat-block__main-title a {
	color: var(--kk-text);
	text-decoration: none;
}

.kk-cat-block__main-title a:hover {
	color: var(--kk-primary);
}

.kk-cat-block__main-excerpt {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--kk-text-soft);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Yan liste */
.kk-cat-block__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.kk-cat-block__list-item {
	display: flex;
	gap: 0.875rem;
	padding: 0.75rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	box-shadow: var(--kk-shadow);
}

.kk-cat-block__list-thumb {
	flex-shrink: 0;
	width: 96px;
	height: 72px;
	border-radius: var(--kk-radius-sm);
	overflow: hidden;
	background: var(--kk-bg-light);
}

.kk-cat-block__list-thumb .kk-cat-block__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kk-cat-block__list-body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-width: 0;
}

.kk-cat-block__list-date {
	font-size: 0.75rem;
	color: var(--kk-text-soft);
	margin-bottom: 0.25rem;
}

.kk-cat-block__list-title {
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
}

.kk-cat-block__list-excerpt {
	margin: 0.35rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--kk-text-soft);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kk-cat-block__list-title a {
	color: var(--kk-text);
	text-decoration: none;
}

.kk-cat-block__list-title a:hover {
	color: var(--kk-primary);
}

/* Alt grid */
.kk-cat-block__bottom {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.kk-cat-block__bottom--2 {
	grid-template-columns: 1fr;
}

.kk-cat-block__bottom--3 {
	grid-template-columns: 1fr;
}

@media (min-width: 576px) {
	.kk-cat-block__bottom--2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.kk-cat-block__bottom--3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.kk-cat-block__bottom-card {
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	box-shadow: var(--kk-shadow);
	overflow: hidden;
}

.kk-cat-block__bottom-thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--kk-bg-light);
}

.kk-cat-block__bottom-body {
	padding: 0.75rem;
}

.kk-cat-block__bottom-body time {
	display: block;
	font-size: 0.75rem;
	color: var(--kk-text-soft);
	margin-bottom: 0.25rem;
}

.kk-cat-block__bottom-title {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
}

.kk-cat-block__bottom-title a {
	color: var(--kk-text);
	text-decoration: none;
}

.kk-cat-block__bottom-title a:hover {
	color: var(--kk-primary);
}

/* Home Category Sections — Customizer blocks
   ========================================================================== */

.kk-home-cat {
	margin-bottom: 2.5rem;
}

.kk-home-cat__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.kk-home-cat__more {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--kk-primary);
	text-decoration: none;
	flex-shrink: 0;
	line-height: 1.6;
}

.kk-home-cat__more:hover {
	text-decoration: underline;
}

.kk-home-cat__more .fa-solid {
	font-size: 0.625rem;
	margin-left: 0.2rem;
}

/* Şablon 1 */
.kk-home-cat-t1__top {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.kk-home-cat-t1__top {
		grid-template-columns: 1.2fr 1fr;
		align-items: stretch;
	}
}

.kk-home-cat-t1__main,
.kk-home-cat-t1__list {
	min-width: 0;
}

.kk-home-cat-t1__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* Şablon 2 — tek satır vitrin (max 3 kart) */
.kk-home-cat-t2__grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
	.kk-home-cat-t2__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

@media (min-width: 992px) {
	.kk-home-cat-t2__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px;
	}
}

.kk-home-cat-t2__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	box-shadow: var(--kk-shadow);
	overflow: hidden;
}

.kk-home-cat-t2__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--kk-bg-light);
}

.kk-home-cat-t2__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kk-home-cat-t2__img--placeholder {
	display: block;
	min-height: 100%;
	background: var(--kk-bg-light);
}

.kk-home-cat-t2__body {
	padding: 0.875rem;
}

.kk-home-cat-t2__date {
	display: block;
	font-size: 0.75rem;
	color: var(--kk-text-soft);
	margin-bottom: 0.35rem;
}

.kk-home-cat-t2__title {
	margin: 0.25rem 0 0;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kk-home-cat-t2__excerpt {
	margin: 0.35rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--kk-text-soft);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kk-home-cat-t2__title a {
	color: var(--kk-text);
	text-decoration: none;
}

.kk-home-cat-t2__title a:hover {
	color: var(--kk-primary);
}

@media (max-width: 767px) {
	.kk-home-cat-t1__top {
		grid-template-columns: 1fr;
	}
}

/* Card Grid — Jannah-style listing
   ========================================================================== */

.kk-grid {
	display: grid;
	gap: 1.25rem;
}

.kk-grid--2 {
	grid-template-columns: 1fr;
}

.kk-grid--3 {
	grid-template-columns: 1fr;
}

.kk-grid--4 {
	grid-template-columns: repeat(2, 1fr);
}

/* Arşiv listeleme — 2 kolon */
.kk-grid--archive {
	grid-template-columns: minmax(0, 1fr);
	gap: 24px;
}

@media (min-width: 992px) {
	.kk-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 576px) {
	.kk-grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}
	.kk-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.kk-grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}
	.kk-grid--4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Post Card
   ========================================================================== */

.kk-card {
	display: flex;
	flex-direction: column;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	box-shadow: var(--kk-shadow);
	overflow: hidden;
}

.kk-card__thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--kk-bg-light);
}

.kk-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kk-card__thumb a {
	display: block;
	height: 100%;
}

.kk-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1rem;
}

.kk-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
	color: var(--kk-text-soft);
}

.kk-card__title {
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.375rem;
}

.kk-card__title a {
	color: var(--kk-text);
	text-decoration: none;
}

.kk-card__title a:hover {
	color: var(--kk-primary);
}

.kk-card__excerpt {
	font-size: 0.8125rem;
	color: var(--kk-text-soft);
	line-height: 1.5;
	margin-bottom: 0;
	flex: 1;
}

/* Badge
   ========================================================================== */

.kk-badge {
	display: inline-block;
	padding: 0.125rem 0.5rem;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--kk-primary);
	background: var(--kk-badge-bg);
	border-radius: var(--kk-radius-sm);
	text-decoration: none;
}

.kk-badge:hover {
	background: var(--kk-primary);
	color: #fff;
	text-decoration: none;
}

/* Hero — 4 blok grid (1 büyük + 1 geniş + 2 küçük)
   ========================================================================== */

.kk-hero {
	margin-bottom: 2.5rem;
}

.kk-hero__grid {
	display: grid;
	gap: 20px;
}

@media (min-width: 992px) {
	.kk-hero__grid {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
		min-height: 480px;
	}
}

.kk-hero__main,
.kk-hero__side {
	min-width: 0;
}

.kk-hero__side {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (min-width: 992px) {
	.kk-hero__side {
		height: 100%;
	}

	.kk-hero__side-top {
		flex: 1.15;
		min-height: 0;
	}

	.kk-hero__side-bottom {
		flex: 1;
		min-height: 0;
	}
}

.kk-hero__side-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.kk-hero__side-top .kk-hero__item,
.kk-hero__side-bottom .kk-hero__item,
.kk-hero__main .kk-hero__item {
	height: 100%;
}

.kk-hero__item {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--kk-border);
	box-shadow: var(--kk-shadow);
	background: var(--kk-navy);
	transition: box-shadow 0.3s ease;
}

.kk-hero__item:hover {
	box-shadow: 0 8px 24px rgba(32, 38, 52, 0.18);
}

.kk-hero__item--main {
	min-height: 300px;
}

.kk-hero__item--featured {
	min-height: 180px;
}

.kk-hero__item--compact {
	min-height: 160px;
}

@media (min-width: 992px) {
	.kk-hero__item--main {
		min-height: 480px;
	}
}

.kk-hero__link {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.kk-hero__link .kk-hero__img,
.kk-hero__link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.kk-hero__item:hover .kk-hero__link img,
.kk-hero__item:hover .kk-hero__link .kk-hero__img {
	transform: scale(1.02);
}

.kk-hero__item--main .kk-hero__img,
.kk-hero__item--main .kk-hero__img--placeholder {
	min-height: 300px;
}

@media (min-width: 992px) {
	.kk-hero__item--main .kk-hero__img,
	.kk-hero__item--main .kk-hero__img--placeholder {
		min-height: 480px;
	}
}

.kk-hero__img--placeholder {
	background: linear-gradient(135deg, var(--kk-navy), #2d3748);
}

.kk-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
	pointer-events: none;
}

.kk-hero__badge {
	position: absolute;
	top: 24px;
	left: 24px;
	z-index: 4;
	display: inline-block;
	padding: 0.35rem 0.65rem;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #FFFFFF;
	background: var(--kk-primary);
	border-radius: 8px;
	text-decoration: none;
}

.kk-hero__badge:hover {
	background: #1259a3;
	color: #FFFFFF;
	text-decoration: none;
}

.kk-hero__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 24px;
}

.kk-hero__date-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.kk-hero__date-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: #FFFFFF;
	flex-shrink: 0;
}

.kk-hero__date-icon svg {
	width: 12px;
	height: 12px;
}

.kk-hero__date {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.85);
}

.kk-hero__title {
	margin: 0;
	font-weight: 600;
	line-height: 1.35;
	color: #FFFFFF;
}

.kk-hero__item--main .kk-hero__title {
	font-size: 1.5rem;
}

.kk-hero__item--featured .kk-hero__title {
	font-size: 1.0625rem;
}

.kk-hero__item--compact .kk-hero__title {
	font-size: 0.875rem;
}

.kk-hero__title a {
	color: #FFFFFF;
	text-decoration: none;
	position: relative;
	z-index: 4;
}

.kk-hero__title a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

.kk-hero__excerpt {
	margin: 0.625rem 0 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kk-hero__excerpt--side {
	margin: 0.4rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
}

.kk-hero__item--featured .kk-post-meta--overlay,
.kk-hero__item--compact .kk-post-meta--overlay {
	margin-top: 0.45rem;
}

@media (max-width: 991px) {
	.kk-hero__grid {
		grid-template-columns: 1fr;
	}

	.kk-hero__side-bottom {
		grid-template-columns: 1fr 1fr;
	}

	.kk-hero__item--main .kk-hero__title {
		font-size: 1.25rem;
	}

	.kk-hero__content {
		padding: 20px;
	}

	.kk-hero__badge {
		top: 20px;
		left: 20px;
	}
}

@media (max-width: 575px) {
	.kk-hero__side-bottom {
		grid-template-columns: 1fr;
	}

	.kk-hero__item--featured,
	.kk-hero__item--compact {
		min-height: 200px;
	}
}

/* Post Meta Line
   ========================================================================== */

.kk-post-meta {
	font-size: 0.8125rem;
	line-height: 1.5;
}

.kk-post-meta__row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.kk-post-meta__row + .kk-post-meta__row {
	margin-top: 0.3rem;
}

.kk-post-meta__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
}

.kk-post-meta__icon {
	font-size: 12px;
	line-height: 1;
	flex-shrink: 0;
	width: 1em;
	text-align: center;
}

.kk-post-meta__sep {
	opacity: 0.65;
	padding: 0 0.1rem;
}

.kk-post-meta--overlay {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.625rem;
	color: #FFFFFF;
	position: relative;
	z-index: 4;
}

.kk-post-meta--overlay .kk-post-meta__icon {
	color: rgba(255, 255, 255, 0.88);
}

.kk-post-meta--list,
.kk-post-meta--default,
.kk-post-meta--stats {
	color: var(--kk-text-soft);
	margin-top: 0.35rem;
}

.kk-post-meta--list .kk-post-meta__icon,
.kk-post-meta--default .kk-post-meta__icon,
.kk-post-meta--stats .kk-post-meta__icon {
	color: var(--kk-text-soft);
}

.kk-post-meta--stats {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.kk-post-meta--compact {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--kk-text-soft);
	min-width: 0;
	margin-top: 0;
}

.kk-post-meta--compact .kk-post-meta__item {
	gap: 0.35rem;
}

.kk-post-meta--compact .kk-post-meta__icon {
	color: var(--kk-text-soft);
	font-size: 12px;
}

.kk-post-meta--compact-overlay {
	color: rgba(255, 255, 255, 0.92);
}

.kk-post-meta--compact-overlay .kk-post-meta__icon {
	color: rgba(255, 255, 255, 0.88);
}

.kk-cat-block__meta .kk-post-meta--compact {
	flex: 1 1 auto;
	min-width: 0;
}

.kk-cat-block__list-body .kk-post-meta--compact {
	margin-bottom: 0.25rem;
}

.kk-home-cat-t2__body .kk-post-meta--compact {
	margin-bottom: 0.35rem;
}

.kk-single__header .kk-post-meta--stats {
	margin-top: 0;
}

.kk-popular__featured-body .kk-post-meta--overlay {
	margin-top: 0.5rem;
}

.kk-popular__list-body .kk-post-meta--list,
.kk-popular__list-body .kk-post-meta--stats {
	margin-top: 0.2rem;
	margin-bottom: 0.15rem;
}

.kk-card__body .kk-post-meta--list {
	margin-bottom: 0.35rem;
}

@media (max-width: 991px) {
	.kk-cat-block__list-item {
		flex-direction: column;
	}

	.kk-cat-block__list-thumb {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 10;
	}
}

/* Section Headings — shared title + underline
   ========================================================================== */

.kkf-section-heading,
.kk-popular__header {
	margin-bottom: 1.25rem;
	padding-bottom: 0.875rem;
	border-bottom: 1px solid var(--kk-border);
}

.kkf-section-title,
.kk-popular__title {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--kk-text);
	position: relative;
	display: inline-block;
	padding-bottom: 0.5rem;
}

.kkf-section-title::after,
.kk-popular__title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: var(--kk-primary);
	border-radius: 2px;
}

.kkf-section-line {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 3px;
	background: var(--kk-primary);
	border-radius: 2px;
}

/* Popüler Yazılar — 3 kolon
   ========================================================================== */

.kk-popular {
	margin-bottom: 2.5rem;
}

.kk-popular__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) and (max-width: 1199px) {
	.kk-popular__grid {
		grid-template-columns: 1fr 1fr;
		align-items: stretch;
	}

	.kk-popular__featured-card,
	.kk-popular__list,
	.kk-home-ad--300x600 {
		height: auto;
		min-height: 0;
	}

	.kk-popular__ad {
		grid-column: 1 / -1;
		display: flex;
		justify-content: center;
	}

	.kk-popular__list-item {
		height: auto;
		min-height: 100px;
		padding: 1rem 1.25rem;
	}
}

@media (min-width: 1200px) {
	.kk-popular__grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) 300px;
		gap: 24px;
		align-items: stretch;
	}

	.kk-popular__featured,
	.kk-popular__list,
	.kk-popular__ad {
		height: 600px;
		min-height: 600px;
	}

	.kk-popular__featured-card,
	.kk-popular__list,
	.kk-home-ad--300x600 {
		height: 600px;
	}

	.kk-popular__list-item {
		height: 120px;
		min-height: 120px;
		max-height: 120px;
		padding: 0 16px;
	}

	.kk-popular__list-thumb {
		width: 88px;
		height: 66px;
	}
}

.kk-popular__featured {
	min-width: 0;
}

.kk-popular__featured-card {
	position: relative;
	height: 100%;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--kk-border);
	background: var(--kk-navy);
}

.kk-popular__featured-media {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.kk-popular__featured-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.kk-popular__featured-img--placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--kk-navy), #2d3748);
}

.kk-popular__featured-card:hover .kk-popular__featured-img {
	transform: scale(1.03);
}

.kk-popular__featured-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.82) 100%);
	pointer-events: none;
}

.kk-popular__featured-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 4;
	display: inline-block;
	padding: 0.3rem 0.65rem;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #FFFFFF;
	background: var(--kk-primary);
	border-radius: 8px;
	text-decoration: none;
}

.kk-popular__featured-badge:hover {
	color: #FFFFFF;
	text-decoration: none;
	background: #1259a3;
}

.kk-popular__featured-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 24px;
}

.kk-popular__featured-title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.35;
}

.kk-popular__featured-title a {
	color: #FFFFFF;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kk-popular__featured-title a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

.kk-popular__featured-excerpt {
	margin: 0 0 0.625rem;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kk-popular__stats {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.88);
}

.kk-popular__stat {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.kk-popular__stat svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.kk-popular__list {
	display: flex;
	flex-direction: column;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: 14px;
	overflow: hidden;
	min-width: 0;
}

.kk-popular__list-item {
	display: flex;
	align-items: center;
	gap: 12px;
	box-sizing: border-box;
	border-bottom: 1px solid var(--kk-border);
	flex-shrink: 0;
}

.kk-popular__list-item:last-child {
	border-bottom: none;
}

.kk-popular__list-thumb {
	flex-shrink: 0;
	width: 88px;
	height: 66px;
	border-radius: 8px;
	overflow: hidden;
}

.kk-popular__list-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.25s ease;
}

.kk-popular__list-img--placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--kk-bg-light);
}

.kk-popular__list-item:hover .kk-popular__list-img {
	opacity: 0.88;
}

.kk-popular__list-body {
	min-width: 0;
	flex: 1;
}

.kk-popular__list-date {
	display: block;
	font-size: 0.6875rem;
	color: var(--kk-text-soft);
	margin-bottom: 0.2rem;
}

.kk-popular__list-title {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
}

.kk-popular__list-title a {
	color: var(--kk-text);
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}

.kk-popular__list-excerpt {
	margin: 0.2rem 0 0;
	font-size: 0.75rem;
	line-height: 1.4;
	color: var(--kk-text-soft);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kk-popular__list-item:hover .kk-popular__list-title a {
	color: var(--kk-primary);
}

.kk-popular__ad {
	display: flex;
	min-width: 0;
}

.kk-home-ad--300x600 {
	width: 300px;
	max-width: 100%;
	height: 100%;
	margin-inline: auto;
}

@media (max-width: 767px) {
	.kk-popular__featured-card {
		height: 420px;
		min-height: 420px;
	}

	.kk-popular__featured,
	.kk-popular__list,
	.kk-popular__ad {
		height: auto;
		min-height: 0;
	}

	.kk-popular__list-item {
		height: auto;
		min-height: 0;
		max-height: none;
		padding: 1rem 1.25rem;
		align-items: flex-start;
	}

	.kk-home-ad--300x600 {
		height: 250px;
	}
}

.kk-home-ad--300x600 .kk-home-ad__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	height: 100%;
	border: 2px dashed var(--kk-border);
	border-radius: 10px;
	background: var(--kk-bg-light);
	color: var(--kk-text-soft);
	font-size: 0.875rem;
	text-align: center;
}

.kk-home-ad--300x600 .kk-home-ad__inner strong {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--kk-text-soft);
}

.kk-home-ad--300x600 .kk-home-ad__size--mobile {
	display: none;
}

@media (max-width: 767px) {
	.kk-home-ad--300x600 {
		height: 250px;
	}

	.kk-home-ad--300x600 .kk-home-ad__size--desktop {
		display: none;
	}

	.kk-home-ad--300x600 .kk-home-ad__size--mobile {
		display: inline;
	}
}

.kk-card--horizontal {
	flex-direction: row;
}

.kk-card--horizontal .kk-card__thumb {
	width: 120px;
	min-width: 120px;
	aspect-ratio: auto;
	align-self: stretch;
}

.kk-card--horizontal .kk-card__body {
	padding: 0.75rem;
}

.kk-card--horizontal .kk-card__title {
	font-size: 0.875rem;
}

@media (min-width: 576px) {
	.kk-card--horizontal .kk-card__thumb {
		width: 140px;
		min-width: 140px;
	}
}

/* List Layout (archive alternative)
   ========================================================================== */

.kk-list .kk-card {
	flex-direction: row;
}

.kk-list .kk-card__thumb {
	width: 200px;
	min-width: 200px;
	aspect-ratio: auto;
	align-self: stretch;
}

@media (max-width: 575px) {
	.kk-list .kk-card {
		flex-direction: column;
	}
	.kk-list .kk-card__thumb {
		width: 100%;
		min-width: 0;
		aspect-ratio: 16 / 10;
	}
}

/* Single Post
   ========================================================================== */

.kk-single {
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	box-shadow: var(--kk-shadow);
	padding: 1.25rem 1.5rem 1.5rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.kk-single {
		padding: 1.75rem 2rem 2rem;
	}
}

.kk-single__header {
	margin: 0 0 1.5rem;
	padding: 0 0 1.25rem;
	border-bottom: 1px solid var(--kk-border);
}

.kk-single__breadcrumb {
	margin: 0 0 1.25rem;
	padding: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--kk-text-soft);
}

.kk-single__breadcrumb #breadcrumbs,
.kk-single__breadcrumb .rank-math-breadcrumb,
.kk-single__breadcrumb .rank-math-breadcrumb p {
	margin: 0;
}

.kk-single__breadcrumb a {
	color: var(--kk-text-soft);
	text-decoration: none;
}

.kk-single__breadcrumb a:hover {
	color: var(--kk-primary);
}

.kk-single__breadcrumb .kk-breadcrumb__list {
	font-size: 0.8125rem;
}

.kk-single__breadcrumb .kk-breadcrumb__item span[aria-current='page'] {
	color: var(--kk-text-soft);
}

.kk-single__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 0;
	font-size: 0.875rem;
	color: var(--kk-text-soft);
}

.kk-single__header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 0.75rem;
}

.kk-single__header-top-right {
	flex-shrink: 0;
	margin-left: auto;
}

.kk-single__header-top .kk-single__review-badge {
	margin: 0;
}

.kk-single__header-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 0.65rem;
}

.kk-single__header-bottom-left {
	min-width: 0;
}

.kk-single__header-bottom-left .kk-post-meta--stats {
	margin-top: 0;
}

.kk-single__header-bottom-right {
	flex-shrink: 0;
	margin-left: auto;
}

.kk-single__publish-date {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--kk-text-soft);
	white-space: nowrap;
}

.kk-single__publish-date time {
	color: var(--kk-text-soft);
}

.kk-single__title {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: var(--kk-text);
}

@media (min-width: 768px) {
	.kk-single__title {
		font-size: 2rem;
	}
}

.kk-single__thumb {
	margin: 0 0 1.5rem;
	border-radius: var(--kk-radius-sm);
	overflow: hidden;
	border: 1px solid var(--kk-border);
}

.kk-single__ad--top {
	margin: 0 0 1.25rem;
}

.kk-single__thumb img {
	width: 100%;
	height: auto;
	display: block;
}

/* İçindekiler (TOC) */
.kk-toc {
	padding: 1rem 1.25rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-toc__title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--kk-text);
}

.kk-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kk-toc__item {
	margin: 0;
	padding: 0;
}

.kk-toc__item + .kk-toc__item {
	margin-top: 0.35rem;
}

.kk-toc__item--level-3 {
	padding-left: 1rem;
}

.kk-toc__link {
	display: block;
	font-size: 0.875rem;
	line-height: 1.45;
	color: var(--kk-text-soft);
	text-decoration: none;
	word-break: break-word;
	transition: color var(--kk-transition);
}

.kk-toc__link:hover,
.kk-toc__link:focus-visible {
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-single__content {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: var(--kk-text);
}

.kk-single__content > *:first-child {
	margin-top: 0;
}

.kk-single__content h2 {
	font-size: 1.375rem;
	margin-top: 2rem;
}

.kk-single__content h3 {
	font-size: 1.125rem;
	margin-top: 1.5rem;
}

.kk-single__content p {
	margin-bottom: 1.25rem;
}

.kk-single__content ul,
.kk-single__content ol {
	margin: 0 0 1.25rem 1.25rem;
	padding: 0;
	list-style: disc;
}

.kk-single__content li {
	margin-bottom: 0.375rem;
}

.kk-single__content blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 3px solid var(--kk-primary);
	background: var(--kk-bg-light);
	border-radius: 0 var(--kk-radius-sm) var(--kk-radius-sm) 0;
	color: var(--kk-text-soft);
}

.kk-single__content img {
	border-radius: var(--kk-radius-sm);
	margin-block: 1rem;
}

.kk-single__content a {
	color: var(--kk-primary);
}

.kk-single__pages {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid var(--kk-border);
	font-size: 0.875rem;
	color: var(--kk-text-soft);
}

.kk-single__pages a {
	margin-left: 0.375rem;
}

/* Etiketler */
.kk-single__section {
	margin-top: 1.5rem;
}

.kk-single__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--kk-border);
}

.kk-single__tags-label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--kk-text-soft);
}

.kk-single__tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kk-single__tags-list a {
	display: inline-block;
	padding: 0.25rem 0.625rem;
	font-size: 0.8125rem;
	color: var(--kk-text);
	background: var(--kk-bg-light);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius-sm);
	text-decoration: none;
}

.kk-single__tags-list a:hover {
	border-color: var(--kk-primary);
	color: var(--kk-primary);
}

/* Paylaş */
.single-share-box,
.kk-single__share {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	padding: 1rem 1.25rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.share-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-right: 10px;
	white-space: nowrap;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--kk-text);
	flex-shrink: 0;
}

.share-label i {
	font-size: 0.875rem;
	color: var(--kk-text-soft);
}

.share-buttons {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	flex: 1;
	min-width: 0;
}

.kk-single__share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	color: #FFFFFF;
	text-decoration: none;
	cursor: pointer;
	transition: opacity var(--kk-transition), transform var(--kk-transition);
}

.kk-single__share-btn:hover,
.kk-single__share-btn:focus-visible {
	opacity: 0.9;
	transform: translateY(-1px);
	text-decoration: none;
	color: #FFFFFF;
}

.kk-single__share-btn i {
	font-size: 0.9375rem;
	line-height: 1;
}

.kk-single__share-btn--facebook { background: #1877F2; }
.kk-single__share-btn--x { background: #000000; }
.kk-single__share-btn--linkedin { background: #0A66C2; }
.kk-single__share-btn--tumblr { background: #36465D; }
.kk-single__share-btn--pinterest { background: #E60023; }
.kk-single__share-btn--reddit { background: #FF4500; }
.kk-single__share-btn--vk { background: #0077FF; }
.kk-single__share-btn--odnoklassniki { background: #EE8208; }
.kk-single__share-btn--pocket { background: #EF4056; }
.kk-single__share-btn--messenger { background: #0084FF; }
.kk-single__share-btn--email { background: #6B7280; }
.kk-single__share-btn--print { background: #374151; }

body.dark-mode .kk-single__share-btn--x { background: #1F2937; border: 1px solid var(--kk-border); }

/* Önceki / Sonraki */
.kk-single__nav {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 0;
}

@media (min-width: 576px) {
	.kk-single__nav {
		grid-template-columns: 1fr 1fr;
	}
}

.kk-single__nav-link {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	box-shadow: var(--kk-shadow);
	text-decoration: none;
}

.kk-single__nav-link--next {
	text-align: right;
}

.kk-single__nav-link--empty {
	display: none;
}

@media (min-width: 576px) {
	.kk-single__nav-link--empty {
		display: block;
		visibility: hidden;
	}
}

.kk-single__nav-link:hover {
	border-color: var(--kk-primary);
	text-decoration: none;
}

.kk-single__nav-label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--kk-primary);
}

.kk-single__nav-title {
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.4;
	color: var(--kk-text);
}

/* Yazar */
.kk-single__author {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	padding: 1.25rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-single__author-main {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	flex: 1;
	min-width: 0;
}

.kk-single__author-img {
	display: block;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
}

.kk-single__author-label {
	margin: 0 0 0.2rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--kk-text-soft);
}

.kk-single__author-name {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--kk-primary);
	text-transform: uppercase;
}

.kk-single__author-bio {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--kk-text-soft);
}

.kk-single__author-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.5rem;
	width: 28px;
	height: 28px;
	color: var(--kk-text-soft);
	text-decoration: none;
}

.kk-single__author-social:hover {
	color: var(--kk-primary);
}

.kk-single__author-link {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem;
	font-size: 0.8125rem;
	color: var(--kk-text-soft);
	text-decoration: none;
	text-align: right;
}

.kk-single__author-link strong {
	color: var(--kk-primary);
	font-weight: 700;
	text-transform: uppercase;
}

.kk-single__author-link:hover {
	color: var(--kk-text);
	text-decoration: none;
}

.kk-single__author-link i {
	font-size: 0.75rem;
}

.kk-author__expertise,
.kk-author__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.65rem;
}

.kk-author__badge {
	font-size: 0.72rem;
	padding: 0.2rem 0.55rem;
}

.kk-author__socials {
	gap: 0.5rem;
}

.kk-author__social,
.kk-single__author-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--kk-badge-bg);
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-author__social:hover,
.kk-single__author-social:hover {
	opacity: 0.85;
}

.kk-single__editorial-note {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0.65rem 0 0;
	padding: 0.55rem 0.75rem;
	font-size: 0.82rem;
	line-height: 1.45;
	color: var(--kk-text-soft);
	background: var(--kk-badge-bg);
	border-radius: var(--kk-radius);
}

.kk-single__editorial-note i {
	color: var(--kk-primary);
}

.kk-single__freshness {
	display: grid;
	gap: 0.25rem;
	margin-top: 0.65rem;
	font-size: 0.84rem;
	color: var(--kk-text-soft);
}

.kk-single__freshness-item {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0;
}

.kk-single__freshness-label {
	font-weight: 600;
	color: var(--kk-text);
}

.kk-single__review-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0.55rem 0 0;
	padding: 0.35rem 0.65rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--kk-primary);
	background: var(--kk-badge-bg);
	border-radius: var(--kk-radius);
}

.kk-single__sources-title {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
}

.kk-single__sources-list {
	margin: 0;
	padding-left: 1.1rem;
}

.kk-single__sources-item + .kk-single__sources-item {
	margin-top: 0.35rem;
}

.kk-single__sources-item a {
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-single__sources-item a:hover {
	text-decoration: underline;
}

.kk-single__trust-info {
	padding: 0.9rem 1rem;
	background: var(--kk-badge-bg);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-single__trust-info-lead {
	margin: 0 0 0.5rem;
	font-size: 0.88rem;
	font-weight: 600;
}

.kk-single__trust-info-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kk-single__trust-info-item {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	font-size: 0.84rem;
	line-height: 1.45;
	color: var(--kk-text-soft);
}

.kk-single__trust-info-item + .kk-single__trust-info-item {
	margin-top: 0.35rem;
}

.kk-single__trust-info-item i {
	margin-top: 0.15rem;
	color: var(--kk-primary);
}

.kk-author-hero {
	margin-bottom: 1.5rem;
	padding: 1.25rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-author-hero__main {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.kk-author-hero__img {
	display: block;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
}

.kk-author-hero__label {
	margin: 0 0 0.2rem;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--kk-text-soft);
}

.kk-author-hero__name {
	margin: 0 0 0.35rem;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	line-height: 1.2;
}

.kk-author-hero__role {
	margin: 0 0 0.5rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--kk-primary);
}

.kk-author-hero__bio {
	margin: 0 0 0.75rem;
	color: var(--kk-text-soft);
	line-height: 1.55;
}

.kk-author-hero__stats {
	margin-top: 0.75rem;
	font-size: 0.88rem;
	color: var(--kk-text-soft);
}

.kk-author-hero__categories {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	margin-top: 0.85rem;
}

.kk-author-hero__categories-label {
	font-size: 0.82rem;
	color: var(--kk-text-soft);
}

@media (max-width: 640px) {
	.kk-author-hero__main {
		flex-direction: column;
	}
}

.kk-glossary-info {
	margin-top: 0.75rem;
	padding: 0.75rem 0.9rem;
	background: var(--kk-badge-bg);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

/* Ekonomi Sözlüğü — tekil yazı üst alanı
   ========================================================================== */

.kk-glossary-breadcrumb {
	margin: 0 0 1.25rem;
	padding: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--kk-text-soft);
}

.kk-glossary-breadcrumb #breadcrumbs,
.kk-glossary-breadcrumb .rank-math-breadcrumb,
.kk-glossary-breadcrumb .rank-math-breadcrumb p {
	margin: 0;
}

.kk-glossary-breadcrumb a {
	color: var(--kk-text-soft);
	text-decoration: none;
}

.kk-glossary-breadcrumb a:hover {
	color: var(--kk-primary);
}

.kk-glossary-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-bottom: 0.75rem;
}

.kk-glossary-header__meta-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem;
	font-size: 0.875rem;
	color: var(--kk-text-soft);
}

.kk-glossary-header__meta-left time {
	color: var(--kk-text-soft);
}

.kk-glossary-header__meta-right {
	flex-shrink: 0;
	margin-left: auto;
}

.kk-glossary-header__pill {
	border-radius: 999px;
	padding: 0.2rem 0.65rem;
}

.kk-glossary-header__review-badge {
	margin: 0;
	padding: 0.35rem 0.75rem;
	color: var(--kk-primary);
	background: color-mix(in srgb, var(--kk-primary) 8%, transparent);
	border: 1px solid color-mix(in srgb, var(--kk-primary) 28%, var(--kk-border));
	border-radius: 999px;
	white-space: nowrap;
}

.kk-glossary-header__summary {
	margin: 0.75rem 0 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--kk-text-soft);
}

.kk-glossary-header__facts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	margin: 0.65rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: #6b7280;
}

.kk-glossary-header__sep {
	color: #6b7280;
	opacity: 0.65;
	user-select: none;
}

.kk-single--glossary .kk-single__header .kk-post-meta--stats {
	margin-top: 0.65rem;
}

@media (max-width: 640px) {
	.kk-single__header-top {
		flex-direction: column;
		align-items: flex-start;
	}

	.kk-single__header-top-right {
		margin-left: 0;
		align-self: flex-end;
	}

	.kk-single__header-bottom {
		width: 100%;
	}

	.kk-single__header-bottom-right {
		margin-left: auto;
		align-self: flex-end;
	}
}

@media (max-width: 640px) {
	.kk-glossary-header__top {
		flex-direction: column;
		align-items: flex-start;
	}

	.kk-glossary-header__meta-right {
		margin-left: 0;
	}

	.kk-glossary-header__facts {
		row-gap: 0.25rem;
	}
}

.kk-glossary-info__list {
	display: grid;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kk-glossary-info__item {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	font-size: 0.84rem;
}

.kk-glossary-info__label {
	font-weight: 600;
	color: var(--kk-text);
}

.kk-glossary-info__value {
	color: var(--kk-text-soft);
}

.kk-glossary-block__title {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
}

.kk-glossary-term-list {
	margin: 0;
	padding-left: 1.1rem;
}

.kk-glossary-term-list__item + .kk-glossary-term-list__item {
	margin-top: 0.35rem;
}

.kk-glossary-term-list__item a {
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-glossary-term-list__item a:hover {
	text-decoration: underline;
}

.kk-glossary-opposite {
	padding: 0.75rem 0;
}

.kk-glossary-opposite + .kk-glossary-opposite {
	border-top: 1px solid var(--kk-border);
}

.kk-glossary-opposite__current,
.kk-glossary-opposite__term {
	margin: 0;
	font-weight: 600;
}

.kk-glossary-opposite__arrow {
	margin: 0.25rem 0;
	color: var(--kk-primary);
	text-align: center;
}

.kk-glossary-concept + .kk-glossary-concept {
	margin-top: 0.85rem;
}

.kk-glossary-concept__label {
	margin: 0 0 0.35rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--kk-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.kk-glossary-concept__value {
	margin: 0;
}

.kk-glossary-nav__title {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
}

.kk-glossary-nav__links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.kk-glossary-nav__link {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0.75rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	text-decoration: none;
	color: inherit;
}

.kk-glossary-nav__link--next {
	text-align: right;
}

.kk-glossary-nav__label {
	font-size: 0.78rem;
	color: var(--kk-text-soft);
}

.kk-glossary-nav__term {
	font-weight: 600;
	color: var(--kk-primary);
}

.kk-glossary-archive-intro {
	margin: 0.375rem 0 1rem;
}

.kk-glossary-archive-intro__title {
	margin: 0 0 0.375rem;
	font-size: 1.1rem;
}

.kk-glossary-archive-intro__desc {
	margin: 0;
	color: var(--kk-text-soft);
}

.kk-glossary-alpha {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 1.25rem;
}

.kk-glossary-alpha__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	padding: 0.25rem 0.45rem;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--kk-primary);
	background: var(--kk-badge-bg);
	border-radius: var(--kk-radius);
}

.kk-glossary-alpha__link.is-active,
.kk-glossary-alpha__link:hover {
	background: var(--kk-primary);
	color: #fff;
}

@media (max-width: 640px) {
	.kk-glossary-nav__links {
		grid-template-columns: 1fr;
	}
}

.kk-bank-directory__intro {
	margin-bottom: 1.25rem;
}

.kk-bank-directory__desc {
	margin: 0;
	color: var(--kk-text-soft);
}

.kk-bank-directory__section {
	margin-bottom: 2rem;
}

.kk-bank-directory__section-title {
	margin: 0 0 1rem;
	font-size: 1.15rem;
}

.kk-bank-directory__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1rem;
}

.kk-bank-directory__empty {
	color: var(--kk-text-soft);
}

.kk-bank-alpha {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 1.25rem;
}

.kk-bank-alpha__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	padding: 0.25rem 0.45rem;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--kk-primary);
	background: var(--kk-badge-bg);
	border-radius: var(--kk-radius);
}

.kk-bank-alpha__link.is-active,
.kk-bank-alpha__link:hover {
	background: var(--kk-primary);
	color: #fff;
}

.kk-bank-card {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-bank-card__logo {
	margin-bottom: 0.75rem;
}

.kk-bank-card__logo-img {
	max-height: 48px;
	width: auto;
}

.kk-bank-card__title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
}

.kk-bank-card__desc {
	margin: 0 0 0.75rem;
	font-size: 0.88rem;
	color: var(--kk-text-soft);
}

.kk-bank-card__meta {
	margin: 0 0 0.75rem;
	font-size: 0.82rem;
	color: var(--kk-text-soft);
}

.kk-bank-card__btn {
	align-self: flex-start;
}

.kk-bank-profile__hero {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1.25rem;
	padding: 1.25rem;
	background: var(--kk-badge-bg);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-bank-profile__logo-img {
	max-height: 72px;
	width: auto;
}

.kk-bank-profile__title {
	margin: 0 0 0.35rem;
}

.kk-bank-profile__tagline {
	margin: 0 0 0.5rem;
	color: var(--kk-text-soft);
}

.kk-bank-profile__campaigns {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--kk-primary);
}

.kk-bank-info {
	margin-bottom: 1.5rem;
	padding: 0.9rem 1rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-bank-info__list {
	display: grid;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kk-bank-info__item {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	font-size: 0.88rem;
}

.kk-bank-info__label {
	font-weight: 600;
}

.kk-bank-info__link {
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-bank-info__link:hover {
	text-decoration: underline;
}

.kk-bank-profile__section-title {
	margin: 0 0 0.85rem;
	font-size: 1.1rem;
}

.kk-bank-profile__about {
	margin-bottom: 1.5rem;
}

.kk-bank-related__grid {
	display: grid;
	gap: 1rem;
}

@media (max-width: 640px) {
	.kk-bank-profile__hero {
		flex-direction: column;
		align-items: flex-start;
	}
}

.kk-bank-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-bottom: 1rem;
}

.kk-bank-tabs__btn {
	padding: 0.4rem 0.75rem;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--kk-text-soft);
	background: var(--kk-badge-bg);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	cursor: pointer;
}

.kk-bank-tabs__btn.is-active,
.kk-bank-tabs__btn:hover {
	color: #fff;
	background: var(--kk-primary);
	border-color: var(--kk-primary);
}

.kk-bank-tabs__panel[hidden] {
	display: none;
}

.kk-bank-tabs__empty {
	color: var(--kk-text-soft);
}

.kk-bank-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kk-bank-topics__link {
	display: inline-block;
	padding: 0.35rem 0.65rem;
	font-size: 0.84rem;
	text-decoration: none;
	color: var(--kk-primary);
	background: var(--kk-badge-bg);
	border-radius: var(--kk-radius);
}

.kk-bank-topics__link:hover {
	background: var(--kk-primary);
	color: #fff;
}

.kk-bank-post-box {
	display: flex;
	gap: 0.85rem;
	margin-top: 0.85rem;
	padding: 0.85rem 1rem;
	background: var(--kk-badge-bg);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-bank-post-box__logo-img {
	max-height: 40px;
	width: auto;
}

.kk-bank-post-box__label {
	margin: 0 0 0.2rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--kk-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.kk-bank-post-box__name {
	margin: 0 0 0.35rem;
	font-weight: 600;
}

.kk-bank-post-box__desc {
	margin: 0 0 0.5rem;
	font-size: 0.88rem;
	color: var(--kk-text-soft);
}

.kk-bank-post-box__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.kk-bank-post-box__link {
	font-size: 0.84rem;
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-bank-post-box__link:hover {
	text-decoration: underline;
}

.kk-bank-directory__search {
	margin-bottom: 1rem;
}

.kk-bank-directory__search-input {
	width: 100%;
	max-width: 420px;
	padding: 0.55rem 0.75rem;
	font-size: 0.92rem;
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	background: var(--kk-card);
	color: inherit;
}

.kk-bank-card[hidden] {
	display: none;
}

.kk-bank-notice {
	margin: 1rem 0;
	padding: 0.85rem 1rem;
	background: var(--kk-badge-bg);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-bank-notice p {
	margin: 0;
	color: var(--kk-text-soft);
}

.kk-bank-notice--no-profiles p {
	color: var(--kk-text);
	font-weight: 500;
}

@media (max-width: 640px) {
	.kk-bank-post-box {
		flex-direction: column;
	}
}

/* Yorumlar */
.kk-single__comments {
	margin-bottom: 0;
}

.kk-single__comments-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.9rem 1.25rem;
	border: none;
	border-radius: var(--kk-radius);
	background: var(--kk-navy);
	color: #FFFFFF;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: opacity var(--kk-transition);
}

body.dark-mode .kk-single__comments-toggle {
	background: #111827;
}

.kk-single__comments-toggle:hover,
.kk-single__comments-toggle:focus-visible {
	opacity: 0.92;
}

.kk-single__comments-toggle-text {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.kk-single__comments-chevron {
	transition: transform var(--kk-transition);
}

.kk-single__comments-toggle[aria-expanded="true"] .kk-single__comments-chevron {
	transform: rotate(180deg);
}

.kk-single__comments-hint {
	margin: 0.75rem 0 0;
	font-size: 0.875rem;
	color: var(--kk-text-soft);
}

.kk-single__comments-panel {
	margin-top: 1rem;
	padding: 1.25rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-comments__title {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--kk-text);
}

.kk-comments__empty,
.kk-comments__closed {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	color: var(--kk-text-soft);
}

.kk-comments__list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.kk-comments__item {
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--kk-border);
}

.kk-comments__item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.kk-comments__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
}

.kk-comments__avatar {
	border-radius: 50%;
}

.kk-comments__author {
	display: block;
	font-style: normal;
	font-weight: 600;
	color: var(--kk-text);
}

.kk-comments__date {
	display: block;
	font-size: 0.75rem;
	color: var(--kk-text-soft);
}

.kk-comments__content {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--kk-text);
}

.kk-comments__content p {
	margin: 0 0 0.5rem;
}

.kk-comments__reply a {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-comments__notes {
	margin: 0 0 1rem;
	font-size: 0.8125rem;
	color: var(--kk-text-soft);
}

.kk-comments__form .kk-comments__field {
	margin: 0 0 1rem;
}

.kk-comments__form label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--kk-text);
}

.kk-comments__form .required {
	color: #DC2626;
}

.kk-comments__form input[type="text"],
.kk-comments__form input[type="email"],
.kk-comments__form input[type="url"],
.kk-comments__form textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius-sm);
	background: var(--kk-bg);
	color: var(--kk-text);
	font-family: inherit;
	font-size: 0.875rem;
}

.kk-comments__form input:focus,
.kk-comments__form textarea:focus {
	outline: none;
	border-color: var(--kk-primary);
}

.kk-comments__form .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--kk-text-soft);
}

.kk-comments__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: var(--kk-navy);
	color: #FFFFFF;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: opacity var(--kk-transition);
}

body.dark-mode .kk-comments__submit {
	background: #111827;
}

.kk-comments__submit:hover,
.kk-comments__submit:focus-visible {
	opacity: 0.9;
}

@media (min-width: 576px) {
	.kk-comments__form .kk-comments__field--half {
		display: inline-block;
		width: calc(50% - 0.5rem);
		vertical-align: top;
	}

	.kk-comments__form .kk-comments__field--half:first-of-type {
		margin-right: 1rem;
	}
}

@media (max-width: 767px) {
	.kk-single__author {
		flex-direction: column;
		align-items: flex-start;
	}

	.kk-single__author-link {
		text-align: left;
	}
}

/* Benzer yazılar */
.kk-single__related {
	margin-bottom: 2rem;
}

.kk-single__related-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid var(--kk-primary);
	color: var(--kk-navy);
}

.kk-single__related .kk-card--related .kk-card__title {
	margin-bottom: 0.35rem;
}

.kk-single__related .kk-related-card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--kk-text-soft);
	margin: 0 0 0.625rem;
}

.kk-single__related .kk-card--related .kk-post-meta--stats {
	margin-top: auto;
}

/* Sidebar
   ========================================================================== */

.kk-sidebar {
	min-width: 0;
}

.kk-widget {
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	box-shadow: var(--kk-shadow);
	padding: 1.25rem;
	margin-bottom: 1.25rem;
}

.kk-widget__title {
	font-size: 0.9375rem;
	font-weight: 700;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--kk-primary);
	color: var(--kk-navy);
}

.kk-widget ul li {
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--kk-border);
	font-size: 0.875rem;
}

.kk-widget ul li:last-child {
	border-bottom: none;
}

.kk-widget ul li a {
	color: var(--kk-text);
	text-decoration: none;
}

.kk-widget ul li a:hover {
	color: var(--kk-primary);
}

/* Pagination
   ========================================================================== */

.kk-pagination {
	display: flex;
	justify-content: center;
	gap: 0.375rem;
	margin-top: 2rem;
}

.kk-pagination a,
.kk-pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--kk-text);
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius-sm);
	text-decoration: none;
}

.kk-pagination a:hover {
	border-color: var(--kk-primary);
	color: var(--kk-primary);
}

.kk-pagination .current {
	background: var(--kk-primary);
	border-color: var(--kk-primary);
	color: #fff;
}

/* Footer
   ========================================================================== */

.kk-footer {
	background: var(--kk-footer-bg);
	color: var(--kk-footer-text);
	padding-block: 2.5rem 0;
	margin-top: auto;
	border-top: 1px solid var(--kk-footer-border);
}

.kk-footer a {
	color: var(--kk-footer-text);
	text-decoration: none;
	transition: color var(--kk-transition);
}

.kk-footer a:hover {
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-footer__grid {
	display: grid;
	gap: 2rem;
	margin-bottom: 2rem;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.kk-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kk-footer__col--primary {
		grid-column: 1 / -1;
	}
}

@media (min-width: 1024px) {
	.kk-footer__grid {
		grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
		align-items: start;
	}

	.kk-footer__col--primary {
		grid-column: auto;
	}
}

.kk-footer__col {
	min-width: 0;
}

.kk-footer__col--primary {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.kk-footer__brand-block {
	min-width: 0;
}

.kk-footer__tags-block {
	min-width: 0;
}

.kk-footer__title {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--kk-footer-heading);
	margin: 0 0 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.kk-footer__logo {
	height: var(--kk-logo-height);
	line-height: 0;
	margin-bottom: 1rem;
}

.kk-footer__logo > a,
.kk-footer__logo .custom-logo-link {
	display: block;
	height: var(--kk-logo-height);
}

.kk-footer__logo img,
.kk-footer__logo-img {
	display: block;
	height: var(--kk-logo-height);
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.kk-footer__logo--themed .kk-footer__logo-img--dark {
	display: none;
}

body.dark-mode .kk-footer__logo--themed .kk-footer__logo-img--light {
	display: none;
}

body.dark-mode .kk-footer__logo--themed .kk-footer__logo-img--dark {
	display: block;
}

.kk-footer__brand {
	display: inline-flex;
	align-items: baseline;
	gap: 0.125rem;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.kk-footer__brand-primary {
	color: var(--kk-primary);
}

.kk-footer__brand-secondary {
	color: var(--kk-footer-heading);
}

.kk-footer__desc {
	font-size: 0.8125rem;
	line-height: 1.65;
	margin: 0 0 1.25rem;
}

.kk-footer__social {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kk-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: var(--kk-primary);
	color: #FFFFFF;
}

.kk-footer__social a:hover {
	background: var(--kk-primary-dark, #1D4ED8);
	color: #FFFFFF;
}

.kk-footer__social svg {
	width: 15px;
	height: 15px;
}

.kk-footer__posts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.kk-footer__post {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.kk-footer__post-thumb {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: var(--kk-radius-sm);
	overflow: hidden;
}

.kk-footer__post-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kk-footer__post-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--kk-footer-tag-bg);
}

.kk-footer__post-body {
	min-width: 0;
}

.kk-footer__post-title {
	display: block;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--kk-footer-heading);
	line-height: 1.4;
	margin-bottom: 0.25rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kk-footer__post-title:hover {
	color: var(--kk-primary);
}

.kk-footer__post-date {
	font-size: 0.75rem;
	color: var(--kk-footer-text);
}

.kk-footer__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.kk-footer__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 8px 14px;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1;
	color: var(--kkf-text-color);
	background: transparent;
	border: 1px solid rgba(var(--kkf-primary-rgb), 0.35);
	border-radius: 6px;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.kk-footer__tag:hover,
.kk-footer__tag:focus-visible {
	color: var(--kkf-primary);
	background: transparent;
	border-color: var(--kkf-primary);
	text-decoration: none;
}

.kk-footer__cat-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kk-footer__cat-list li {
	border-bottom: 1px solid var(--kk-footer-border);
}

.kk-footer__cat-list li:last-child {
	border-bottom: none;
}

.kk-footer__cat-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.625rem 0;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--kk-footer-heading);
}

.kk-footer__cat-list a:hover {
	color: var(--kk-primary);
}

.kk-footer__cat-list svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: var(--kk-footer-text);
}

.kk-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	padding-block: 1.25rem;
	border-top: 1px solid var(--kk-footer-border);
}

.kk-footer__copy {
	margin: 0;
	font-size: 0.8125rem;
}

.kk-footer__legal {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kk-footer__legal a {
	font-size: 0.8125rem;
}

@media (max-width: 767px) {
	.kk-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.kk-footer__legal {
		gap: 0.75rem 1rem;
	}
}

/* 404 Page
   ========================================================================== */

.kk-404-page {
	padding-block: 1.5rem 3rem;
}

.kk-404-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: center;
	margin-bottom: 3rem;
}

.kk-404-hero__code {
	margin: 0 0 0.5rem;
	font-size: clamp(4.5rem, 10vw, 7.5rem);
	font-weight: 800;
	line-height: 1;
	color: var(--kk-primary);
	letter-spacing: -0.02em;
}

.kk-404-hero__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: var(--kk-text);
}

.kk-404-hero__text {
	margin: 0 0 1.5rem;
	max-width: 34rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--kk-text-soft);
}

.kk-404-hero__search {
	max-width: 100%;
	margin-inline: 0;
}

.kk-404-hero__search-input {
	flex: 1;
	min-width: 0;
}

.kk-404-hero__home {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-top: 1.25rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-404-hero__home:hover {
	text-decoration: underline;
}

.kk-404-hero__visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.kk-404-illus {
	width: 100%;
	max-width: 520px;
	height: auto;
}

.kk-404-hero__img {
	width: 100%;
	max-width: 520px;
	height: auto;
	object-fit: contain;
	border-radius: var(--kk-radius);
}

.kk-404-links {
	margin-bottom: 1rem;
}

.kk-404-links__title {
	margin: 0 0 1.75rem;
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	color: var(--kk-text);
}

.kk-404-links__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.kk-404-links__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1.5rem 1rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	box-shadow: var(--kk-shadow);
	text-decoration: none;
	transition: border-color var(--kk-transition), box-shadow var(--kk-transition), transform var(--kk-transition);
}

.kk-404-links__card:hover,
.kk-404-links__card:focus-visible {
	border-color: var(--kk-primary);
	box-shadow: 0 8px 24px rgba(21, 108, 196, 0.12);
	transform: translateY(-2px);
}

.kk-404-links__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	font-size: 1.5rem;
	color: var(--kk-primary);
}

.kk-404-links__card-title {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--kk-primary);
	line-height: 1.35;
}

.kk-404-links__card-desc {
	display: block;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--kk-text-soft);
}

@media (max-width: 991px) {
	.kk-404-hero {
		grid-template-columns: 1fr;
	}

	.kk-404-hero__visual {
		order: -1;
	}

	.kk-404-links__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.kk-404-links__grid {
		grid-template-columns: 1fr;
	}
}

/* 404 & Search (empty state)
   ========================================================================== */

.kk-empty {
	text-align: center;
	padding: 3rem 1rem;
	background: var(--kk-card);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-empty__title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.kk-empty__text {
	color: var(--kk-text-soft);
	margin-bottom: 1.5rem;
}

.kk-search-form {
	display: flex;
	gap: 0.5rem;
	max-width: 480px;
	margin-inline: auto;
}

.kk-search-form input[type="search"] {
	flex: 1;
	padding: 0.625rem 1rem;
	font-size: 0.9375rem;
	font-family: inherit;
	color: var(--kk-text);
	background: var(--kk-bg);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius-sm);
}

.kk-search-form input[type="search"]:focus {
	outline: none;
	border-color: var(--kk-primary);
}

.kk-search-form button {
	padding: 0.625rem 1.25rem;
	font-size: 0.9375rem;
	font-weight: 500;
	font-family: inherit;
	color: #fff;
	background: var(--kk-primary);
	border: none;
	border-radius: var(--kk-radius-sm);
	cursor: pointer;
}

.kk-search-form button:hover {
	background: #1259a3;
}

/* Archive Header
   ========================================================================== */

.kk-archive-header {
	margin: 0 0 1.5rem;
	padding: 1.5rem;
	background: var(--kk-bg-light);
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
}

.kk-archive-header__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.25rem;
}

.kk-archive-header__desc {
	font-size: 0.9375rem;
	color: var(--kk-text-soft);
	margin: 0.375rem 0 0;
}

/* Kategori alt SEO açıklama
   ========================================================================== */

.kk-container--category-bottom-seo {
	max-width: var(--kk-container);
}

.kk-category-bottom-seo {
	margin: 0 0 2rem;
	padding: 1.75rem;
	border: 1px solid var(--kk-border);
	border-radius: var(--kk-radius);
	background: var(--kk-bg-light);
	overflow-wrap: anywhere;
	word-break: break-word;
	font-size: 0.9375rem;
	color: var(--kk-text);
}

.kk-category-bottom-seo h2,
.kk-category-bottom-seo h3 {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
	line-height: 1.35;
	color: var(--kk-text);
}

.kk-category-bottom-seo h3 {
	font-size: 1.0625rem;
}

.kk-category-bottom-seo h2 + p,
.kk-category-bottom-seo h3 + p {
	margin-top: 0;
}

.kk-category-bottom-seo p {
	margin: 0 0 1rem;
	line-height: 1.7;
}

.kk-category-bottom-seo p:last-child,
.kk-category-bottom-seo ul:last-child,
.kk-category-bottom-seo ol:last-child {
	margin-bottom: 0;
}

.kk-category-bottom-seo ul,
.kk-category-bottom-seo ol {
	margin: 0 0 1rem;
	padding-left: 1.25rem;
}

.kk-category-bottom-seo li + li {
	margin-top: 0.35rem;
}

.kk-category-bottom-seo a {
	color: var(--kk-primary);
	text-decoration: none;
}

.kk-category-bottom-seo a:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.kk-category-bottom-seo {
		padding: 1.25rem;
	}
}

/* Utilities
   ========================================================================== */

.kk-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.kk-icon-sun,
.kk-icon-moon {
	display: none;
}

body:not(.dark-mode) .kk-icon-moon,
body.dark-mode .kk-icon-sun {
	display: block;
}

/* -------------------------------------------------------------------------
   KKF özel görsel boyutları — object-fit / aspect-ratio
   ------------------------------------------------------------------------- */

.kkf-card__media {
	overflow: hidden;
}

.kkf-card__media > a {
	display: block;
	width: 100%;
	height: 100%;
}

.kkf-card__image,
.kkf-post-image,
.kkf-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kkf-post-image--placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: var(--kk-border);
}

.kk-card__thumb.kkf-card__media {
	aspect-ratio: 16 / 9;
}

.kk-single__thumb.kkf-card__media {
	aspect-ratio: 900 / 520;
}

.kk-single__thumb.kkf-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
