/* ==========================================================
   WEBZEYREK V6 — "Teknik Kılavuz" kimliği.
   Sıcak kağıt zemin + pas turuncusu + petrol yeşili.
   Köşe işaretli kartlar, kesikli çizgiler, referans numaraları.
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
	--wz6-paper: #F6F8F9;
	--wz6-paper-2: #EDEDEA;
	--wz6-ink: #1A1A1A;
	--wz6-ink-dim: #6B6B6B;
	--wz6-rust: #F4CA44;
	--wz6-rust-deep: #DDB520;
	--wz6-rust-text: #97741A;
	--wz6-petrol: #2E2E2E;
	--wz6-line: #E3E3E0;
	--wz6-white: #FFFFFF;
	--wz6-font-display: 'IBM Plex Mono', monospace;
	--wz6-font-body: 'IBM Plex Sans', sans-serif;
	--wz6-ease: cubic-bezier(.22,.61,.36,1);
}

body, .site, .site-container, #content, .content-area, .entry-content, .widget-area {
	background-color: var(--wz6-paper) !important;
	color: var(--wz6-ink);
	font-family: var(--wz6-font-body);
	box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.wz6 { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 900px) { .wz6 { padding: 0 18px; } }
.wz6 h1, .wz6 h2, .wz6 h3, .wz6 h4 { font-weight: 600; line-height: 1.2; color: var(--wz6-ink); margin: 0; }
.wz6-serif-head { font-family: var(--wz6-font-display); letter-spacing: -0.01em; }

/* ==========================================================
   ÖZGÜN HEADER (Kadence'e hiç bağımlı değil — kendi header.php'miz)
   ========================================================== */
.wz6-header {
	background: linear-gradient(135deg, #14171a 0%, #1f2327 45%, #14171a 100%);
	border-bottom: 2px solid var(--wz6-rust);
	position: sticky; top: 0; z-index: 100;
	transition: box-shadow .25s ease;
}
.wz6-header-inner { position: relative; z-index: 1; }
.wz6-header::before {
	content: "";
	position: absolute; inset: 0; pointer-events: none; opacity: .55;
	background-image:
		linear-gradient(90deg, rgba(244,202,68,.22) 1px, transparent 1px),
		linear-gradient(0deg, rgba(244,202,68,.13) 1px, transparent 1px),
		radial-gradient(circle, rgba(244,202,68,.55) 1.5px, transparent 1.5px);
	background-size: 46px 46px, 46px 46px, 46px 46px;
	background-position: 0 0, 0 0, 23px 23px;
	animation: wz6-header-drift 14s linear infinite;
}
@keyframes wz6-header-drift {
	to { background-position: 46px 46px, 46px 46px, 69px 69px; }
}
@media (prefers-reduced-motion: reduce) { .wz6-header::before { animation: none; } }
.wz6-header.is-stuck { box-shadow: 0 8px 20px rgba(0,0,0,.35); }
.wz6-header-inner {
	max-width: 1240px; margin: 0 auto; padding: 10px 28px;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
@media (max-width: 900px) { .wz6-header-inner { padding: 10px 18px; } }

.wz6-logo { display: inline-flex; align-items: baseline; font-family: var(--wz6-font-display); font-weight: 700; font-size: 23px; color: var(--wz6-ink); }
.wz6-logo .wz6-bracket { color: var(--wz6-rust-text); }

.wz6-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; margin-right: 22px; }
.wz6-nav a {
	font-family: var(--wz6-font-display); font-weight: 600; font-size: 13px;
	text-transform: uppercase; letter-spacing: .03em;
	color: var(--wz6-ink-dim); padding: 7px 13px; border-radius: 999px; position: relative;
	transition: color .2s ease, background .2s ease;
}
.wz6-nav a:hover { background: var(--wz6-paper-2); color: var(--wz6-ink); }
.wz6-nav .is-current a { background: var(--wz6-ink); color: var(--wz6-rust); }

.wz6-dropdown { position: relative; }
.wz6-dropdown-panel {
	display: none; position: absolute; top: 100%; left: 0; min-width: 220px; margin-top: 6px;
	background: var(--wz6-white); border: 1.5px solid var(--wz6-ink); border-radius: 4px;
	box-shadow: 4px 4px 0 var(--wz6-ink); padding: 6px; z-index: 50; list-style: none;
}
.wz6-dropdown:hover .wz6-dropdown-panel { display: block; }
.wz6-dropdown-panel li a { display: block; padding: 8px 10px; font-size: 13.5px; }
.wz6-dropdown-panel li a:hover { background: var(--wz6-paper-2); }
.wz6-dropdown-panel li a::after { display: none; }
.wz6-caret { font-size: 9px; margin-left: 3px; }

.wz6-burger { display: none; flex-direction: column; gap: 4px; width: 26px; cursor: pointer; background: none; border: none; padding: 4px; }
.wz6-burger span { height: 2px; background: var(--wz6-ink); border-radius: 2px; }
.wz6-nav-toggle-input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
@media (max-width: 860px) {
	.wz6-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--wz6-paper);
		border-bottom: 2px solid var(--wz6-ink); flex-direction: column; align-items: stretch; padding: 10px; gap: 2px;
		z-index: 200; box-shadow: 0 12px 24px rgba(0,0,0,.15); }
	.wz6-nav-toggle-input:checked ~ .wz6-nav { display: flex !important; }
	.wz6-nav.wz6-force-open { display: flex !important; }
	.wz6-dropdown-panel { position: static; box-shadow: none; border: none; margin-top: 0; display: block !important; }
	.wz6-dropdown:hover .wz6-dropdown-panel { display: block; }
	.wz6-burger { display: flex; }
	.wz6-nav a { color: var(--wz6-ink) !important; }
	.wz6-nav a:hover { background: var(--wz6-paper-2) !important; color: var(--wz6-ink) !important; }
	.wz6-nav .is-current a { background: var(--wz6-ink) !important; color: var(--wz6-rust) !important; }
	.wz6-nav span { border-bottom: 1px solid var(--wz6-line); }
	.wz6-nav span:last-child { border-bottom: none; }
	.wz6-nav a { display: block; padding: 12px 8px !important; }
}

/* ==========================================================
   BUTON / ETİKET
   ========================================================== */
.wz6-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--wz6-font-display); font-weight: 600;
	font-size: 13.5px; padding: 11px 20px; border-radius: 3px; border: 1.5px solid var(--wz6-ink);
	transition: transform .18s var(--wz6-ease), box-shadow .18s ease, background .18s ease; }
.wz6-btn-fill { background: var(--wz6-ink); color: var(--wz6-paper); }
.wz6-btn-fill:hover { background: var(--wz6-rust); border-color: var(--wz6-rust); color: var(--wz6-ink); transform: translateY(-2px); box-shadow: 3px 3px 0 var(--wz6-ink); }
.wz6-btn-line { background: transparent; color: var(--wz6-ink); }
.wz6-btn-line:hover { background: var(--wz6-ink); color: var(--wz6-paper); }

.wz6-ref { font-family: var(--wz6-font-display); font-size: 11px; font-weight: 700; letter-spacing: .04em;
	color: var(--wz6-rust-text); display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; }
