/**
 * Sabit tonlar (kart kenarı, gölge): Özelleştirici --click-* ile uyumlu.
 * İnce ayar için bu :root bloğunu veya Görünüm → Özelleştir → Tema renkleri kullanın.
 */
:root {
	--click-text: #ffffff;
	--click-text-muted: #e0e0e0;
	--click-card-elevated: #0a0a0a;
	--click-border-gold-soft: rgba(212, 175, 55, 0.28);
	--click-border-gold: rgba(212, 175, 55, 0.45);
	--click-glow-gold: 0 0 28px rgba(255, 215, 0, 0.18);
	--click-hero-article-bg: rgba(18, 18, 18, 0.82);
}

body {
	font-family: Arial, sans-serif;
	background: linear-gradient(135deg, var(--click-body-start), var(--click-body-end));
	color: var(--click-text);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-x: clip;
}

.navbar {
	background: var(--click-nav-bg);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), inset 0 -1px 0 var(--click-border-gold-soft);
}

.navbar > .container {
	justify-content: flex-start;
	align-items: center;
}

/* Özel logo / site adı: sol üst, menü sağda */
a.custom-logo-link.navbar-brand,
.navbar .navbar-brand {
	flex: 0 0 auto;
	margin-right: 1rem;
	margin-left: 0;
	align-self: center;
}

.navbar-brand img,
.custom-logo-link img {
	max-height: 44px;
	height: auto;
	width: auto;
	display: block;
}

.nav-link {
	color: var(--click-text) !important;
	font-weight: 500;
}

.nav-link:hover {
	color: var(--click-primary) !important;
}

.hero-section {
	background: linear-gradient(180deg, var(--click-hero-start), var(--click-hero-end));
	padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(3rem, 10vw, 6rem);
	text-align: center;
	color: var(--click-text);
	position: relative;
}

.hero-section h1 {
	font-size: clamp(1.65rem, 4vw + 1rem, 3rem);
	font-weight: bold;
	text-shadow: 0 0 32px rgba(255, 215, 0, 0.12), 2px 4px 12px rgba(0, 0, 0, 0.65);
	line-height: 1.15;
	margin-bottom: 0;
}

.hero-section h1 .hero-title-line {
	display: block;
}

.hero-section .hero-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.hero-section .hero-cta .btn {
	font-weight: bold;
	padding: 12px 28px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	min-width: 140px;
}

.hero-section .hero-cta .btn-hero-signup {
	background: var(--click-btn-secondary-bg);
	color: #0a0a0a;
	border: 2px solid var(--click-btn-secondary-bg);
}

.hero-section .hero-cta .btn-hero-signup:hover {
	background: var(--click-btn-secondary-hover);
	border-color: var(--click-btn-secondary-hover);
	color: #000000;
}

.hero-section .hero-cta .btn-hero-login {
	background: transparent;
	color: var(--click-btn-login-text);
	border: 2px solid var(--click-primary);
	box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.06);
}

.hero-section .hero-cta .btn-hero-login:hover {
	background: rgba(212, 175, 55, 0.12);
	border-color: var(--click-primary-hover);
	color: var(--click-btn-login-text-hover);
	box-shadow: var(--click-glow-gold);
}

@media (max-width: 575.98px) {
	.hero-section .hero-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-section .hero-cta .btn {
		flex: 1 1 auto;
		width: 100%;
		max-width: 22rem;
		margin-left: auto;
		margin-right: auto;
		min-width: 0;
		padding: 0.65rem 1rem;
	}
}

.hero-section .hero-intro {
	font-size: clamp(1rem, 2.4vw, 1.25rem);
	width: 100%;
	max-width: 100%;
	margin: 1.25rem auto;
	box-sizing: border-box;
}

.hero-section .hero-intro p {
	font-size: inherit;
	margin-bottom: 0.75em;
}

/* Özelleştirici: Hero makale / HTML bloğu — alt .container ile aynı genişlik */
.hero-section .hero-article {
	margin: 1.75rem auto 0;
	width: 100%;
	max-width: 100%;
	padding: 1.25rem 1.5rem;
	text-align: left;
	font-size: 16px;
	line-height: 1.65;
	color: var(--click-text);
	background: var(--click-hero-article-bg);
	border: 1px solid var(--click-border-gold);
	border-radius: 12px;
	box-sizing: border-box;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), var(--click-glow-gold);
}