.wz6-ref::before { content: ""; width: 16px; height: 1.5px; background: var(--wz6-rust); }
.wz6-meta { display: flex; align-items: center; gap: 14px; font-family: var(--wz6-font-display); font-size: 11.5px; color: var(--wz6-ink-dim); }

/* ==========================================================
   HERO
   ========================================================== */
.wz6-hero { padding: 40px 0 8px; }
.wz6-hero-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 24px; }
@media (max-width: 980px) { .wz6-hero-grid { grid-template-columns: 1fr; } }

.wz6-feature { position: relative; border: 2px solid var(--wz6-ink); border-radius: 6px; overflow: hidden; height: 460px; background: var(--wz6-ink); }
.wz6-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; pointer-events: none; }
.wz6-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.wz6-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.wz6-feature-bottom-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.wz6-feature-byline { display: flex; align-items: center; gap: 8px; color: rgba(247,247,245,.85); font-size: 12.5px; }
.wz6-feature-avatar { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--wz6-rust), var(--wz6-petrol)); flex: 0 0 24px; }
.wz6-feature-byline .wz6-meta span { color: rgba(247,247,245,.6); margin-left: 6px; }
.wz6-slider-dots { position: absolute; left: 28px; bottom: 14px; display: flex; gap: 6px; z-index: 3; }
.wz6-slider-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: background .2s ease, transform .2s ease; }
.wz6-slider-dots span.is-active { background: var(--wz6-rust); transform: scale(1.3); }
.wz6-slider-nav { position: absolute; right: 20px; bottom: 10px; display: flex; gap: 8px; z-index: 3; }
.wz6-slider-nav button { width: 28px; height: 28px; border-radius: 50%; border: none; background: rgba(255,255,255,.15);
	color: #fff; cursor: pointer; font-size: 14px; transition: background .2s ease; }
.wz6-slider-nav button:hover { background: rgba(255,255,255,.3); }
.wz6-feature-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 28px; background: linear-gradient(0deg, rgba(26,26,26,.96) 0%, rgba(26,26,26,.75) 32%, rgba(26,26,26,0) 100%); }
.wz6-feature-overlay .wz6-ref { color: var(--wz6-rust); margin-bottom: 10px; }
.wz6-feature-overlay .wz6-ref::before { background: var(--wz6-rust); }
.wz6-feature-overlay h1 { color: var(--wz6-paper); font-family: var(--wz6-font-display); font-size: clamp(20px,2.2vw,28px); max-width: 24ch; margin-bottom: 8px;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wz6-feature-overlay p { color: rgba(247,247,245,.7); font-size: 13.5px; max-width: 55ch; margin: 0 0 12px;
	display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.wz6-feature-overlay .wz6-meta { color: rgba(247,247,245,.55); }

.wz6-feature-corner { position: absolute; width: 18px; height: 18px; border-color: var(--wz6-paper); opacity: .7; }
.wz6-feature-corner.tl { top: 14px; left: 14px; border-top: 2px solid; border-left: 2px solid; }
.wz6-feature-corner.tr { top: 14px; right: 14px; border-top: 2px solid; border-right: 2px solid; }

.wz6-side-list { display: flex; flex-direction: column; gap: 14px; height: 460px; }
.wz6-side-card { position: relative; flex: 1; border: 1.5px solid var(--wz6-line); border-radius: 5px; overflow: hidden; }
.wz6-side-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wz6-side-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26,26,26,.88) 0%, rgba(26,26,26,.05) 75%); display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; }
.wz6-side-card-overlay span.wz6-ref { color: var(--wz6-rust); font-size: 10px; margin-bottom: 6px; }
.wz6-side-card-overlay h4 { color: var(--wz6-paper); font-size: 13.5px; line-height: 1.3;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ==========================================================
   KATEGORİ ŞERİDİ
   ========================================================== */
.wz6-cat-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin: 26px 0 0; }
@media (max-width: 900px) { .wz6-cat-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .wz6-cat-row { grid-template-columns: repeat(2, 1fr); } }
.wz6-cat-card { position: relative; background: var(--wz6-white); border: 1.5px solid var(--wz6-ink); border-radius: 5px;
	padding: 12px 10px; text-align: center; transition: transform .18s var(--wz6-ease), box-shadow .18s ease; }
.wz6-cat-card:hover { transform: translateY(-3px); box-shadow: 3px 4px 0 var(--wz6-rust); }
.wz6-cat-card svg { width: 18px; height: 18px; stroke: var(--wz6-petrol); margin-bottom: 6px; }
.wz6-cat-card h4 { font-family: var(--wz6-font-display); font-size: 11px; margin-bottom: 2px; }
.wz6-cat-card span { font-size: 9.5px; color: var(--wz6-ink-dim); }

/* ==========================================================
   BÖLÜM DÜZENİ
   ========================================================== */
.wz6-section { padding: 44px 0; }
.wz6-main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 26px; align-items: start; }
@media (max-width: 980px) { .wz6-main-grid { grid-template-columns: 1fr; } }
.wz6-section-head {
	display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px;
	background: var(--wz6-ink); border-radius: 5px; padding: 14px 20px;
}
.wz6-section-head h2 { font-family: var(--wz6-font-display); font-size: 17px; text-transform: uppercase; letter-spacing: .04em; color: var(--wz6-paper); }
.wz6-section-head h2::before { background: var(--wz6-rust); }
.wz6-section-head a { font-family: var(--wz6-font-display); font-size: 12px; color: var(--wz6-rust); white-space: nowrap; }

.wz6-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 700px) { .wz6-news-grid { grid-template-columns: 1fr; } }
.wz6-card {
	display: flex !important; flex-direction: column !important; position: relative !important; overflow: hidden !important;
	background: var(--wz6-white); border: 1.5px solid var(--wz6-line); border-radius: 5px;
	transition: transform .2s var(--wz6-ease), border-color .2s ease, box-shadow .2s ease;
	height: 100% !important;
}
.wz6-card:hover { transform: translateY(-4px); border-color: var(--wz6-ink); box-shadow: 3px 4px 0 var(--wz6-rust); }
.wz6-card-img {
	display: block !important; position: relative !important; overflow: hidden !important;
	aspect-ratio: 4/3; background: var(--wz6-paper-2); flex: 0 0 auto !important;
	height: auto !important; width: 100% !important;
}
.wz6-card-img img {
	position: static !important; width: 100% !important; height: 100% !important;
	object-fit: cover !important; transition: transform .5s ease; margin: 0 !important;
}
.wz6-card:hover .wz6-card-img img { transform: scale(1.05); }
.wz6-card-date-badge {
	position: absolute !important; top: 10px; right: 10px; z-index: 5;
	background: var(--wz6-ink); color: var(--wz6-paper);
	font-family: var(--wz6-font-display); font-size: 10.5px; font-weight: 700;
	padding: 5px 9px; border-radius: 3px; letter-spacing: .02em;
}
.wz6-card-body {
	display: flex !important; flex-direction: column !important; position: relative !important; z-index: 3;
	background: var(--wz6-white); padding: 16px; flex: 1 1 auto !important;
}
.wz6-card-body .wz6-ref { margin-bottom: 10px; }
.wz6-card-body h3 { font-size: 15.5px; line-height: 1.35; margin-bottom: 10px; color: var(--wz6-ink) !important;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wz6-card-author {
	display: flex !important; align-items: center; gap: 6px; margin-top: auto !important;
	font-family: var(--wz6-font-display); font-size: 11px; color: var(--wz6-ink-dim);
	padding-top: 10px; border-top: 1px solid var(--wz6-line);
}
.wz6-card-author-dot { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, var(--wz6-rust), var(--wz6-petrol)); flex: 0 0 16px; }

.wz6-side-card2 { background: var(--wz6-white); border: 1.5px solid var(--wz6-ink); border-radius: 5px; padding: 22px; margin-bottom: 22px; }
.wz6-side-card2 h3 { font-family: var(--wz6-font-display); font-size: 16px; margin-bottom: 8px; }
.wz6-side-card2 p { font-size: 13px; color: var(--wz6-ink-dim); margin: 0 0 14px; }
.wz6-side-card2 input[type="email"] { width: 100%; padding: 11px 12px; border: 1.5px solid var(--wz6-line); border-radius: 3px;
	font-size: 13.5px; margin-bottom: 10px; font-family: var(--wz6-font-body); }
.wz6-side-card2 .wz6-btn { width: 100%; justify-content: center; }

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */
.wz6-reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--wz6-ease), transform .5s var(--wz6-ease); }
.wz6-reveal.is-visible { opacity: 1; transform: translateY(0); }
.wz6-stagger > * { opacity: 0; transform: translateY(14px); transition: opacity .45s var(--wz6-ease), transform .45s var(--wz6-ease); }
.wz6-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; } .wz6-stagger.is-visible > *:nth-child(2) { transition-delay: .06s; }
.wz6-stagger.is-visible > *:nth-child(3) { transition-delay: .12s; } .wz6-stagger.is-visible > *:nth-child(4) { transition-delay: .18s; }
.wz6-stagger.is-visible > *:nth-child(5) { transition-delay: .24s; }
.wz6-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .wz6-reveal, .wz6-stagger > * { opacity: 1; transform: none; transition: none; } }

/* ==========================================================
   ARŞİV / ARAMA
   ========================================================== */
.wz6-archive-hero {
	background: linear-gradient(120deg, rgba(20,20,20,.93) 0%, rgba(30,30,30,.88) 55%, rgba(20,20,20,.82) 100%), var(--wz6-hero-img, none) center/cover;
	border-radius: 6px; padding: 40px 32px; margin: 24px 0 8px; position: relative; overflow: hidden;
}
.wz6-archive-hero-icon {
	position: absolute; top: 50%; right: 20px; transform: translateY(-50%);
	width: 84px; height: 84px; opacity: .13;
	stroke: var(--wz6-cat-tint, var(--wz6-rust)); pointer-events: none;
}
@media (max-width: 640px) { .wz6-archive-hero-icon { width: 56px; height: 56px; right: 10px; opacity: .1; } }
.wz6-archive-hero .wz6-ref { color: var(--wz6-rust); margin-bottom: 12px; }
.wz6-archive-hero h1 { color: var(--wz6-paper); font-family: var(--wz6-font-display); font-size: 28px; margin-bottom: 10px; }
.wz6-archive-hero p { color: rgba(247,247,245,.65); max-width: 60ch; }
.wz6-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .wz6-archive-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .wz6-archive-grid { grid-template-columns: 1fr; } }
.wz6-search-form { display: flex; gap: 10px; max-width: 460px; margin-top: 18px; }
.wz6-search-form input { flex: 1; background: var(--wz6-paper); border: 1.5px solid var(--wz6-line); border-radius: 4px; padding: 11px 16px; font-size: 14px; }
.wz6-search-form button { background: var(--wz6-rust); border: 1.5px solid var(--wz6-rust); color: var(--wz6-ink); border-radius: 4px; padding: 0 20px; font-family: var(--wz6-font-display); font-weight: 600; cursor: pointer; }
.page-numbers { display: inline-block; padding: 9px 14px; border: 1.5px solid var(--wz6-line); color: var(--wz6-ink-dim); border-radius: 4px; font-family: var(--wz6-font-display); font-size: 12.5px; background: var(--wz6-white); }
.page-numbers.current, .page-numbers:hover { border-color: var(--wz6-rust); color: var(--wz6-ink); }

/* ==========================================================
   TEKİL YAZI
   ========================================================== */
.wz6-breadcrumb { font-family: var(--wz6-font-display); font-size: 11.5px; color: var(--wz6-ink-dim); margin: 18px 0 14px; }
.wz6-breadcrumb a { color: var(--wz6-ink-dim); } .wz6-breadcrumb a:hover { color: var(--wz6-ink); }
.wz6-single-head { max-width: 78ch; margin-bottom: 22px; }
.wz6-single-head h1 { font-family: var(--wz6-font-display); font-size: 30px; margin: 14px 0 12px; }
.wz6-single-head .wz6-lede { font-size: 16px; color: var(--wz6-ink-dim); margin-bottom: 14px; }
.wz6-single-cover { border: 2px solid var(--wz6-ink); border-radius: 6px; overflow: hidden; margin: 0 0 30px; aspect-ratio: 16/8; }
.wz6-article { max-width: 74ch; font-size: 17px; line-height: 1.75; }
.wz6-article h2 { font-family: var(--wz6-font-display); font-size: 23px; margin: 34px 0 14px; }
.wz6-article h3 { font-size: 19px; margin: 26px 0 12px; }
.wz6-article p { margin: 0 0 20px; }
.wz6-article img { border-radius: 6px; margin: 20px 0; border: 1.5px solid var(--wz6-line); }
.wz6-article a { color: var(--wz6-petrol); text-decoration: underline; }
.wz6-share-row { display: flex; align-items: center; gap: 10px; margin: 30px 0; padding: 16px 0; border-top: 2px solid var(--wz6-line); border-bottom: 2px solid var(--wz6-line); max-width: 74ch; }
.wz6-share-row span { font-family: var(--wz6-font-display); font-size: 12px; color: var(--wz6-ink-dim); margin-right: 6px; }
.wz6-share-row a { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--wz6-line); display: flex; align-items: center; justify-content: center; }
.wz6-share-row a:hover { border-color: var(--wz6-rust-text); color: var(--wz6-rust-text); }

.wz6-comments { max-width: 74ch; }
.wz6-comments .comment-form input[type="text"], .wz6-comments .comment-form input[type="email"], .wz6-comments .comment-form textarea {
	background: var(--wz6-white); border: 1.5px solid var(--wz6-line); color: var(--wz6-ink); border-radius: 4px; padding: 11px 14px; width: 100%; font-family: var(--wz6-font-body); }
.wz6-comments .comment-form textarea { min-height: 120px; }
.wz6-comments .comment-form .form-submit input { background: var(--wz6-ink); color: var(--wz6-paper); border: 1.5px solid var(--wz6-ink);
	font-family: var(--wz6-font-display); font-weight: 600; padding: 12px 26px; border-radius: 4px; cursor: pointer; }