.hero-section .hero-article > :first-child {
	margin-top: 0;
}

.hero-section .hero-article > :last-child {
	margin-bottom: 0;
}

.hero-section .hero-article a {
	color: var(--click-primary-hover);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.hero-section .hero-article a:hover {
	color: var(--click-text);
}

.hero-section .hero-article h2,
.hero-section .hero-article h3,
.hero-section .hero-article h4 {
	color: var(--click-primary);
	font-size: 1.25rem;
	margin: 1rem 0 0.5rem;
}

.hero-section .hero-article ul,
.hero-section .hero-article ol {
	margin: 0.5rem 0;
	padding-left: 1.25rem;
}

.btn-primary {
	background: var(--click-primary);
	border: none;
	padding: 10px 20px;
	font-weight: bold;
	color: #0a0a0a !important;
}

.btn-primary:hover {
	background: var(--click-primary-hover);
	color: #000000 !important;
}

.btn-secondary {
	background: var(--click-btn-secondary-bg);
	border: none;
	padding: 10px 20px;
	font-weight: bold;
	color: #0a0a0a !important;
}

.btn-secondary:hover {
	background: var(--click-btn-secondary-hover);
	color: #000000 !important;
}

.section-box,
.post-card {
	background: var(--click-section-bg);
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 20px;
	border: 1px solid var(--click-border-gold-soft);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.section-box h1,
.section-box h1.entry-title,
.section-box > .entry-header .entry-title {
	color: var(--click-primary);
	margin-bottom: 1rem;
	font-size: clamp(1.35rem, 4.2vw, 2rem);
	line-height: 1.2;
	font-weight: 700;
}

/* Sayfa başlığı (Hakkımızda vb.): içerikten ince çizgi ile ayrım */
.section-box__page-header {
	margin: 0 0 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--click-border-gold-soft);
}

.section-box__page-header .entry-title {
	margin: 0;
	color: var(--click-primary);
	font-size: clamp(1.35rem, 4.2vw, 2rem);
	line-height: 1.2;
	font-weight: 700;
}

.section-box > h2 {
	color: var(--click-primary);
	font-size: clamp(1.35rem, 2.8vw, 1.85rem);
	margin-bottom: 0.75rem;
}

#comments.section-box > h2,
#comments.section-box > h2.h4 {
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.post-card h2 {
	word-break: break-word;
}

.post-card h2 a {
	color: var(--click-primary);
	font-size: clamp(1.1rem, 3.2vw, 1.75rem);
	line-height: 1.25;
	margin-bottom: 15px;
	text-decoration: none;
}

.post-card h2 a:hover {
	color: var(--click-primary-hover);
}

.section-box p,
.post-card .entry-summary {
	font-size: 16px;
	line-height: 1.6;
	color: var(--click-text-muted);
}

.site-main .text-white-50 {
	color: rgba(224, 224, 224, 0.72) !important;
}

.site-main a.text-white-50:hover {
	color: var(--click-primary-hover) !important;
}

.entry-content a {
	color: var(--click-primary);
}

.entry-content a:hover {
	color: var(--click-primary-hover);
}

.section-box ul {
	list-style: none;
	padding: 0;
	margin-top: 0;
	margin-bottom: 1rem;
}

/* Kart görünümü; <li><p> şişmesin; madde aralarında nefes */
.section-box ul li {
	font-size: 16px;
	line-height: 1.55;
	margin-bottom: 0.75rem;
	padding: 0.55rem 0.85rem;
	background: var(--click-list-bg);
	border-radius: 5px;
}

.section-box ul li:last-child {
	margin-bottom: 0;
}

.section-box ul li > p {
	margin: 0;
}

.section-box ul li > p:not(:last-child) {
	margin-bottom: 0.35em;
}

/* Sayfa içeriği (the_content): paragraflar ve bloklar */
.section-box .entry-content {
	font-size: 1rem;
	line-height: 1.65;
}

.section-box .entry-content > p {
	margin-top: 0;
	margin-bottom: 1rem;
}

.section-box .entry-content > p:last-child {
	margin-bottom: 0;
}

.section-box .entry-content > *:first-child {
	margin-top: 0;
}

.section-box .entry-content > ul,
.section-box .entry-content > ol {
	margin-top: 0.75rem;
	margin-bottom: 1.25rem;
}

.section-box .entry-content .wp-block-group.has-background {
	padding: 1rem 1.1rem;
	border-radius: 8px;
	border: 1px solid var(--click-border-gold-soft);
}

@media (max-width: 781px) {
	.section-box .wp-block-columns.is-layout-flex {
		flex-wrap: wrap !important;
	}

	.section-box .wp-block-column {
		flex-basis: 100% !important;
	}
}

.site-main {
	flex: 1 0 auto;
}

footer.site-footer {
	background: var(--click-footer-bg);
	color: var(--click-text);
	padding: 20px 0;
	text-align: center;
	margin-top: auto;
	border-top: 1px solid var(--click-border-gold-soft);
}

.site-footer__article {
	margin-bottom: 1.25rem;
	text-align: left;
}

.site-footer__article-inner,
.site-footer__panel {
	padding: 1rem 1.25rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--click-text-muted);
	background: rgba(18, 18, 18, 0.55);
	border: 1px solid var(--click-border-gold-soft);
	border-radius: 10px;
	box-sizing: border-box;
}