.wz6-comments .comment-form .form-submit input:hover { background: var(--wz6-rust); border-color: var(--wz6-rust); color: var(--wz6-ink); }

/* ==========================================================
   HAKKIMIZDA / İLETİŞİM
   ========================================================== */
.wz6-about-hero { padding: 40px 0 8px; }
.wz6-about-hero h1 { font-family: var(--wz6-font-display); font-size: clamp(20px, 4vw, 32px); white-space: nowrap; }
.wz6-about-hero p { color: var(--wz6-ink-dim); font-size: 16px; max-width: 62ch; margin-top: 14px; }
.wz6-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
@media (max-width: 640px) { .wz6-stats { grid-template-columns: 1fr; } }
.wz6-stat {
	position: relative; background: var(--wz6-ink); border-radius: 6px; padding: 20px 18px;
	overflow: hidden; transition: transform .2s var(--wz6-ease);
}
.wz6-stat:hover { transform: translateY(-3px); }
.wz6-stat::before {
	content: "";
	position: absolute; inset: 0;
	background-image: linear-gradient(90deg, rgba(244,202,68,.06) 1px, transparent 1px),
		linear-gradient(0deg, rgba(244,202,68,.06) 1px, transparent 1px);
	background-size: 12px 12px;
}
.wz6-stat::after {
	content: "";
	position: absolute; top: 0; left: 0; width: 10px; height: 10px;
	border-top: 2px solid var(--wz6-rust); border-left: 2px solid var(--wz6-rust);
}
.wz6-stat-num {
	position: relative; z-index: 1;
	font-family: var(--wz6-font-display); font-size: 28px; font-weight: 700;
	color: var(--wz6-rust);
	text-shadow: 0 0 18px rgba(244,202,68,.35);
}
.wz6-stat-label {
	position: relative; z-index: 1;
	font-family: var(--wz6-font-display); font-size: 10.5px; letter-spacing: .06em;
	color: rgba(247,247,245,.55); margin-top: 4px;
}
.wz6-project-feature { background: var(--wz6-ink); border-radius: 6px; padding: 32px; color: var(--wz6-paper); }
.wz6-project-feature h2 { color: var(--wz6-paper); font-family: var(--wz6-font-display); }
.wz6-project-feature p { color: rgba(247,247,245,.65); max-width: 60ch; margin: 12px 0 20px; }

/* ==========================================================
   FOOTER (özgün, Kadence'e bağımlı değil)
   ========================================================== */
.wz6-footer { background: var(--wz6-ink); color: rgba(247,247,245,.6); padding: 48px 28px 20px; }
.wz6-footer-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
@media (max-width: 900px) { .wz6-footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .wz6-footer-inner { grid-template-columns: 1fr; } }
.wz6-footer-brand { font-family: var(--wz6-font-display); font-weight: 700; font-size: 18px; color: var(--wz6-paper); margin-bottom: 6px; }
.wz6-footer-brand .wz6-bracket { color: var(--wz6-rust); }
.wz6-footer-tagline { font-family: var(--wz6-font-display); font-size: 11.5px; color: rgba(247,247,245,.45); }
.wz6-footer-col h4 { font-family: var(--wz6-font-display); font-size: 12px; color: var(--wz6-paper); margin-bottom: 14px; text-transform: uppercase; }
.wz6-footer-col ul { list-style: none; margin: 0; padding: 0; }
.wz6-footer-col li { margin-bottom: 9px; }
.wz6-footer-col a { font-size: 13.5px; color: rgba(247,247,245,.55); }
.wz6-footer-col a:hover { color: var(--wz6-rust); }
.wz6-social-row { display: flex; gap: 10px; margin-top: 8px; }
.wz6-social-row a { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid rgba(247,247,245,.25); display: flex; align-items: center; justify-content: center; }
.wz6-social-row a:hover { border-color: var(--wz6-rust); color: var(--wz6-rust); }
.wz6-footer-bottom { max-width: 1240px; margin: 28px auto 0; padding-top: 18px; border-top: 1px solid rgba(247,247,245,.12);
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--wz6-font-display); font-size: 11.5px; color: rgba(247,247,245,.4); }
.wz6-footer-bottom a { color: rgba(247,247,245,.4); margin-left: 16px; }
.wz6-footer-bottom a:hover { color: var(--wz6-paper); }

.wz6-to-top { position: fixed; right: 22px; bottom: 22px; width: 40px; height: 40px; border-radius: 50%;
	background: var(--wz6-ink); color: var(--wz6-paper); display: flex; align-items: center; justify-content: center;
	opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; z-index: 60; border: 1.5px solid var(--wz6-ink); }
.wz6-to-top.is-visible { opacity: 1; pointer-events: auto; }
.wz6-to-top:hover { background: var(--wz6-rust); border-color: var(--wz6-rust); color: var(--wz6-ink); transform: translateY(-3px); }

/* ==========================================================
   HAFTANIN ÜRÜNÜ — dinamik/teknolojik kart
   ========================================================== */
.wz6-product-card {
	display: block;
	position: relative;
	background: var(--wz6-ink);
	border: 1.5px solid var(--wz6-ink);
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 22px;
	box-shadow: 0 0 0 0 rgba(244,202,68,.4);
	animation: wz6-product-pulse 2.6s ease-in-out infinite;
}
@keyframes wz6-product-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(244,202,68,.35); }
	50%      { box-shadow: 0 0 0 6px rgba(244,202,68,0); }
}
.wz6-product-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.wz6-product-img img { width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: transform .5s ease; }
.wz6-product-card:hover .wz6-product-img img { transform: scale(1.06); }
.wz6-product-corner { position: absolute; width: 16px; height: 16px; border-color: var(--wz6-rust); }
.wz6-product-corner.tl { top: 10px; left: 10px; border-top: 2px solid; border-left: 2px solid; }
.wz6-product-corner.br { bottom: 10px; right: 10px; border-bottom: 2px solid; border-right: 2px solid; }

.wz6-product-scan {
	position: absolute; left: 0; right: 0; top: 0; height: 2px;
	background: linear-gradient(90deg, transparent, var(--wz6-petrol), var(--wz6-rust), transparent);
	z-index: 3;
	animation: wz6-scan-move 3.5s linear infinite;
}
@keyframes wz6-scan-move {
	0%   { top: 0; opacity: 0; }
	5%   { opacity: 1; }
	95%  { opacity: 1; }
	100% { top: 100%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
	.wz6-product-card { animation: none; }
	.wz6-product-scan { display: none; }
}

.wz6-product-body { padding: 18px; position: relative; z-index: 2; }
.wz6-product-tag {
	display: inline-block; font-family: var(--wz6-font-display); font-size: 10.5px; font-weight: 700;
	letter-spacing: .04em; color: var(--wz6-ink); background: var(--wz6-rust); padding: 4px 10px; border-radius: 3px;
	margin-bottom: 10px;
}
.wz6-product-body h3 { font-family: var(--wz6-font-display); color: var(--wz6-paper); font-size: 16.5px; line-height: 1.3; margin-bottom: 10px; }
.wz6-product-body .wz6-ref { color: var(--wz6-petrol); margin-bottom: 4px; }
.wz6-product-body .wz6-ref::before { background: var(--wz6-petrol); }
.wz6-product-cta {
	display: flex; align-items: center; gap: 6px; margin-top: 12px;
	font-family: var(--wz6-font-display); font-size: 12px; font-weight: 700; color: var(--wz6-paper);
}
.wz6-product-arrow { transition: transform .2s ease; }
.wz6-product-card:hover .wz6-product-arrow { transform: translateX(4px); color: var(--wz6-rust); }

/* ==========================================================
   GÖRSEL KİMLİK GÜÇLENDİRME — "teknoloji meraklısı" hissi
   (Yalnızca CSS — yapı/HTML/PHP değişmedi)
   ========================================================== */

/* Arka plan artık tek düz renk (#F6F8F9) — ızgara/devre dokusu kaldırıldı */
body {
	background-image: none !important;
	background-color: var(--wz6-paper) !important;
}

/* Sticky footer: kısa sayfalarda bile footer en alta yapışsın, altta boşluk kalmasın */
html, body { height: 100%; }
body { display: flex !important; flex-direction: column !important; align-items: stretch !important; min-height: 100vh; }
.wz6-header { flex: 0 0 auto !important; width: 100% !important; }
main { flex: 1 0 auto !important; width: 100% !important; }
.wz6-footer { flex: 0 0 auto !important; width: 100% !important; margin-top: auto !important; }

/* Koyu panellerin üstüne "terminal pencere" noktaları */
.wz6-feature-overlay::before,
.wz6-product-body::before,
.wz6-archive-hero::before,
.wz6-project-feature::before {
	content: "";
	position: absolute;
	top: 14px; left: 16px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--wz6-rust);
	box-shadow: 16px 0 0 var(--wz6-petrol), 32px 0 0 rgba(247,247,245,.3);
	opacity: .85;
}
.wz6-archive-hero, .wz6-project-feature, .wz6-feature, .wz6-product-body { position: relative; }
.wz6-feature-overlay { padding-top: 34px; }
.wz6-product-body { padding-top: 30px; }
.wz6-archive-hero { padding-top: 46px; }
.wz6-project-feature { padding-top: 46px; }

/* Bölüm başlıklarına yanıp sönen terminal imleci */
.wz6-section-head h2::before {
	content: "";
	display: inline-block;
	width: 9px; height: 16px;
	background: var(--wz6-rust);
	margin-right: 10px;
	vertical-align: -2px;
	animation: wz6-cursor-blink 1.1s step-end infinite;
}
@keyframes wz6-cursor-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wz6-section-head h2::before { animation: none; } }

/* Kart hover: düz offset gölge yerine parlama */
.wz6-card:hover {
	box-shadow: 0 0 0 1.5px var(--wz6-rust), 0 14px 30px rgba(244,202,68,.18);
}
.wz6-cat-card:hover {
	box-shadow: 0 0 0 1.5px var(--wz6-rust), 0 14px 26px rgba(244,202,68,.15);
}

/* Kategori ikonlarına dairesel rozet zemini + hover renk geçişi */
.wz6-cat-card svg {
	background: var(--wz6-paper-2);
	border-radius: 50%;
	padding: 6px;
	width: 28px; height: 28px;
	box-sizing: border-box;
	margin-bottom: 6px;
	transition: background .2s ease, transform .2s ease;
}
.wz6-cat-card:hover svg {
	background: var(--wz6-petrol);
	stroke: var(--wz6-paper);
	transform: rotate(-6deg) scale(1.06);
}

/* Popüler liste: numaralı terminal satırları hissi */
.wz6-side-card2 h3 {
	display: flex; align-items: center; gap: 8px;
}
.wz6-side-card2 h3::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--wz6-line);
}

/* Logo'ya hafif bir parıltı animasyonu (bracket'lerde) */
.wz6-logo .wz6-bracket { animation: wz6-bracket-glow 3s ease-in-out infinite; }
@keyframes wz6-bracket-glow {
	0%, 100% { opacity: 1; }
	50% { opacity: .55; }
}
@media (prefers-reduced-motion: reduce) { .wz6-logo .wz6-bracket { animation: none; } }

/* Butonlarda taramalı hover (teknik/dijital his) */
.wz6-btn-fill { position: relative; overflow: hidden; }
.wz6-btn-fill::after {
	content: "";
	position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
	background: linear-gradient(120deg, transparent, rgba(247,247,245,.25), transparent);
	transform: skewX(-20deg);
	transition: left .5s ease;
}
.wz6-btn-fill:hover::after { left: 130%; }

/* ==========================================================
   ARAMA KUTUSU (sabit, her zaman görünür)
   ========================================================== */
.wz6-header-right { display: flex; align-items: center; gap: 10px; }
.wz6-search-static {
	display: flex; align-items: center; gap: 7px;
	border: 1.5px solid var(--wz6-line); border-radius: 999px;
	padding: 6px 12px; background: var(--wz6-white);
}
.wz6-search-static svg { color: var(--wz6-ink-dim); flex: 0 0 14px; }
.wz6-search-static input {
	border: none; outline: none; background: transparent;
	font-family: var(--wz6-font-body); font-size: 13px; color: var(--wz6-ink); width: 80px;
}
.wz6-search-static input::placeholder { color: var(--wz6-ink-dim); }
.wz6-search-static:focus-within { border-color: var(--wz6-rust); }
@media (max-width: 700px) { .wz6-search-static { display: none; } }

/* ==========================================================
   HAFTANIN ÜRÜNÜ — tarama çizgisi yerine parıldama efekti
   ========================================================== */
.wz6-product-scan { display: none !important; }

.wz6-product-card { position: relative; }
.wz6-product-card::before {
	content: "";
	position: absolute; inset: -2px;
	background: conic-gradient(from 0deg, var(--wz6-rust), transparent 25%, transparent 75%, var(--wz6-rust));
	border-radius: 8px;
	z-index: 0;
	animation: wz6-glow-spin 4s linear infinite;
	opacity: .8;
}
.wz6-product-card::after {
	content: "";
	position: absolute; inset: 1.5px;
	background: var(--wz6-ink);
	border-radius: 6px;
	z-index: 1;
}
.wz6-product-img, .wz6-product-body { position: relative; z-index: 2; }
@keyframes wz6-glow-spin { to { transform: rotate(360deg); } }

.wz6-product-tag {
	position: relative;
	animation: wz6-sparkle-pulse 1.6s ease-in-out infinite;
}
@keyframes wz6-sparkle-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(244,202,68,.55); }
	50%      { box-shadow: 0 0 10px 3px rgba(244,202,68,.55); }
}

@media (prefers-reduced-motion: reduce) {
	.wz6-product-card::before { animation: none; }
	.wz6-product-tag { animation: none; }
}

/* ==========================================================
   YÜKLENEN GÖRSEL LOGO (Özelleştir > Site Kimliği'nden)
   ========================================================== */
.wz6-logo-img { display: flex; align-items: center; flex: 0 0 auto; }
.wz6-logo-img img { max-height: 34px; width: auto; display: block; }
.wz6-logo-img a { display: flex; align-items: center; }
.wz6-footer-brand-img { display: inline-block; background: var(--wz6-paper); padding: 8px 14px; border-radius: 6px; }
.wz6-footer-brand-img img { max-height: 26px; width: auto; }