/* Üstteki «Ek alt bilgi» kutusu (.site-footer__article-inner) ile aynı zemin ve 1px çerçeve — ortak bloktan gelir. */
.site-footer__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
	width: 100%;
}

.site-footer__article-inner > :first-child {
	margin-top: 0;
}

.site-footer__article-inner > :last-child {
	margin-bottom: 0;
}

.site-footer__article-inner h2,
.site-footer__article-inner h3,
.site-footer__article-inner h4 {
	color: var(--click-primary);
	font-size: 1.05rem;
	margin: 0.65rem 0 0.35rem;
}

.site-footer__article-inner a {
	color: var(--click-primary-hover);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.site-footer__article-inner a:hover {
	color: var(--click-text);
}

.site-footer__copy {
	margin-bottom: 0;
}

footer.site-footer a {
	color: var(--click-footer-link);
	text-decoration: none;
	margin: 0 10px;
}

footer.site-footer a:hover {
	color: var(--click-footer-link-hover);
}

.entry-content img {
	max-width: 100%;
	height: auto;
}

/* Yazı listesi kartı: <576px üst üste (tam genişlik metin); sm+ solda küçük görsel + metin */
.post-card .click-blog-excerpt {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.85rem;
	width: 100%;
	box-sizing: border-box;
}

@media (min-width: 576px) {
	.post-card .click-blog-excerpt--with-thumb {
		display: grid;
		grid-template-columns: minmax(112px, 172px) minmax(0, 1fr);
		column-gap: 0.85rem;
		align-items: start;
	}
}

.post-card .click-blog-excerpt__media {
	line-height: 0;
	min-width: 0;
}

.post-card .click-blog-excerpt__media-link {
	display: block;
}

.post-card .click-blog-excerpt__thumb-img {
	display: block;
	width: auto;
	height: auto;
	max-width: 172px;
	max-height: 172px;
	object-fit: contain;
}

@media (max-width: 575.98px) {
	.post-card .click-blog-excerpt--with-thumb .click-blog-excerpt__media {
		align-self: center;
		text-align: center;
	}

	.post-card .click-blog-excerpt__thumb-img {
		max-width: min(100%, 280px);
		max-height: 200px;
		margin-left: auto;
		margin-right: auto;
	}

	.post-card .click-blog-excerpt__foot {
		text-align: center;
	}

	.post-card .click-blog-excerpt__foot .btn {
		width: 100%;
		max-width: 20rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.post-card .click-blog-excerpt__text {
	min-width: 0;
}

.post-card .click-blog-excerpt__foot {
	text-align: right;
}

.post-card .entry-summary {
	line-height: 1.55;
}

/* Tekil yazı: benzer yazılar başlığı */
.click-related-posts__title {
	color: var(--click-primary);
	font-size: clamp(1.2rem, 2.4vw, 1.55rem);
	font-weight: 700;
	margin: 0 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--click-border-gold-soft);
}

.click-related-posts__list .post-card:last-child {
	margin-bottom: 0;
}

/* Özelleştirici: promosyon kartları (hover’da öne çıkar) */
.click-promo-section {
	background: linear-gradient( 180deg, rgba( 26, 21, 8, 0.92 ), rgba( 5, 4, 3, 0.65 ) );
	border-block: 1px solid var(--click-border-gold-soft);
}

.click-promo-section__heading {
	color: var(--click-text);
	font-size: clamp( 1.25rem, 2.5vw, 1.75rem );
	font-weight: 700;
}

.click-promo-grid {
	display: grid;
	grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 991.98px) {
	.click-promo-grid {
		grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
	}
}

@media (max-width: 575.98px) {
	.click-promo-grid {
		grid-template-columns: 1fr;
	}

	/* Kart: görsel + metin yan yana dar ekranda sıkışmasın */
	.click-promo-card__inner:not(.click-promo-card__inner--full) {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.click-promo-card__visual {
		min-height: 9rem;
		max-height: 13rem;
	}

	.click-promo-card__panel {
		border-left: none;
		border-top: 1px solid var(--click-border-gold-soft);
	}

	.click-promo-card:hover .click-promo-card__inner,
	.click-promo-card:focus-visible .click-promo-card__inner {
		transform: translateY(-4px) scale(1.02);
	}
}

a.click-promo-card,
div.click-promo-card {
	display: block;
	text-decoration: none;
	color: inherit;
	position: relative;
	z-index: 1;
	outline-offset: 4px;
}

.click-promo-card:hover,
.click-promo-card:focus-visible {
	z-index: 6;
}

.click-promo-card__inner {
	display: grid;
	grid-template-columns: minmax( 0, 1.4fr ) minmax( 0, 0.75fr );
	min-height: 12rem;
	overflow: hidden;
	border-radius: 12px;
	background: var(--click-card-elevated);
	border: 1px solid var(--click-border-gold);
	box-shadow: 0 8px 28px rgba( 0, 0, 0, 0.5 ), 0 0 0 1px rgba( 255, 215, 0, 0.05 );
	transform: translateZ( 0 );
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Başlık/metin yok: mavi boş panel yok, görsel tüm kartı kaplar */
.click-promo-card__inner--full {
	grid-template-columns: 1fr;
}

.click-promo-card:hover .click-promo-card__inner,
.click-promo-card:focus-visible .click-promo-card__inner {
	transform: translateY( -10px ) scale( 1.04 );
	box-shadow: 0 22px 48px rgba( 0, 0, 0, 0.6 ), 0 0 36px rgba( 255, 215, 0, 0.14 );
	z-index: 4;
}

.click-promo-card--nolink {
	cursor: default;
}

.click-promo-card__visual {
	position: relative;
	min-height: 12rem;
	background: linear-gradient( 135deg, #2a2210 0%, #1a1508 45%, #3d3018 100% );
	overflow: hidden;
}

.click-promo-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.click-promo-card__img--placeholder {
	position: absolute;
	inset: 0;
	min-height: 0;
}

.click-promo-card__panel {
	padding: 1rem 1.1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.35rem;
	background: linear-gradient( 180deg, #161208 0%, #0a0805 100% );
	border-left: 1px solid var(--click-border-gold-soft);
}

.click-promo-card__title {
	color: var(--click-primary-hover);
	font-size: clamp( 0.95rem, 1.4vw, 1.1rem );
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
}

.click-promo-card__text {
	color: var(--click-text-muted);
	font-size: 0.8rem;
	line-height: 1.45;
	margin: 0;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999999;
	padding: 8px 16px;
	background: #000000;
	color: var(--click-text);
}

.skip-link:focus {
	left: 6px;
	top: 6px;
}

/* -------------------------------------------------------------------------
   Tam site: WordPress + Bootstrap bileşenleri (koyu zemin, altın vurgu)
   ------------------------------------------------------------------------- */

html {
	color-scheme: dark;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

::selection {
	background: rgba(212, 175, 55, 0.35);
	color: var(--click-text);
}

.navbar.navbar-dark .navbar-brand,
.navbar.navbar-dark .navbar-brand:hover,
.navbar.navbar-dark .custom-logo-link:focus-visible {
	color: var(--click-primary);
}

.navbar.navbar-dark .navbar-toggler {
	border-color: var(--click-border-gold-soft);
}

.navbar.navbar-dark .navbar-toggler-icon {
	filter: brightness(1.15);
}

/* Formlar (arama, yorum, olası eklentiler) */
.site-main .form-control,
.site-main .form-select,
.hero-section .form-control {
	background-color: var(--click-list-bg);
	border: 1px solid var(--click-border-gold-soft);
	color: var(--click-text);
}

.site-main .form-control:focus,
.site-main .form-select:focus,
.hero-section .form-control:focus {
	border-color: var(--click-primary);
	box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.22);
	background-color: var(--click-card-elevated);
	color: var(--click-text);
}

.site-main .form-control::placeholder,
.hero-section .form-control::placeholder {
	color: rgba(224, 224, 224, 0.45);
}

.search-form-click .search-field {
	min-width: 12rem;
}

/* Yorumlar */
.comment-list,
.comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list .children {
	margin-left: 0.75rem;
	padding-left: 1rem;
	border-left: 1px solid var(--click-border-gold-soft);
}

.comment-body {
	padding: 1rem 0;
	border-bottom: 1px solid var(--click-border-gold-soft);
}

.comment-list > li:last-child .comment-body {
	border-bottom: 0;
}

.comment-author .fn,
.comment-author .fn a {
	color: var(--click-primary);
	font-style: normal;
	font-weight: 700;
	text-decoration: none;
}

.comment-author .fn a:hover {
	color: var(--click-primary-hover);
}

.comment-metadata,
.comment-metadata a {
	color: rgba(224, 224, 224, 0.6);
	font-size: 0.875rem;
}

.comment-metadata a:hover {
	color: var(--click-primary-hover);
}

.comment-content,
.comment-content p {
	color: var(--click-text-muted);
}

.comment-awaiting-moderation {
	color: var(--click-primary-hover);
}

.reply .comment-reply-link {
	display: inline-block;
	margin-top: 0.35rem;
	padding: 0.25rem 0.65rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--click-primary);
	border: 1px solid var(--click-border-gold-soft);
	border-radius: 6px;
	background: var(--click-list-bg);
}

.reply .comment-reply-link:hover {
	color: var(--click-primary-hover);
	border-color: var(--click-primary);
	background: rgba(212, 175, 55, 0.1);
}

.comment-form-click .comment-form-author,
.comment-form-click .comment-form-email,
.comment-form-click .comment-form-url,
.comment-form-click .comment-form-comment {
	margin-bottom: 1rem;
}

.comment-form-click label {
	color: var(--click-text-muted);
	font-size: 0.9rem;
	margin-bottom: 0.35rem;
}

.comment-form-click .logged-in-as,
.comment-form-click .logged-in-as a {
	color: rgba(224, 224, 224, 0.72);
	font-size: 0.9rem;
}

.comment-form-click .logged-in-as a:hover {
	color: var(--click-primary-hover);
}

.comment-form-click .required-field-message,
.comment-form-click .required {
	color: var(--click-primary);
}

.comment-form-click textarea.form-control {
	min-height: 8rem;
	resize: vertical;
}

/* Sayfalama (yazı listesi, arşiv, arama) */
.navigation.pagination {
	margin-top: 2rem;
	margin-bottom: 0.5rem;
}

.navigation.pagination .nav-links {
	display: flex;
	justify-content: center;
}

.navigation.pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.navigation.pagination a.page-numbers,
.navigation.pagination span.page-numbers {
	display: inline-block;
	min-width: 2.5rem;
	padding: 0.45rem 0.65rem;
	text-align: center;
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid var(--click-border-gold-soft);
	background: var(--click-list-bg);
	color: var(--click-text-muted);
	font-weight: 600;
	transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus {
	background: rgba(212, 175, 55, 0.12);
	border-color: var(--click-primary);
	color: var(--click-primary-hover);
}

.navigation.pagination span.page-numbers.current {
	background: var(--click-primary);
	border-color: var(--click-primary);
	color: #0a0a0a;
}

.navigation.pagination span.page-numbers.dots {
	border-color: transparent;
	background: transparent;
	color: rgba(224, 224, 224, 0.45);
	min-width: auto;
}

/* Yorum sayfalama */
.navigation.comment-navigation {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--click-border-gold-soft);
}

.navigation.comment-navigation .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
}

.navigation.comment-navigation a {
	font-weight: 600;
	text-decoration: none;
	color: var(--click-primary);
}

.navigation.comment-navigation a:hover {
	color: var(--click-primary-hover);
}

/* Çok sayfalı yazı */
.entry-content .page-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	color: var(--click-text-muted);
}

.entry-content .page-links a {
	display: inline-block;
	padding: 0.35rem 0.65rem;
	border-radius: 6px;
	border: 1px solid var(--click-border-gold-soft);
	background: var(--click-list-bg);
	color: var(--click-primary);
	text-decoration: none;
	font-weight: 600;
}

.entry-content .page-links a:hover {
	border-color: var(--click-primary);
	color: var(--click-primary-hover);
}

/* Etiket / alt bilgi linkleri */
.site-main .entry-footer a {
	color: var(--click-primary);
	text-decoration: none;
}

.site-main .entry-footer a:hover {
	color: var(--click-primary-hover);
	text-decoration: underline;
}

/* İçerik tipografisi */
.entry-content {
	color: var(--click-text-muted);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.entry-content > :first-child {
	margin-top: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	color: var(--click-primary);
	margin-top: 1.25em;
	margin-bottom: 0.5em;
}

.entry-content blockquote {
	margin: 1.25rem 0;
	padding: 0.75rem 1rem 0.75rem 1.25rem;
	border-left: 4px solid var(--click-primary);
	border-radius: 0 10px 10px 0;
	background: rgba(0, 0, 0, 0.25);
	color: var(--click-text-muted);
	font-style: italic;
}

.entry-content code {
	padding: 0.15em 0.45em;
	font-size: 0.9em;
	border-radius: 6px;
	border: 1px solid var(--click-border-gold-soft);
	background: var(--click-list-bg);
	color: var(--click-primary-hover);
}

.entry-content pre {
	padding: 1rem;
	overflow-x: auto;
	border-radius: 8px;
	border: 1px solid var(--click-border-gold-soft);
	background: var(--click-list-bg);
	color: var(--click-text-muted);
}

.entry-content pre code {
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: inherit;
}

.entry-content table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	margin: 1.25rem 0;
	font-size: 0.95rem;
}

.entry-content th,
.entry-content td {
	border: 1px solid var(--click-border-gold-soft);
	padding: 0.5rem 0.75rem;
	vertical-align: top;
}

.entry-content thead th {
	background: var(--click-list-bg);
	color: var(--click-primary);
	font-weight: 700;
}

.entry-content hr,
.site-main hr {
	margin: 1.5rem 0;
	border: 0;
	border-top: 1px solid var(--click-border-gold-soft);
	opacity: 1;
}

.entry-content figcaption,
.wp-block-image figcaption {
	margin-top: 0.35rem;
	font-size: 0.875rem;
	color: rgba(224, 224, 224, 0.65);
}

.wp-block-quote cite,
.wp-block-pullquote cite {
	color: var(--click-primary);
	font-style: normal;
}

/* Yardımcı Bootstrap sınıfları */
.site-main .text-muted {
	color: rgba(224, 224, 224, 0.6) !important;
}

.site-main .border,
.site-main .border-top,
.site-main .border-bottom {
	border-color: var(--click-border-gold-soft) !important;
}

/* Alt menü: footer linkleri zaten footer stillerini miras alır */
.footer-nav a {
	color: var(--click-footer-link);
}

.footer-nav a:hover {
	color: var(--click-footer-link-hover);
}

/* ========== Mobil / dar ekran iyileştirmeleri ========== */

.entry-content iframe,
.entry-content embed,
.entry-content object,
.entry-content video {
	max-width: 100%;
}

.entry-content .wp-block-embed__wrapper {
	max-width: 100%;
}

.entry-content table {
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 767.98px) {
	.navbar-collapse {
		margin-top: 0.5rem;
		padding-top: 0.75rem;
		border-top: 1px solid var(--click-border-gold-soft);
	}

	.navbar-nav .nav-link {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}

	.navbar-toggler {
		min-width: 2.75rem;
		min-height: 2.75rem;
	}

	.hero-section .hero-article {
		padding: 1rem 1rem;
		font-size: 0.9375rem;
	}

	.section-box,
	.post-card {
		padding: 14px 12px;
	}

	.click-promo-section .container.py-4 {
		padding-top: 1.25rem !important;
		padding-bottom: 1.25rem !important;
	}

	.click-promo-section__heading {
		margin-bottom: 1rem !important;
	}

	footer.site-footer {
		padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
	}
}

@media (max-width: 575.98px) {
	main.site-main.container {
		padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
		padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
	}

	.search-form-click .search-field {
		min-width: 0;
	}

	.comment-list .children {
		margin-left: 0;
		padding-left: 0.65rem;
	}

	.navigation.pagination .page-numbers {
		gap: 0.3rem;
	}

	.navigation.pagination a.page-numbers,
	.navigation.pagination span.page-numbers {
		min-width: 2.25rem;
		padding: 0.4rem 0.5rem;
		font-size: 0.9rem;
	}
}