/* LinkedIn profil butonu */
.wz6-linkedin-btn {
	display: inline-flex; align-items: center; gap: 9px;
	background: var(--wz6-ink); color: var(--wz6-paper);
	font-family: var(--wz6-font-display); font-weight: 600; font-size: 13px;
	padding: 11px 20px; border-radius: 999px; border: 1.5px solid var(--wz6-ink);
	transition: background .2s ease, transform .2s ease;
}
.wz6-linkedin-btn:hover { background: #0A66C2; border-color: #0A66C2; transform: translateY(-2px); }

/* ==========================================================
   YENİ LOGO — W rozeti + başlık + slogan
   ========================================================== */
.wz6-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.wz6-logo-badge {
	width: 36px; height: 36px; border-radius: 9px; flex: 0 0 36px;
	background: linear-gradient(135deg, var(--wz6-rust) 0%, #E0A518 100%);
	color: var(--wz6-ink); display: flex; align-items: center; justify-content: center;
	font-family: var(--wz6-font-display); font-weight: 800; font-size: 17px;
}
.wz6-logo-text {
	display: flex; flex-direction: column; line-height: 1.15;
	font-family: var(--wz6-font-display); font-weight: 700; font-size: 19px; color: var(--wz6-ink);
}
.wz6-logo-text small {
	font-family: var(--wz6-font-body); font-weight: 500; font-size: 10.5px; color: var(--wz6-ink-dim); letter-spacing: .02em;
}

/* Giriş Yap butonu */
.wz6-login-btn {
	display: inline-flex; align-items: center; gap: 7px;
	background: var(--wz6-rust); color: var(--wz6-ink);
	font-family: var(--wz6-font-display); font-weight: 700; font-size: 12.5px;
	padding: 8px 16px; border-radius: 999px; white-space: nowrap;
	transition: background .2s ease, transform .2s ease;
}
.wz6-login-btn:hover { background: var(--wz6-rust-deep); transform: translateY(-2px); }
@media (max-width: 900px) { .wz6-login-btn span { display: none; } }

/* ==========================================================
   HERO SAĞ PANEL — numaralı En Popüler Yazılar listesi
   ========================================================== */
.wz6-hero-popular {
	background: var(--wz6-white); border: 1.5px solid var(--wz6-line); border-radius: 6px;
	padding: 20px; height: 460px; display: flex; flex-direction: column; overflow: hidden;
}
.wz6-hero-popular-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; flex: 0 0 auto; }
.wz6-hero-popular-head h2 { font-family: var(--wz6-font-display); font-size: 15px; }
.wz6-hero-popular-head a { font-family: var(--wz6-font-display); font-size: 11px; color: var(--wz6-rust-text); white-space: nowrap; }

.wz6-hero-popular-item {
	display: flex; align-items: center; gap: 12px;
	padding: 11px 0; border-top: 1px solid var(--wz6-line);
	flex: 1 1 0; min-height: 0;
}
.wz6-hero-popular-item:first-of-type { border-top: none; }
.wz6-hero-popular-num {
	width: 24px; height: 24px; border-radius: 50%; background: var(--wz6-rust); color: var(--wz6-ink);
	font-family: var(--wz6-font-display); font-weight: 700; font-size: 12px;
	display: flex; align-items: center; justify-content: center; flex: 0 0 24px;
}
.wz6-hero-popular-item img {
	width: 52px; height: 52px; border-radius: 6px; object-fit: cover; flex: 0 0 52px;
}
.wz6-hero-popular-info { min-width: 0; }
.wz6-hero-popular-info h4 {
	font-size: 13px; line-height: 1.35; margin-bottom: 4px; color: var(--wz6-ink);
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wz6-hero-popular-info .wz6-meta { font-size: 10.5px; gap: 8px; }

@media (max-width: 980px) {
	.wz6-hero-popular { height: auto; }
	.wz6-hero-popular-item { flex: none !important; min-height: auto !important; }
}

/* ==========================================================
   KART: renkli kategori etiketi (görsel üzerinde) + açıklama
   ========================================================== */
.wz6-card-tag {
	position: absolute !important; top: 10px; left: 10px; z-index: 5;
	font-family: var(--wz6-font-display); font-size: 10px; font-weight: 700;
	letter-spacing: .03em; padding: 5px 10px; border-radius: 4px;
}
.wz6-card-excerpt {
	font-size: 13px; line-height: 1.5; color: var(--wz6-ink-dim); margin: 0 0 12px;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wz6-card-author { justify-content: space-between; }

/* Kart hover'ında kategori renginden hafif bir parlama (dinamiklik) */
.wz6-card { transition: transform .2s var(--wz6-ease), border-color .2s ease, box-shadow .2s ease, background .3s ease; }
.wz6-card:hover .wz6-card-tag { transform: scale(1.06); transition: transform .2s ease; }

/* ==========================================================
   İLETİŞİM FORMU
   ========================================================== */
.wz6-contact-form { display: flex; flex-direction: column; gap: 16px; }
.wz6-form-row { display: flex; flex-direction: column; gap: 6px; }
.wz6-form-row label {
	font-family: var(--wz6-font-display); font-size: 12px; font-weight: 700;
	color: var(--wz6-ink); text-transform: uppercase; letter-spacing: .02em;
}
.wz6-form-row input[type="text"],
.wz6-form-row input[type="email"],
.wz6-form-row select,
.wz6-form-row textarea {
	border: 1.5px solid var(--wz6-line); border-radius: 5px; padding: 11px 14px;
	font-family: var(--wz6-font-body); font-size: 14px; color: var(--wz6-ink);
	background: var(--wz6-white); transition: border-color .2s ease;
}
.wz6-form-row input:focus, .wz6-form-row select:focus, .wz6-form-row textarea:focus {
	outline: none; border-color: var(--wz6-rust);
}
.wz6-form-row textarea { resize: vertical; min-height: 130px; }
.wz6-contact-form .wz6-btn { align-self: flex-start; }

.wz6-form-notice {
	padding: 14px 18px; border-radius: 5px; font-size: 14px; margin-bottom: 18px;
	font-family: var(--wz6-font-body);
}
.wz6-form-notice-ok { background: rgba(16,185,129,.1); border: 1.5px solid #10B981; color: #0a7a56; }
.wz6-form-notice-err { background: rgba(239,68,68,.08); border: 1.5px solid #EF4444; color: #b91c1c; }

/* ==========================================================
   FOOTER ALTINDAKİ BOŞLUĞU GİDERME + KURUMSAL İNCE AYAR
   ========================================================== */
html, body { margin: 0 !important; padding: 0 !important; }
body { min-height: 100vh; }
/* Kadence'ten veya eklentilerden kalabilecek boş sarmalayıcıları gizle */
.site-footer:empty, #colophon:empty, .site > footer:not(.wz6-footer) { display: none !important; }

.wz6-footer { position: relative; }
.wz6-footer::before {
	content: "";
	position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--wz6-rust), var(--wz6-petrol), var(--wz6-rust));
	background-size: 200% 100%;
	animation: wz6-footer-shimmer 4s linear infinite;
}
@keyframes wz6-footer-shimmer { to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .wz6-footer::before { animation: none; } }

.wz6-footer-bottom a { text-decoration: none; }
.wz6-footer-bottom a:hover { color: var(--wz6-rust); }

/* ==========================================================
   HEADER — koyu devre kartı zemine göre metin renkleri
   ========================================================== */
.wz6-header-inner { position: relative; z-index: 1; }
.wz6-logo-text { color: var(--wz6-paper) !important; }
.wz6-logo-text small { color: rgba(247,248,249,.5) !important; }
@media (min-width: 861px) {
	.wz6-nav a { color: rgba(247,248,249,.7) !important; }
	.wz6-nav a:hover { background: rgba(244,202,68,.12) !important; color: var(--wz6-paper) !important; }
	.wz6-nav .is-current a { background: var(--wz6-rust) !important; color: var(--wz6-ink) !important; }
}
.wz6-dropdown-panel { background: var(--wz6-white); }
.wz6-dropdown-panel li a { color: var(--wz6-ink) !important; }
.wz6-search-static {
	background: rgba(20,23,26,.65) !important;
	backdrop-filter: blur(6px);
	border: 1.5px solid rgba(244,202,68,.3) !important;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 0 0 0 rgba(244,202,68,0);
	transition: border-color .25s ease, box-shadow .25s ease;
}
.wz6-search-static svg { color: var(--wz6-rust) !important; flex: 0 0 14px; animation: wz6-search-pulse 2.4s ease-in-out infinite; }
@keyframes wz6-search-pulse {
	0%, 100% { opacity: .55; }
	50% { opacity: 1; }
}
.wz6-search-static input { background: transparent !important; color: var(--wz6-paper) !important; }
.wz6-search-static input::placeholder { color: rgba(247,248,249,.45) !important; }
.wz6-search-static:focus-within {
	border-color: var(--wz6-rust) !important;
	box-shadow: 0 0 0 3px rgba(244,202,68,.15), 0 0 14px rgba(244,202,68,.25) !important;
}
.wz6-search-static:focus-within svg { animation: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) { .wz6-search-static svg { animation: none; } }
@media (max-width: 700px) { .wz6-search-static { display: none; } }
.wz6-burger span { background: var(--wz6-paper); }

/* ==========================================================
   HAKKIMIZDA — dinamik ilgi alanı rozetleri (istatistik yerine)
   ========================================================== */
.wz6-interest-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 4px; }
.wz6-interest-badge {
	position: relative; overflow: hidden;
	font-family: var(--wz6-font-display); font-size: 12px; font-weight: 700;
	color: var(--wz6-paper); background: var(--wz6-ink);
	padding: 9px 16px; border-radius: 999px;
	transition: transform .2s var(--wz6-ease);
}
.wz6-interest-badge::before {
	content: "";
	position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
	background: linear-gradient(120deg, transparent, rgba(244,202,68,.5), transparent);
	transform: skewX(-20deg);
	animation: wz6-badge-shine 3.2s ease-in-out infinite;
}
.wz6-interest-badge:nth-child(2)::before { animation-delay: .4s; }
.wz6-interest-badge:nth-child(3)::before { animation-delay: .8s; }
.wz6-interest-badge:nth-child(4)::before { animation-delay: 1.2s; }
.wz6-interest-badge:nth-child(5)::before { animation-delay: 1.6s; }
.wz6-interest-badge:nth-child(6)::before { animation-delay: 2s; }
@keyframes wz6-badge-shine {
	0% { left: -60%; }
	40%, 100% { left: 130%; }
}
.wz6-interest-badge:hover { transform: translateY(-2px); background: var(--wz6-rust); color: var(--wz6-ink); }
@media (prefers-reduced-motion: reduce) { .wz6-interest-badge::before { animation: none; } }

/* ==========================================================
   ÖZEL LOGO (Görünüm > Özelleştir > Site Kimliği'nden yüklenen)
   ========================================================== */
.wz6-logo img.wz6-logo-file { max-height: 44px; width: auto; display: block; }
.wz6-footer-brand-img img { max-height: 36px; width: auto; display: block; }
.wz6-footer-brand-img.wz6-footer-brand { background: none; }

/* ==========================================================
   En Popüler Yazılar — JS ile dönen "trend" vurgusu
   ========================================================== */
.wz6-hero-popular-item { transition: background .35s ease, padding-left .35s ease; border-radius: 5px; }
.wz6-hero-popular-item.is-trending {
	background: rgba(244,202,68,.08);
	padding-left: 8px; margin-left: -8px;
}
.wz6-hero-popular-item.is-trending .wz6-hero-popular-num {
	box-shadow: 0 0 0 4px rgba(244,202,68,.25);
	transition: box-shadow .35s ease;
}

/* Giriş Yap butonu pasif — tıklanınca hiçbir yere gitmiyor */
.wz6-login-btn-disabled { cursor: default; pointer-events: none; }

/* ==========================================================
   MOBİL GENEL SAĞLAMLAŞTIRMA
   ========================================================== */
body { overflow-x: hidden; }
@media (max-width: 480px) {
	.wz6-header-inner { padding: 8px 14px; gap: 10px; }
	.wz6-header-right { gap: 6px; }
	.wz6-login-btn { padding: 7px 10px; }
	.wz6-burger { flex: 0 0 auto; }
}

/* ==========================================================
   KIYASLA — ürün karşılaştırma paneli
   ========================================================== */
.wz6-kiyasla-tabs { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.wz6-kiyasla-tab {
	font-family: var(--wz6-font-display); font-weight: 700; font-size: 13px;
	background: var(--wz6-white); border: 1.5px solid var(--wz6-line); color: var(--wz6-ink-dim);
	padding: 11px 22px; border-radius: 999px; cursor: pointer; transition: all .2s ease;
}
.wz6-kiyasla-tab:hover { border-color: var(--wz6-ink); color: var(--wz6-ink); }
.wz6-kiyasla-tab.is-active { background: var(--wz6-ink); border-color: var(--wz6-ink); color: var(--wz6-rust); }

.wz6-kiyasla-pickers { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: end; margin-bottom: 30px; }
@media (max-width: 640px) { .wz6-kiyasla-pickers { grid-template-columns: 1fr; } }
.wz6-kiyasla-picker { display: flex; flex-direction: column; gap: 6px; }
.wz6-kiyasla-picker label {
	font-family: var(--wz6-font-display); font-size: 11px; font-weight: 700;
	color: var(--wz6-ink-dim); text-transform: uppercase; letter-spacing: .03em;
}
.wz6-kiyasla-picker select {
	border: 1.5px solid var(--wz6-line); border-radius: 5px; padding: 12px 14px;
	font-family: var(--wz6-font-body); font-size: 14px; color: var(--wz6-ink); background: var(--wz6-white);
}
.wz6-kiyasla-picker select:focus { outline: none; border-color: var(--wz6-rust); }
.wz6-kiyasla-vs {
	font-family: var(--wz6-font-display); font-weight: 800; font-size: 15px; color: var(--wz6-rust);
	background: var(--wz6-ink); width: 40px; height: 40px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; margin-bottom: 2px;
}
@media (max-width: 640px) { .wz6-kiyasla-vs { justify-self: center; } }

.wz6-kiyasla-heads { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; margin-bottom: 4px; }
.wz6-kiyasla-head {
	font-size: 14px; text-align: center; background: var(--wz6-ink); color: var(--wz6-paper);
	padding: 14px; border-radius: 6px 6px 0 0;
}
.wz6-kiyasla-heads > div:nth-child(2) { width: 0; }
@media (max-width: 640px) { .wz6-kiyasla-heads { grid-template-columns: 1fr 1fr; } .wz6-kiyasla-heads > div:nth-child(2) { display: none; } }

.wz6-kiyasla-table { border: 1.5px solid var(--wz6-line); border-radius: 0 0 6px 6px; overflow: hidden; }
.wz6-kiyasla-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--wz6-line); }
.wz6-kiyasla-row:first-child { border-top: none; }
.wz6-kiyasla-row.is-diff { background: rgba(244,202,68,.07); }
.wz6-kiyasla-cell { padding: 12px 14px; font-size: 13.5px; }
.wz6-kiyasla-val { text-align: center; color: var(--wz6-ink); font-weight: 600; word-break: break-word; }
.wz6-kiyasla-label {
	text-align: center; font-family: var(--wz6-font-display); font-size: 10.5px;
	color: var(--wz6-ink-dim); text-transform: uppercase; letter-spacing: .02em;
	background: var(--wz6-paper-2); white-space: nowrap; padding: 12px 16px;
}
@media (max-width: 640px) {
	.wz6-kiyasla-row { grid-template-columns: 1fr 1fr; }
	.wz6-kiyasla-label { grid-column: 1 / -1; order: -1; text-align: left; }
}

/* ==========================================================
   KIYASLA — kazanan rozeti ve SEO metin bölümü
   ========================================================== */
.wz6-kiyasla-val.is-winner {
	color: #0a7a56 !important; font-weight: 700;
	background: rgba(16,185,129,.08);
	border-radius: 4px;
}
.wz6-kiyasla-val.is-loser {
	color: #b91c1c !important;
	background: rgba(239,68,68,.06);
	border-radius: 4px;
}
.wz6-kiyasla-badge {
	display: inline-flex; align-items: center; justify-content: center;
	width: 16px; height: 16px; border-radius: 50%; color: #fff;
	font-size: 9px; margin-left: 4px; vertical-align: middle;
}
.wz6-kiyasla-badge-up { background: #10B981; }
.wz6-kiyasla-badge-down { background: #EF4444; }
.wz6-kiyasla-seo { max-width: none; margin-top: 40px; padding-top: 30px; border-top: 2px solid var(--wz6-line); }
.wz6-kiyasla-seo h2 { font-size: 22px; margin-bottom: 16px; }
.wz6-kiyasla-seo p { font-size: 16px; }

/* ==========================================================
   TEKİL YAZI — kapak görseli + bilgi kartı yan yana
   ========================================================== */
.wz6-single-media { display: grid; grid-template-columns: 2.2fr 1fr; gap: 20px; margin: 0 0 30px; align-items: stretch; }
@media (max-width: 780px) { .wz6-single-media { grid-template-columns: 1fr; } }
.wz6-single-media .wz6-single-cover { margin: 0; height: 100%; min-height: 220px; }
.wz6-single-info-card {
	background: var(--wz6-ink); border-radius: 6px; padding: 20px; color: var(--wz6-paper);
	display: flex; flex-direction: column; justify-content: space-between;
}
.wz6-single-info-card h4 { font-family: var(--wz6-font-display); font-size: 13px; color: var(--wz6-rust); text-transform: uppercase; margin-bottom: 14px; }
.wz6-single-info-card ul { list-style: none; margin: 0 0 16px; padding: 0; }
.wz6-single-info-card li { font-size: 13px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(247,248,249,.85); }
.wz6-single-info-card li:first-child { border-top: none; }
.wz6-single-info-card li a { color: var(--wz6-rust); }
.wz6-single-info-share { display: flex; align-items: center; gap: 8px; }
.wz6-single-info-share span { font-family: var(--wz6-font-display); font-size: 11px; color: rgba(247,248,249,.5); margin-right: 4px; }
.wz6-single-info-share a { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.2); color: rgba(247,248,249,.8); display: flex; align-items: center; justify-content: center; }
.wz6-single-info-share a:hover { border-color: var(--wz6-rust); color: var(--wz6-rust); }

/* ==========================================================
   BLOG SAYFASI — kurumsal, tek renkli "durum ışığı" pilleri
   ========================================================== */
.wz6-blog-cat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.wz6-blog-cat-pill {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--wz6-font-display); font-weight: 600; font-size: 11px; letter-spacing: .02em;
	color: rgba(247,247,245,.65); background: rgba(255,255,255,.04);
	border: 1px solid rgba(247,247,245,.14);
	padding: 8px 14px; border-radius: 4px;
	opacity: 0; transform: translateY(6px);
	transition: opacity .3s ease, transform .3s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.wz6-blog-cat-pill.is-in { opacity: 1; transform: translateY(0); }
.wz6-blog-cat-dot {
	width: 6px; height: 6px; border-radius: 50%; background: var(--wz6-rust); flex: 0 0 6px;
	animation: wz6-cat-dot-pulse 2.4s ease-in-out infinite;
}
.wz6-blog-cat-pill:nth-child(3n+1) .wz6-blog-cat-dot { animation-delay: 0s; }
.wz6-blog-cat-pill:nth-child(3n+2) .wz6-blog-cat-dot { animation-delay: .5s; }
.wz6-blog-cat-pill:nth-child(3n+3) .wz6-blog-cat-dot { animation-delay: 1s; }
@keyframes wz6-cat-dot-pulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; box-shadow: 0 0 6px var(--wz6-rust); } }
.wz6-blog-cat-count {
	font-size: 9.5px; color: rgba(247,247,245,.4); border-left: 1px solid rgba(247,247,245,.2);
	padding-left: 7px; margin-left: 1px;
}
.wz6-blog-cat-pill:hover {
	background: var(--wz6-rust); border-color: var(--wz6-rust); color: var(--wz6-ink);
	transform: translateY(-2px);
}
.wz6-blog-cat-pill:hover .wz6-blog-cat-dot { background: var(--wz6-ink); animation: none; opacity: 1; box-shadow: none; }
.wz6-blog-cat-pill:hover .wz6-blog-cat-count { color: rgba(26,26,26,.6); border-left-color: rgba(26,26,26,.25); }
@media (prefers-reduced-motion: reduce) { .wz6-blog-cat-dot { animation: none; } }

/* Rehber (IT destek) kategorisi — büyük, belirgin destek ikonu */
.wz6-archive-hero-icon-lg {
	width: 150px !important; height: 150px !important; opacity: .22 !important;
	right: 30px !important;
}
@media (max-width: 640px) { .wz6-archive-hero-icon-lg { width: 90px !important; height: 90px !important; } }
