/* ═══════════════════════════════════════════════════════════════════════════
   HABERIBUL - Profesyonel Haber Portalı
   Modern, Minimal & Sofistike Tasarım
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
	/* Renk Paleti - Sofistike Kırmızı & Nötr Tonlar */
	--bg: #fafafa;
	--bg-secondary: #f3f4f6;
	--bg-card: #ffffff;
	--bg-elevated: #ffffff;
	--text: #0f172a;
	--text-secondary: #475569;
	--muted: #94a3b8;
	--accent: #e11d48;
	--accent-hover: #be123c;
	--accent-light: rgba(225, 29, 72, 0.08);
	--accent-glow: rgba(225, 29, 72, 0.15);
	--blue: #3b82f6;
	--green: #10b981;
	--orange: #f97316;
	--purple: #8b5cf6;
	--border: #e2e8f0;
	--border-light: #f1f5f9;
	--shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
	--shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
	--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
	--shadow-glow: 0 0 40px rgba(225, 29, 72, 0.12);
	--radius: 6px;
	--radius-lg: 12px;
	--radius-xl: 16px;
	--font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-display: 'Playfair Display', Georgia, serif;
	--font-mono: 'JetBrains Mono', 'Fira Code', monospace;
	--transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="dark"] {
	--bg: #0a0a0b;
	--bg-secondary: #111113;
	--bg-card: #18181b;
	--bg-elevated: #1f1f23;
	--text: #f4f4f5;
	--text-secondary: #a1a1aa;
	--muted: #71717a;
	--accent-light: rgba(225, 29, 72, 0.12);
	--accent-glow: rgba(225, 29, 72, 0.2);
	--border: #27272a;
	--border-light: #1f1f23;
	--shadow-xs: 0 1px 2px rgba(0,0,0,0.2);
	--shadow: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -2px rgba(0,0,0,0.2);
	--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -4px rgba(0,0,0,0.3);
	--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.5), 0 8px 10px -6px rgba(0,0,0,0.3);
	--shadow-glow: 0 0 60px rgba(225, 29, 72, 0.2);
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	overflow-x: hidden;
	scroll-padding-top: 80px;
}

body {
	margin: 0;
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
	min-height: 100vh;
	font-feature-settings: "kern" 1, "liga" 1;
}

/* Selection styling */
::selection {
	background: var(--accent);
	color: white;
}

::-moz-selection {
	background: var(--accent);
	color: white;
}

/* Focus visible for accessibility */
:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
	background: var(--border);
	border-radius: 5px;
	border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--muted);
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--accent);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* Smooth image loading */
img {
	opacity: 1;
	transition: opacity var(--transition);
}

img[loading="lazy"] {
	opacity: 0;
}

img.loaded,
img[loading="lazy"][src]:not([src=""]) {
	opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER - Üst Bilgi Çubuğu
   ═══════════════════════════════════════════════════════════════════════════ */

.site-header {
	background: var(--bg-card);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.95);
}

html[data-theme="dark"] .site-header {
	background: rgba(24, 24, 27, 0.95);
}

/* Canlı Akış Ticker */
.top-bar {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
	color: #fff;
	display: flex;
	align-items: center;
	padding: 0;
	font-size: 13px;
	overflow: hidden;
	position: relative;
}

.top-bar::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
	animation: shimmer-bar 3s infinite;
}

@keyframes shimmer-bar {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

.ticker-label {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(8px);
	color: #fff;
	padding: 10px 20px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 1px;
	white-space: nowrap;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ticker {
	flex: 1;
	overflow: hidden;
	position: relative;
}

.ticker-track {
	display: flex;
	animation: ticker 15s linear infinite;
	white-space: nowrap;
}

.ticker-card {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 28px;
	color: #fff;
	border-right: 1px solid rgba(255,255,255,0.15);
	transition: all var(--transition-fast);
}

.ticker-card:hover {
	background: rgba(255,255,255,0.1);
	color: #fff;
}

.ticker-card strong {
	font-weight: 500;
	font-size: 13px;
}

.ticker-time {
	opacity: 0.8;
	font-size: 11px;
	font-weight: 500;
	background: rgba(0,0,0,0.2);
	padding: 2px 8px;
	border-radius: 4px;
}

.live-dot {
	width: 8px;
	height: 8px;
	background: #fff;
	border-radius: 50%;
	animation: pulse-glow 1.5s ease-in-out infinite;
	box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

@keyframes pulse-glow {
	0%, 100% { 
		opacity: 1;
		box-shadow: 0 0 8px rgba(255,255,255,0.6);
	}
	50% { 
		opacity: 0.5;
		box-shadow: 0 0 16px rgba(255,255,255,0.8);
	}
}

@keyframes ticker {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.top-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 16px;
	font-size: 12px;
	white-space: nowrap;
	flex-shrink: 0;
}

.theme-toggle {
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.8;
}

.theme-toggle:hover {
	opacity: 1;
}

.theme-toggle svg {
	width: 16px;
	height: 16px;
}

/* Data Strip - Borsa & Hava Durumu */
.data-strip {
	display: flex;
	align-items: stretch;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	font-size: 12px;
	overflow-x: auto;
	scrollbar-width: none;
}

.data-strip::-webkit-scrollbar {
	display: none;
}

.data-strip__scroller {
	display: flex;
	align-items: stretch;
	flex: 1;
	min-width: 0;
}

.data-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px;
	border-right: 1px solid var(--border-light);
	white-space: nowrap;
}

.data-card__title {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.data-card__title .pill {
	font-size: 10px;
	font-weight: 700;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.data-card__title small {
	font-size: 10px;
	color: var(--muted);
}

.data-card__value {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
}

.data-card__change {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
}

.data-card.up .data-card__change {
	color: var(--green);
}

.data-card.down .data-card__change {
	color: var(--accent);
}

.data-card__change .chevron {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}

.data-card.up .chevron {
	border-bottom: 5px solid var(--green);
}

.data-card.down .chevron {
	border-top: 5px solid var(--accent);
}

.data-card__change small {
	display: none;
}

.data-strip__divider {
	width: 1px;
	background: var(--border);
	margin: 4px 0;
}

.weather-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 8px 16px;
	white-space: nowrap;
}

.weather-card__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.weather-card__meta .pill {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.weather-card__meta .pill.ghost {
	color: var(--text);
}

.weather-card__meta small {
	font-size: 10px;
	color: var(--muted);
}

.weather-card__temperature {
	display: flex;
	flex-direction: column;
}

.weather-card__temperature strong {
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
}

.weather-card__temperature span {
	font-size: 10px;
	color: var(--muted);
}

.weather-card__stats {
	display: flex;
	gap: 12px;
}

.weather-card__stats li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.weather-card__stats span {
	font-size: 9px;
	color: var(--muted);
	text-transform: uppercase;
}

.weather-card__stats strong {
	font-size: 11px;
	font-weight: 600;
	color: var(--text);
}

/* Navigation Bar */
.nav-bar {
	background: transparent;
	position: relative;
}

.nav-container {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding: 16px 24px;
	gap: 32px;
	position: relative;
}

.logo {
	flex-shrink: 0;
	transition: transform var(--transition-fast);
}

.logo:hover {
	transform: scale(1.02);
}

.logo img {
	width: 140px;
	height: auto;
}

.primary-nav {
	flex: 1;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 2px;
}

.primary-nav a {
	display: block;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	border-radius: var(--radius);
	transition: all var(--transition-fast);
	position: relative;
}

.primary-nav a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--accent);
	transform: translateX(-50%);
	transition: width var(--transition-fast);
	border-radius: 1px;
}

.primary-nav a:hover {
	color: var(--accent);
	background: var(--accent-light);
}

.primary-nav a:hover::after {
	width: calc(100% - 24px);
}

.primary-nav a.active {
	background: var(--accent);
	color: #fff;
}

.primary-nav a.active::after {
	display: none;
}

.category-toggle-wrapper {
	position: relative;
}

.category-toggle {
	display: none;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	cursor: pointer;
}

.category-toggle svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}

.category-toggle.open svg {
	transform: rotate(180deg);
}

.category-dropdown {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--bg);
	border: none;
	border-radius: 0;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	z-index: 10001;
	padding: 0;
	transform: translateY(-10px);
	-webkit-overflow-scrolling: touch;
}

.category-dropdown.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

body.category-menu-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
}

.category-dropdown__header {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 10002;
	width: 100%;
	box-sizing: border-box;
}

.category-dropdown__header strong {
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
}

.category-dropdown__close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bg);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.category-dropdown__close:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.category-dropdown__close svg {
	width: 20px;
	height: 20px;
}

.category-dropdown__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 4px;
	padding: 16px 20px 40px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.category-dropdown__item {
	display: block;
	padding: 16px;
	border-radius: var(--radius);
	text-decoration: none;
	color: var(--text);
	transition: all 0.2s ease;
}

.category-dropdown__item:hover {
	background: var(--bg-secondary);
	color: var(--accent);
}

.category-dropdown__name {
	display: block;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
}

.category-dropdown__desc {
	display: block;
	font-size: 12px;
	color: var(--muted);
	line-height: 1.4;
}

@media (max-width: 768px) {
	.category-dropdown {
		padding: 0;
	}
	
	.category-dropdown__header {
		padding: 14px 16px;
		position: sticky;
		top: 0;
		background: var(--bg);
	}
	
	.category-dropdown__header strong {
		font-size: 18px;
	}
	
	.category-dropdown__grid {
		grid-template-columns: 1fr;
		padding: 12px 16px 60px;
		gap: 2px;
	}
	
	.category-dropdown__item {
		padding: 14px 16px;
		border-bottom: 1px solid var(--border-light, rgba(0,0,0,0.05));
	}
	
	.category-dropdown__item:last-child {
		border-bottom: none;
	}
	
	.category-dropdown__close {
		width: 32px;
		height: 32px;
	}
	
	.category-dropdown__close svg {
		width: 18px;
		height: 18px;
	}
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.search-form {
	display: flex;
	align-items: center;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all var(--transition-fast);
}

.search-form:focus-within {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-light);
}

.search-form input {
	border: none;
	background: transparent;
	padding: 10px 14px;
	font-size: 14px;
	width: 200px;
	color: var(--text);
	font-family: var(--font);
}

.search-form input::placeholder {
	color: var(--muted);
}

.search-form input:focus {
	outline: none;
}

.search-form button {
	background: transparent;
	border: none;
	padding: 10px 14px;
	cursor: pointer;
	color: var(--muted);
	display: flex;
	align-items: center;
	transition: color var(--transition-fast);
}

.search-form button:hover {
	color: var(--accent);
}

.search-form button svg {
	width: 18px;
	height: 18px;
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	border-radius: var(--radius-lg);
	border: none;
	cursor: pointer;
	transition: all var(--transition-fast);
	box-shadow: 0 2px 8px rgba(225, 29, 72, 0.25);
	position: relative;
	overflow: hidden;
}

.btn-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
	opacity: 0;
	transition: opacity var(--transition-fast);
}

.btn-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
	color: #fff;
}

.btn-cta:hover::before {
	opacity: 1;
}

.btn-cta:active {
	transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE WRAPPER
   ═══════════════════════════════════════════════════════════════════════════ */

.page-wrapper {
	max-width: 1320px;
	margin: 0 auto;
	padding: 32px 24px;
	width: 100%;
	overflow-x: hidden;
}

@media (max-width: 768px) {
	.page-wrapper {
		padding: 16px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-secondary { color: var(--text-secondary); }

.bg-card { background: var(--bg-card); }
.bg-elevated { background: var(--bg-elevated); }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Smooth transitions for interactive elements */
.interactive {
	transition: all var(--transition);
}

.interactive:hover {
	transform: translateY(-2px);
}

/* Glass effect */
.glass {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

html[data-theme="dark"] .glass {
	background: rgba(24, 24, 27, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOME PAGE - Ana Sayfa
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hero Section */
.home-hero {
	display: block;
	margin-bottom: 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.home-hero__main {
	margin-bottom: 20px;
}

.home-hero__main {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: var(--bg-secondary);
	margin-bottom: 32px;
	box-shadow: var(--shadow-lg);
}

.hero-carousel {
	position: relative;
	height: 480px;
	overflow: hidden;
	margin-bottom: 0;
	padding-bottom: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}

.hero-slide[data-active="true"] {
	opacity: 1;
	position: relative;
}

.hero-slide__media {
	display: block;
	height: 480px;
	position: relative;
	flex-shrink: 0;
	overflow: hidden;
}

.hero-slide__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-slide[data-active="true"] .hero-slide__image {
	transform: scale(1.05);
}

.hero-slide__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 70%;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
	pointer-events: none;
	z-index: 1;
}

.hero-slide__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 40px 32px;
	color: #fff;
	z-index: 2;
}

.hero-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
}

.hero-meta .pill {
	background: var(--accent);
	color: #fff;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: var(--radius);
	box-shadow: 0 2px 8px rgba(225, 29, 72, 0.4);
}

.hero-meta time {
	font-size: 13px;
	opacity: 0.9;
	font-weight: 500;
}

.hero-slide__content h1,
.hero-slide__content .hero-slide__title {
	margin: 0 0 12px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.25;
	font-family: var(--font-display);
	text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-slide__content h1 a,
.hero-slide__content .hero-slide__title a {
	color: #fff;
	transition: opacity var(--transition-fast);
}

.hero-slide__content h1 a:hover,
.hero-slide__content .hero-slide__title a:hover {
	opacity: 0.9;
}

.hero-slide__content p {
	margin: 0;
	font-size: 15px;
	opacity: 0.9;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 700px;
}

.hero-slide__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	font-size: 13px;
	opacity: 0.85;
}

.ghost-link {
	color: #fff;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(10px);
	border-radius: var(--radius);
	transition: all var(--transition-fast);
}

.ghost-link:hover {
	background: rgba(255,255,255,0.25);
	color: #fff;
	transform: translateX(4px);
}

.hero-carousel__nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 16px;
	z-index: 10;
}

.hero-carousel__nav button {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(10px);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition-fast);
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	opacity: 0;
}

.hero-carousel:hover .hero-carousel__nav button {
	opacity: 1;
}

.hero-carousel__nav button:hover {
	background: #fff;
	transform: scale(1.1);
	box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.hero-carousel__nav button:active {
	transform: scale(0.95);
}

.hero-carousel__nav button svg {
	width: 22px;
	height: 22px;
	color: var(--text);
}

/* Mobilde butonlar her zaman görünür */
@media (max-width: 1024px) {
	.hero-carousel__nav button {
		opacity: 1;
		width: 42px;
		height: 42px;
	}
	
	.hero-carousel__nav button svg {
		width: 20px;
		height: 20px;
	}
}

.hero-carousel__counter {
	position: absolute;
	bottom: 40px;
	right: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	padding: 10px 18px;
	border-radius: var(--radius-lg);
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	z-index: 10;
}

.hero-carousel__counter .hero-carousel__current {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.hero-carousel__counter .hero-carousel__separator {
	opacity: 0.5;
	margin: 0 4px;
}

.hero-carousel__counter .hero-carousel__total {
	opacity: 0.7;
	font-size: 14px;
}

.hero-carousel__dots {
	position: absolute;
	bottom: 40px;
	left: 40px;
	display: flex;
	gap: 10px;
	z-index: 15;
}

.hero-carousel__dots button {
	width: 32px;
	height: 6px;
	border-radius: 3px;
	background: rgba(255,255,255,0.4);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.hero-carousel__dots button .dot-indicator {
	display: none;
}

.hero-carousel__dots button::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: #fff;
	border-radius: 3px;
	transition: width 6s linear;
}

.hero-carousel__dots button.active {
	background: rgba(255,255,255,0.3);
}

.hero-carousel__dots button.active::after {
	width: 100%;
}

.hero-carousel__dots button:hover {
	background: rgba(255,255,255,0.6);
	transform: scaleY(1.3);
}

/* Hero Placeholder */
.hero-placeholder {
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bg-secondary), var(--bg));
	text-align: center;
	padding: 40px;
}

.hero-placeholder h1 {
	font-size: 20px;
	color: var(--text-secondary);
	margin: 12px 0;
}

.hero-placeholder p {
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 20px;
}

.hero-placeholder .pill.ghost {
	background: var(--border);
	color: var(--muted);
	padding: 4px 12px;
	font-size: 11px;
	border-radius: 2px;
}

/* Hero Sidebar */
.home-hero__side {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 0;
	grid-auto-rows: minmax(auto, max-content);
}

.hero-side__block {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px;
	transition: all var(--transition);
}

.hero-side__block:hover {
	box-shadow: var(--shadow);
	border-color: var(--border-light);
}

.hero-side__block header {
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero-side__block header h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero-side__block header h3::before {
	content: '';
	width: 4px;
	height: 18px;
	background: var(--accent);
	border-radius: 2px;
}

.hero-side__block header small {
	font-size: 11px;
	color: var(--muted);
}

.hero-side__list {
	display: flex;
	flex-direction: column;
}

.hero-side__list li {
	border-bottom: 1px solid var(--border-light);
}

.hero-side__list li:last-child {
	border-bottom: none;
}

.hero-side__list a {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
}

.hero-side__list strong {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--text);
	flex: 1;
}

.hero-side__list a:hover strong {
	color: var(--accent);
}

.hero-side__list span {
	font-size: 11px;
	color: var(--muted);
	flex-shrink: 0;
}

/* Trend List */
.hero-trend {
	counter-reset: trend;
}

.hero-trend li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--border-light);
}

.hero-trend li:last-child {
	border-bottom: none;
}

.hero-trend li > span {
	width: 24px;
	height: 24px;
	background: var(--accent);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	flex-shrink: 0;
}

.hero-trend li > div {
	flex: 1;
	min-width: 0;
}

.hero-trend a {
	display: block;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--text);
}

.hero-trend a:hover {
	color: var(--accent);
}

.hero-trend small {
	font-size: 11px;
	color: var(--muted);
}

/* Hero CTA */
.hero-side__cta {
	background: var(--accent);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 16px;
	text-align: center;
}

.hero-side__cta h4 {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 700;
}

.hero-side__cta p {
	margin: 0 0 12px;
	font-size: 12px;
	opacity: 0.9;
}

.hero-side__cta .btn-cta {
	background: #fff;
	color: var(--accent);
	width: 100%;
	justify-content: center;
}

.hero-side__cta .btn-cta:hover {
	background: var(--bg-secondary);
}

/* Hero Side - Köşe Yazıları Bölümü */
.hero-side__opinion {
	/* Grid pozisyonu media query'de ayarlanacak */
}

.hero-side__opinion-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero-side__opinion-list li {
	border-bottom: none;
	padding-bottom: 0;
}

.hero-side__opinion-list a {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 12px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.hero-side__opinion-list a:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
	border-color: var(--accent);
	background: var(--bg-card);
}

.opinion-item__image {
	width: 100%;
	height: 140px;
	background-size: cover;
	background-position: center;
	border-radius: var(--radius-sm);
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}

.opinion-item__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-side__opinion-list a:hover .opinion-item__image::after {
	opacity: 1;
}

.opinion-item__author {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 4px;
}

.opinion-item__avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), #b30000);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(220, 0, 0, 0.3);
}

.opinion-item__author strong {
	font-size: 13px;
	font-weight: 600;
	color: var(--text);
	flex: 1;
}

.hero-side__opinion-list p {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 63px;
}

.hero-side__opinion-list a:hover p {
	color: var(--accent);
}

.hero-side__opinion-list small {
	font-size: 11px;
	color: var(--muted);
	font-weight: 500;
}

.hero-side__more-link {
	display: block;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--border-light);
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	color: var(--accent);
	text-decoration: none;
}

.hero-side__more-link:hover {
	text-decoration: underline;
}

@media (min-width: 1025px) {
	/* 2 bölme: Manşet akışı (sol), Trend (sağ) */
	.home-hero__side {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */

.section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border);
	position: relative;
}

.section-head::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
	border-radius: 2px;
}

.section-head h2 {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: var(--text);
	font-family: var(--font-display);
}

.section-head p {
	margin: 4px 0 0;
	font-size: 13px;
	color: var(--muted);
}

.section-head .ghost-link {
	color: var(--accent);
	font-size: 13px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: var(--accent-light);
	border-radius: var(--radius);
	transition: all var(--transition-fast);
}

.section-head .ghost-link:hover {
	background: var(--accent);
	color: #fff;
}

.section-head.compact {
	border-bottom: none;
	padding-bottom: 0;
}

.section-head.compact::after {
	display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SPOTLIGHT GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.spotlight-grid {
	margin-bottom: 40px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.spotlight-grid__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 100%;
	min-width: 0;
}

.spotlight-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-width: 0;
	width: 100%;
	transition: all var(--transition);
	position: relative;
}

.spotlight-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--radius-lg);
	padding: 1px;
	background: linear-gradient(135deg, transparent 0%, transparent 50%, var(--accent-light) 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity var(--transition);
}

.spotlight-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
	border-color: var(--accent-light);
}

.spotlight-card:hover::before {
	opacity: 1;
}

.spotlight-card a {
	display: block;
}

.spotlight-card__image {
	width: 100%;
	height: 160px;
	object-fit: cover;
	object-position: center;
	background-color: var(--bg-secondary);
	display: block;
	transition: transform var(--transition-slow);
}

.spotlight-card:hover .spotlight-card__image {
	transform: scale(1.05);
}

.spotlight-card__body {
	padding: 16px;
}

.spotlight-card__body .pill {
	display: inline-block;
	background: var(--accent-light);
	color: var(--accent);
	padding: 4px 10px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	border-radius: var(--radius);
	margin-bottom: 10px;
}

.spotlight-card__body h3 {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color var(--transition-fast);
}

.spotlight-card:hover h3 {
	color: var(--accent);
}

.spotlight-card__body p {
	margin: 0;
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Spotlight Placeholder */
.spotlight-card--placeholder {
	background: var(--bg);
}

.spotlight-card--placeholder .spotlight-card__image {
	background: linear-gradient(90deg, var(--border-light), var(--bg-secondary), var(--border-light));
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY SHOWCASE
   ═══════════════════════════════════════════════════════════════════════════ */

.category-showcase {
	margin-bottom: 30px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.category-showcase__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
	min-width: 0;
}

.category-tile {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-width: 0;
	width: 100%;
}

.category-tile header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	background: var(--bg-secondary);
	border-bottom: 1px solid var(--border);
}

.category-tile header .pill {
	background: var(--accent);
	color: #fff;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 2px;
}

.category-tile header .pill.ghost {
	background: var(--text);
}

.category-tile header p {
	display: none;
}

.category-tile header > a {
	font-size: 12px;
	color: var(--accent);
	font-weight: 500;
}

.category-tile__lead {
	display: flex;
	gap: 12px;
	padding: 16px;
	border-bottom: 1px solid var(--border-light);
}

.category-tile__lead .thumb {
	width: 120px;
	height: 80px;
	object-fit: cover;
	object-position: center;
	display: block;
	flex-shrink: 0;
	background-color: var(--bg-secondary);
	border-radius: var(--radius);
	flex-shrink: 0;
}

.category-tile__lead > div {
	flex: 1;
	min-width: 0;
}

.category-tile__lead h3 {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.category-tile__lead:hover h3 {
	color: var(--accent);
}

.category-tile__lead p {
	margin: 0;
	font-size: 12px;
	color: var(--text-secondary);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.category-list {
	padding: 0 16px;
}

.category-list li {
	border-bottom: 1px solid var(--border-light);
}

.category-list li:last-child {
	border-bottom: none;
}

.category-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
}

.category-list strong {
	font-size: 13px;
	font-weight: 500;
	color: var(--text);
	flex: 1;
	line-height: 1.4;
}

.category-list a:hover strong {
	color: var(--accent);
}

.category-list small {
	font-size: 11px;
	color: var(--muted);
	flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LATEST STREAM - Anlık Akış
   ═══════════════════════════════════════════════════════════════════════════ */

.latest-stream {
	margin-bottom: 30px;
}

.news-timeline {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.news-timeline__item {
	display: flex;
	gap: 12px;
	padding: 16px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
}

.news-timeline__marker {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 6px;
}

.news-timeline__body {
	flex: 1;
	min-width: 0;
}

.news-timeline__body time {
	display: inline-block;
	font-size: 11px;
	color: var(--muted);
	margin-bottom: 4px;
}

.news-timeline__body h3 {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.news-timeline__body h3 a {
	color: var(--text);
}

.news-timeline__body h3 a:hover {
	color: var(--accent);
}

.news-timeline__body p {
	margin: 0;
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-timeline__meta {
	display: flex;
	gap: 12px;
	margin-top: 8px;
	font-size: 11px;
	color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DEPTH SECTION - Editör & Köşe Yazıları
   ═══════════════════════════════════════════════════════════════════════════ */

.depth-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
	align-items: stretch;
}

.editor-column,
.newspapers-column {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px;
}

.opinion-column {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px 12px 16px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.editor-stack {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.editor-card {
	display: flex;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--border-light);
}

.editor-card:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.editor-card a {
	display: flex;
	gap: 16px;
	width: 100%;
}

.editor-card__media {
	width: 100px;
	height: 70px;
	object-fit: cover;
	object-position: center;
	display: block;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	background-color: var(--bg-secondary);
	border-radius: var(--radius);
	flex-shrink: 0;
}

.editor-card__body {
	flex: 1;
	min-width: 0;
}

.editor-card__body span {
	display: inline-block;
	font-size: 10px;
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.editor-card__body h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.editor-card:hover h3 {
	color: var(--accent);
}

.editor-card__body p {
	display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   KÖŞE YAZARLARI BÖLÜMÜ (Opinion Slider - Eski siteden alındı)
   ═══════════════════════════════════════════════════════════════════════════ */

.authors-section-title {
	margin: 0 0 14px;
	font-size: 22px;
	font-weight: 800;
	color: #000;
	text-align: left;
	padding-bottom: 8px;
	border-bottom: 2px solid #e5e5e5;
	padding-left: 0;
	padding-right: 0;
	flex-shrink: 0;
}

.opinion-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-shadow: var(--shadow);
	margin: 0;
	height: 100%;
	justify-content: space-between;
}

.opinion-card h3 {
	margin: 0;
	font-size: 15px;
	line-height: 1.4;
}

.opinion-card h3 a {
	color: var(--text);
	text-decoration: none;
}

.opinion-card h3 a:hover {
	color: var(--accent);
}

.opinion-card p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.4;
	flex: 1;
}

.opinion-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.opinion-author small {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
}

.opinion-author strong {
	font-size: 13px;
}

.opinion-author strong a {
	color: var(--text);
	text-decoration: none;
}

.opinion-author strong a:hover {
	color: var(--accent);
}

.opinion-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(255,255,255,0.15);
	background: rgba(255,255,255,0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);
	flex-shrink: 0;
}

.opinion-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.opinion-slider {
	position: relative;
	padding: 0 30px;
	display: flex;
	align-items: stretch;
	flex: 1;
	min-height: 0;
}

.opinion-slider__viewport {
	overflow: hidden;
	padding: 0;
	width: 100%;
	display: flex;
	align-items: stretch;
}

.opinion-slider__track {
	display: flex;
	gap: 10px;
	transition: transform .55s ease;
	will-change: transform;
	align-items: stretch;
	height: 100%;
	min-height: 100%;
}

.opinion-slider .opinion-card {
	flex: 0 0 calc(33.333% - 8px);
	min-width: 180px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.opinion-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--bg-card);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
	z-index: 3;
	color: var(--text);
	transition: opacity .25s ease;
	cursor: pointer;
	opacity: 0;
	font-size: 14px;
}

.opinion-nav.is-prev {
	left: 0;
}

.opinion-nav.is-next {
	right: 0;
}

.opinion-nav[disabled] {
	opacity: 0.35;
	pointer-events: none;
}

.opinion-slider:hover .opinion-nav {
	opacity: 1;
}

.opinion-avatar.placeholder {
	border: 1px dashed rgba(255,255,255,0.25);
	background: rgba(15,23,42,0.5);
}

@media (max-width: 1024px) {
	.opinion-slider {
		padding: 0 24px;
	}
	.opinion-slider .opinion-card {
		flex: 0 0 calc(50% - 5px);
		min-width: 170px;
	}
}

@media (max-width: 640px) {
	.opinion-slider {
		padding: 0;
	}
	.opinion-slider .opinion-card {
		flex: 0 0 100%;
		min-width: auto;
	}
	.opinion-nav {
		display: none;
	}
}

@media (max-width: 768px) {
	.authors-section-title {
		font-size: 20px;
		margin-bottom: 12px;
		padding-bottom: 6px;
	}
	
	.opinion-column {
		padding: 16px 10px 12px;
	}
	
	.opinion-slider {
		padding: 0;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   SKELETON / PLACEHOLDER
   ═══════════════════════════════════════════════════════════════════════════ */

.skeleton-line {
	height: 14px;
	background: linear-gradient(
		90deg,
		var(--border-light) 0%,
		var(--bg-secondary) 20%,
		var(--border) 40%,
		var(--bg-secondary) 60%,
		var(--border-light) 100%
	);
	background-size: 400% 100%;
	animation: skeleton-wave 2s ease-in-out infinite;
	border-radius: var(--radius);
}

@keyframes skeleton-wave {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.skeleton-line.short {
	width: 60%;
}

.skeleton-block {
	background: linear-gradient(
		90deg,
		var(--border-light) 0%,
		var(--bg-secondary) 20%,
		var(--border) 40%,
		var(--bg-secondary) 60%,
		var(--border-light) 100%
	);
	background-size: 400% 100%;
	animation: skeleton-wave 2s ease-in-out infinite;
	border-radius: var(--radius);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
	background: #0f0f10;
	color: #e5e5e5;
	margin-top: 60px;
	position: relative;
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Newsletter Section */
.footer-newsletter {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 50%, #7f1d1d 100%);
	padding: 50px 20px;
	position: relative;
	overflow: hidden;
}

.footer-newsletter::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
}

.footer-newsletter__content {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	position: relative;
	z-index: 1;
}

.footer-newsletter__text h3 {
	margin: 0 0 8px;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	font-family: var(--font-display);
}

.footer-newsletter__text p {
	margin: 0;
	font-size: 15px;
	color: rgba(255,255,255,0.9);
}

.footer-newsletter__form {
	flex-shrink: 0;
}

.footer-newsletter__form .input-group {
	display: flex;
	gap: 0;
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.footer-newsletter__form input[type="email"] {
	border: none;
	padding: 16px 20px;
	font-size: 15px;
	width: 300px;
	color: #0f0f10;
	font-family: var(--font);
}

.footer-newsletter__form input[type="email"]::placeholder {
	color: #94a3b8;
}

.footer-newsletter__form input[type="email"]:focus {
	outline: none;
}

.footer-newsletter__form button {
	background: #0f0f10;
	color: #fff;
	border: none;
	padding: 16px 28px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-fast);
	font-family: var(--font);
}

.footer-newsletter__form button:hover {
	background: #1f1f23;
}

.footer-newsletter__form small {
	display: block;
	margin-top: 8px;
	font-size: 11px;
	color: rgba(255,255,255,0.6);
	text-align: right;
}

.footer-alert {
	max-width: 800px;
	margin: 0 auto;
	padding: 12px 20px;
	text-align: center;
	font-size: 14px;
}

.footer-alert.success {
	background: #00a650;
	color: #fff;
}

.footer-alert.error {
	background: #ff4444;
	color: #fff;
}

/* Footer Main */
.footer-main {
	max-width: 1320px;
	margin: 0 auto;
	padding: 60px 24px 50px;
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
	gap: 50px;
}

.footer-brand img {
	margin-bottom: 20px;
	opacity: 0.9;
}

.footer-brand p {
	font-size: 14px;
	color: #71717a;
	line-height: 1.7;
	margin: 0 0 24px;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: #27272a;
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a1a1aa;
	transition: all var(--transition-fast);
}

.footer-social a:hover {
	background: var(--accent);
	color: #fff;
	transform: translateY(-2px);
}

.footer-social svg {
	width: 18px;
	height: 18px;
}

.footer-col h4 {
	margin: 0 0 24px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-col a {
	font-size: 14px;
	color: #71717a;
	transition: all var(--transition-fast);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.footer-col a::before {
	content: '';
	width: 0;
	height: 1px;
	background: var(--accent);
	transition: width var(--transition-fast);
}

.footer-col a:hover {
	color: #fff;
}

.footer-col a:hover::before {
	width: 12px;
}

.app-badges {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.app-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: #333;
	border-radius: 6px;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	transition: background 0.2s ease;
}

.app-badge:hover {
	background: #444;
	color: #fff;
}

.app-badge svg {
	width: 20px;
	height: 20px;
}

/* Footer Bottom */
.footer-stats {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-stat-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-stat-item strong {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	font-family: var(--font-display);
}

.footer-stat-item span {
	font-size: 12px;
	color: #71717a;
}

.footer-bottom {
	max-width: 1320px;
	margin: 0 auto;
	padding: 28px 24px;
	border-top: 1px solid #27272a;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: #52525b;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-bottom > div {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-bottom .separator {
	color: #3f3f46;
	margin: 0 4px;
}

.footer-bottom__links {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-bottom__links a {
	color: #52525b;
	text-decoration: none;
	transition: color var(--transition-fast);
}

.footer-bottom__links a:hover {
	color: #fff;
}

.hp-field {
	position: absolute;
	left: -9999px;
}

@media (max-width: 1024px) {
	.footer-newsletter__content {
		flex-direction: column;
		text-align: center;
	}

	.footer-main {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-stats {
		margin-top: 16px;
		padding-top: 16px;
	}
}

@media (max-width: 768px) {
	.footer-newsletter__form input[type="email"] {
		width: 200px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-social {
		justify-content: center;
	}

	.footer-col ul {
		align-items: center;
	}

	.app-badges {
		align-items: center;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
	.data-strip {
		font-size: 11px;
	}
	
	.data-card {
		padding: 8px 12px;
		gap: 8px;
	}
	
	.weather-card {
		padding: 8px 12px;
		gap: 12px;
	}
	
	.weather-card__stats {
		gap: 8px;
	}
	
	.nav-container {
		padding: 12px 16px;
		gap: 16px;
		flex-wrap: wrap;
	}
	
	.primary-nav {
		order: 3;
		width: 100%;
		flex-basis: 100%;
	}
	
	.nav-actions {
		margin-left: auto;
		flex-shrink: 0;
	}
	
	.search-form input {
		width: 150px;
	}
	
	.home-hero {
		grid-template-columns: 1fr;
	}

	.home-hero__side {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.spotlight-grid__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.category-showcase__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.depth-section {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.top-meta {
		display: none;
	}

	.data-strip {
		display: none;
	}
	
	.nav-container {
		padding: 10px 12px;
		gap: 12px;
		flex-wrap: wrap;
	}
	
	.logo {
		flex-shrink: 0;
	}
	
	.logo img {
		width: 100px;
	}
	
	.nav-actions {
		order: 2;
		width: 100%;
		justify-content: space-between;
		gap: 8px;
		margin-left: 0;
	}
	
	.search-form {
		flex: 1;
		min-width: 0;
	}
	
	.search-form input {
		width: 100%;
		min-width: 0;
	}
	
	.btn-cta {
		flex-shrink: 0;
		font-size: 12px;
		padding: 8px 12px;
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg);
		border-top: 1px solid var(--border);
		box-shadow: 0 4px 12px rgba(0,0,0,0.1);
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: all 0.3s ease;
		z-index: 99;
		order: 3;
		width: 100%;
	}

	.primary-nav.open {
		max-height: 500px;
		opacity: 1;
		overflow-y: auto;
	}

	.primary-nav ul {
		flex-direction: column;
		align-items: stretch;
		padding: 12px;
		gap: 4px;
	}

	.primary-nav a {
		padding: 12px 16px;
		border-radius: var(--radius);
	}

	.category-toggle-wrapper {
		order: 1;
		margin-left: auto;
	}

	.category-toggle {
		display: flex;
	}

	.category-toggle.open svg {
		transform: rotate(180deg);
	}

	/* Manşet - mobil başlık ve yükseklik düzeltmesi */
	.hero-carousel,
	.hero-slide__media {
		height: 380px;
	}

	.hero-slide__content {
		padding: 24px 20px;
	}

	.hero-slide__content h1,
	.hero-slide__content .hero-slide__title {
		font-size: 22px;
		line-height: 1.3;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.hero-slide__content p {
		display: none;
	}

	.hero-carousel__dots {
		left: 20px;
		bottom: 24px;
		gap: 6px;
	}

	.hero-carousel__dots button {
		width: 24px;
	}

	.hero-carousel__counter {
		right: 20px;
		bottom: 24px;
		padding: 8px 14px;
		font-size: 12px;
	}

	.hero-carousel__counter .hero-carousel__current {
		font-size: 16px;
	}

	.home-hero__side {
		grid-template-columns: 1fr;
	}

	.spotlight-grid__list {
		grid-template-columns: 1fr;
	}

	.category-showcase__grid {
		grid-template-columns: 1fr;
	}

	.news-timeline {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
	}

	/* Editör masası & Köşe hattı mobil taşma düzeltmesi */
	.depth-section {
		grid-template-columns: 1fr;
		max-width: 100%;
		overflow: visible;
	}

	.editor-column,
	.newspapers-column {
		max-width: 100%;
		overflow: hidden;
	}
	
	.opinion-column {
		max-width: 100%;
		overflow: visible;
		padding: 24px 0;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   ARTICLE PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.article-page {
	max-width: 820px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding-top: 20px;
}

.article-hero {
	position: relative;
	z-index: 0;
}

.article-hero-bar {
	padding: 40px 0;
	position: relative;
	z-index: 1;
}

.article-hero-tags {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.article-hero-bar h1 {
	margin: 0 0 24px;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text);
	font-family: var(--font-display);
	letter-spacing: -0.5px;
}

.article-cover {
	margin: 30px 0;
	clear: both;
	width: 100%;
	display: block;
	position: relative;
	z-index: 1;
}

.article-cover-wrapper {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	width: 100%;
	display: block;
}

.article-cover img {
	width: 100%;
	height: auto;
	display: block;
	max-width: 100%;
	vertical-align: top;
}

.article-content-shell {
	clear: both;
	margin-top: 40px;
	position: relative;
	z-index: 2;
}

.watermark-overlay {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 4px;
	font-weight: 500;
}

.article-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 16px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	margin-bottom: 30px;
}

.article-meta > div {
	display: flex;
	align-items: center;
	gap: 16px;
}

.article-meta strong {
	font-weight: 600;
	color: var(--text);
}

.article-meta span {
	font-size: 13px;
	color: var(--muted);
}

.article-content-shell {
	margin-bottom: 40px;
}

.article-body {
	font-size: 18px;
	line-height: 1.8;
	color: var(--text);
}

.article-body p {
	margin: 0 0 24px;
}

.article-body h2,
.article-body h3 {
	margin: 40px 0 20px;
	font-weight: 700;
}

.article-body h2 {
	font-size: 26px;
}

.article-body h3 {
	font-size: 22px;
}

.article-body img {
	max-width: 100%;
	height: auto;
	border-radius: var(--radius);
	margin: 24px 0;
	display: block;
	clear: both;
	float: none !important;
}

.article-body blockquote {
	margin: 30px 0;
	padding: 20px 24px;
	border-left: 4px solid var(--accent);
	background: var(--bg-alt);
	font-style: italic;
	font-size: 20px;
	line-height: 1.6;
}

.article-body ul,
.article-body ol {
	margin: 20px 0;
	padding-left: 24px;
}

.article-body li {
	margin-bottom: 8px;
}

.article-body a {
	color: var(--accent);
	text-decoration: underline;
}

/* Article Source Attribution */
.article-source {
	margin-top: 40px;
	padding: 24px;
	background: var(--bg-alt);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
}

.article-source__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--muted);
	margin-bottom: 12px;
}

.article-source__label svg {
	width: 14px;
	height: 14px;
}

.article-source__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 12px;
}

.article-source__info strong {
	font-size: 16px;
	color: var(--text);
}

.article-source__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--accent);
	text-decoration: none;
	padding: 6px 12px;
	border-radius: var(--radius);
	background: var(--bg);
	border: 1px solid var(--border);
	transition: all var(--transition-fast);
}

.article-source__link:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.article-source__link svg {
	width: 14px;
	height: 14px;
}

.article-source__note {
	margin: 0;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.5;
}

/* Opinion Article Styles */
.article-page--opinion {
	max-width: 760px;
}

.article-hero--opinion {
	padding: 60px 0 40px;
	text-align: center;
}

.opinion-hero-card {
	max-width: 700px;
	margin: 0 auto;
}

.opinion-hero-head {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
}

.opinion-hero-card h1 {
	margin: 0 0 20px;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
}

.opinion-hero-intro {
	font-size: 20px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0 0 30px;
}

.opinion-hero-author {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 16px 24px;
	background: var(--bg-alt);
	border-radius: 60px;
}

.opinion-hero-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #dc0000, #8b0000);
	color: #fff;
	font-weight: 700;
	font-size: 22px;
}

.opinion-hero-avatar.has-photo {
	background: var(--border);
}

.opinion-hero-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.opinion-hero-author > div {
	text-align: left;
}

.opinion-hero-author small {
	display: block;
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.opinion-hero-author strong {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	margin: 2px 0;
}

.opinion-hero-author span {
	font-size: 13px;
	color: var(--muted);
}

.article-meta--opinion {
	justify-content: center;
	border: none;
	padding: 0 0 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--border);
}

.article-body--opinion {
	font-size: 19px;
}

.article-body--opinion p:first-child::first-letter {
	font-size: 60px;
	float: left;
	line-height: 1;
	margin: 0 12px 0 0;
	font-weight: 700;
	color: var(--accent);
}

/* Article Actions */
.article-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	padding: 24px 0;
	border-top: 1px solid var(--border);
	margin-bottom: 40px;
}

.article-actions .tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.article-actions .tags a {
	display: inline-block;
	padding: 6px 12px;
	background: var(--bg-alt);
	color: var(--text);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.2s ease;
}

.article-actions .tags a:hover {
	background: var(--accent);
	color: #fff;
}

.article-actions .share {
	display: flex;
	align-items: center;
	gap: 12px;
}

.article-actions .share span {
	font-size: 13px;
	color: var(--muted);
	font-weight: 500;
}

.article-actions .share a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--bg-alt);
	color: var(--text);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.article-actions .share a:hover {
	background: var(--accent);
	color: #fff;
}

/* Related Articles */
.related {
	margin-bottom: 40px;
}

.related .card-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.news-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all 0.2s ease;
}

.news-card:hover {
	border-color: var(--accent);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-card a {
	display: block;
}

.news-card .thumb {
	height: 140px;
	background-size: cover;
	background-position: center;
}

.news-card .body {
	padding: 14px;
}

.news-card .body span {
	display: inline-block;
	font-size: 11px;
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.news-card .body h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Comments Section */
.comments {
	background: var(--bg-alt);
	padding: 30px;
	border-radius: var(--radius-lg);
	margin-bottom: 40px;
}

.comment-list {
	margin: 24px 0;
}

.comment-list li {
	padding: 20px 0;
	border-bottom: 1px solid var(--border);
}

.comment-list li:last-child {
	border-bottom: none;
}

.comment-list strong {
	font-weight: 600;
	color: var(--text);
}

.comment-list span {
	font-size: 12px;
	color: var(--muted);
	margin-left: 12px;
}

.comment-list p {
	margin: 10px 0 0;
	font-size: 15px;
	line-height: 1.6;
}

.comment-form {
	margin-top: 24px;
}

.comment-form .grid {
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
}

.comment-form .grid.two {
	grid-template-columns: 1fr 1fr;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg);
	font-size: 15px;
	color: var(--text);
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--accent);
}

.comment-form button {
	margin-top: 16px;
	padding: 14px 28px;
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.comment-form button:hover {
	background: var(--accent-hover);
}

/* AI Bubble */
.ai-bubble {
	position: fixed;
	bottom: 24px;
	right: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #fff;
	border: none;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
	z-index: 100;
	transition: all 0.2s ease;
}

.ai-bubble:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(102, 126, 234, 0.5);
}

.ai-bubble__icon img {
	width: 24px;
	height: 24px;
}

.ai-popover {
	position: fixed;
	bottom: 80px;
	right: 24px;
	width: 320px;
	padding: 20px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.2s ease;
}

.ai-popover.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ai-popover strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 10px;
}

.ai-popover p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0;
}

/* Chip styles */
.chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	border-radius: var(--radius-lg);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(225, 29, 72, 0.25);
}

.chip.ghost {
	background: var(--bg-secondary);
	color: var(--text);
	box-shadow: none;
	border: 1px solid var(--border);
}

.chip.blue {
	background: linear-gradient(135deg, var(--blue) 0%, #2563eb 100%);
	box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.chip.green {
	background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.chip.orange {
	background: linear-gradient(135deg, var(--orange) 0%, #ea580c 100%);
	box-shadow: 0 2px 8px rgba(249, 115, 22, 0.25);
}

@media (max-width: 768px) {
	.article-hero-bar h1 {
		font-size: 26px;
	}

	.article-body {
		font-size: 16px;
	}

	.opinion-hero-card h1 {
		font-size: 28px;
	}

	.opinion-hero-author {
		flex-direction: column;
		text-align: center;
		padding: 20px;
		border-radius: var(--radius-lg);
	}

	.opinion-hero-author > div {
		text-align: center;
	}

	.related .card-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.article-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.comment-form .grid.two {
		grid-template-columns: 1fr;
	}
}

/* Legacy support */
.article-main {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.article-content {
	padding: 30px;
}

.article-meta-old {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.article-meta .pill {
	background: var(--accent);
	color: #fff;
	padding: 4px 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 2px;
}

.article-meta time {
	font-size: 13px;
	color: var(--muted);
}

.article-content h1 {
	margin: 0 0 16px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text);
}

.article-excerpt {
	font-size: 18px;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}

.article-body {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text);
}

.article-body p {
	margin: 0 0 20px;
}

.article-body h2 {
	margin: 32px 0 16px;
	font-size: 24px;
}

.article-body h3 {
	margin: 24px 0 12px;
	font-size: 20px;
}

.article-body blockquote {
	margin: 24px 0;
	padding: 20px 24px;
	background: var(--bg-secondary);
	border-left: 4px solid var(--accent);
	font-style: italic;
}

.article-body img {
	margin: 24px 0;
	border-radius: var(--radius);
	display: block;
	max-width: 100%;
	height: auto;
	float: none !important;
}

/* Eski / dışarıdan gelen içeriklerdeki tüm görselleri de güvenli hale getir */
.article-content img,
.article-page img {
	max-width: 100% !important;
	height: auto !important;
	display: block !important;
	margin: 24px 0 !important;
	clear: both !important;
	float: none !important;
}

.article-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.sidebar-widget {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px;
}

.sidebar-widget h3 {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY / TAG / SEARCH PAGES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Search Page */
.search-page {
	padding: 0;
}

.search-hero {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 40px;
	margin-bottom: 32px;
	text-align: center;
}

.search-hero h1 {
	margin: 0 0 24px;
	font-size: 32px;
	font-weight: 700;
	color: var(--text);
}

.search-hero__form {
	max-width: 600px;
	margin: 0 auto;
}

.search-hero__input-wrapper {
	display: flex;
	gap: 0;
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg);
	transition: border-color 0.2s ease;
}

.search-hero__input-wrapper:focus-within {
	border-color: var(--accent);
}

.search-hero__input-wrapper input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 14px 20px;
	font-size: 16px;
	color: var(--text);
	outline: none;
}

.search-hero__input-wrapper input::placeholder {
	color: var(--muted);
}

.search-hero__button {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 24px;
	background: var(--accent);
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.search-hero__button:hover {
	background: var(--accent-hover);
}

.search-hero__button svg {
	width: 18px;
	height: 18px;
}

.search-results {
	margin-top: 32px;
}

.search-results__header {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--border);
}

.search-count {
	margin: 0;
	font-size: 15px;
	color: var(--text-secondary);
}

.search-count strong {
	color: var(--text);
	font-weight: 700;
	font-size: 18px;
}

.search-query {
	color: var(--accent);
	font-weight: 600;
}

.search-results__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.search-result-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all 0.2s ease;
}

.search-result-card:hover {
	border-color: var(--accent);
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

.search-result-card__link {
	display: flex;
	gap: 20px;
	padding: 0;
	text-decoration: none;
	color: inherit;
}

.search-result-card__image {
	flex-shrink: 0;
	width: 240px;
	height: 160px;
	overflow: hidden;
	background: var(--bg-secondary);
}

.search-result-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.search-result-card:hover .search-result-card__image img {
	transform: scale(1.05);
}

.search-result-card__content {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.search-result-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 12px;
	color: var(--muted);
}

.search-result-card__category {
	color: var(--accent);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.5px;
}

.search-result-card__date {
	color: var(--muted);
}

.search-result-card__title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.search-result-card:hover .search-result-card__title {
	color: var(--accent);
}

.search-result-card__excerpt {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-secondary);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.search-result-card__author {
	margin-top: auto;
	font-size: 13px;
	color: var(--muted);
}

.search-result-card__author strong {
	color: var(--text);
	font-weight: 600;
}

.search-empty {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 60px 40px;
	text-align: center;
	margin-top: 32px;
}

.search-empty__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: var(--bg-secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
}

.search-empty__icon svg {
	width: 40px;
	height: 40px;
}

.search-empty h3 {
	margin: 0 0 12px;
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
}

.search-empty p {
	margin: 0 0 24px;
	color: var(--text-secondary);
	font-size: 15px;
}

.search-empty .btn-cta {
	margin-top: 8px;
}

@media (max-width: 1024px) {
	.search-result-card__link {
		flex-direction: column;
		gap: 0;
	}
	
	.search-result-card__image {
		width: 100%;
		height: 200px;
	}
	
	.search-results__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.search-hero {
		padding: 30px 20px;
	}
	
	.search-hero h1 {
		font-size: 26px;
		margin-bottom: 20px;
	}
	
	.search-hero__input-wrapper {
		flex-direction: column;
		border-radius: var(--radius);
	}
	
	.search-hero__input-wrapper input {
		padding: 12px 16px;
		border-bottom: 1px solid var(--border);
	}
	
	.search-hero__button {
		padding: 12px 20px;
		justify-content: center;
	}
	
	.search-hero__button span {
		display: none;
	}
	
	.search-results__header {
		margin-bottom: 20px;
	}
	
	.search-count {
		font-size: 14px;
	}
	
	.search-count strong {
		font-size: 16px;
	}
	
	.search-result-card__content {
		padding: 16px;
	}
	
	.search-result-card__title {
		font-size: 18px;
	}
	
	.search-empty {
		padding: 40px 20px;
	}
	
	.search-empty h3 {
		font-size: 20px;
	}
}

.archive-header {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px;
	margin-bottom: 24px;
}

.archive-header h1 {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 700;
}

.archive-header p {
	margin: 0;
	color: var(--text-secondary);
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.archive-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.archive-card:hover {
	box-shadow: var(--shadow-lg);
}

.archive-card__image {
	height: 180px;
	background-size: cover;
	background-position: center;
	background-color: var(--bg-secondary);
}

.archive-card__body {
	padding: 16px;
}

.archive-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.archive-card__meta .pill {
	background: var(--accent-light);
	color: var(--accent);
	padding: 2px 8px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 2px;
}

.archive-card__meta time {
	font-size: 12px;
	color: var(--muted);
}

.archive-card h2 {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}

.archive-card h2 a {
	color: var(--text);
}

.archive-card:hover h2 a {
	color: var(--accent);
}

.archive-card p {
	margin: 0;
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORY PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.category-page {
	margin-bottom: 40px;
}

.category-hero {
	text-align: center;
	padding: 40px 0;
	margin-bottom: 40px;
	border-bottom: 2px solid var(--border);
}

.category-hero h1 {
	margin: 16px 0 12px;
	font-size: 42px;
	font-weight: 800;
}

.category-hero p {
	margin: 0;
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.category-articles {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.category-article {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all 0.3s ease;
}

.category-article:hover {
	border-color: var(--accent);
	box-shadow: 0 4px 20px rgba(220,0,0,0.1);
	transform: translateY(-2px);
}

.category-article.featured {
	border: 2px solid var(--accent);
	box-shadow: 0 6px 24px rgba(220,0,0,0.15);
}

.category-article__link {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 24px;
	text-decoration: none;
	color: inherit;
}

.category-article__image {
	position: relative;
	height: 200px;
	overflow: hidden;
	background: var(--bg-secondary);
}

.category-article.featured .category-article__image {
	height: 280px;
}

.category-article__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.category-article:hover .category-article__image img {
	transform: scale(1.05);
}

.category-article__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--accent);
	color: #fff;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.category-article__content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.category-article__meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
	font-size: 13px;
	color: var(--muted);
}

.category-article__meta time {
	font-weight: 500;
}

.category-article__views {
	font-size: 12px;
}

.category-article__title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text);
	transition: color 0.2s ease;
}

.category-article.featured .category-article__title {
	font-size: 26px;
}

.category-article:hover .category-article__title {
	color: var(--accent);
}

.category-article__excerpt {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-secondary);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.category-article__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--border-light);
}

.category-article__read-time {
	font-size: 13px;
	color: var(--muted);
}

.category-article__arrow {
	font-size: 20px;
	color: var(--accent);
	opacity: 0;
	transition: all 0.2s ease;
}

.category-article:hover .category-article__arrow {
	opacity: 1;
	transform: translateX(4px);
}

@media (max-width: 768px) {
	.category-hero h1 {
		font-size: 32px;
	}

	.category-article__link {
		grid-template-columns: 1fr;
	}

	.category-article__image {
		height: 200px;
	}

	.category-article.featured .category-article__image {
		height: 200px;
	}

	.category-article__content {
		padding: 20px;
	}

	.category-article__title {
		font-size: 20px;
	}

	.category-article.featured .category-article__title {
		font-size: 22px;
	}
}

@media (max-width: 1024px) {
	.archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.archive-grid {
		grid-template-columns: 1fr;
	}
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 30px;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-size: 14px;
	color: var(--text);
}

.pagination a:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

.pagination span.current {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ERROR PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.error-page {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
}

.error-page__content {
	text-align: center;
	max-width: 600px;
}

.error-page__content h1 {
	font-size: 120px;
	font-weight: 800;
	margin: 0;
	color: var(--accent);
	line-height: 1;
}

.error-page__content h2 {
	font-size: 32px;
	font-weight: 700;
	margin: 20px 0 16px;
	color: var(--text);
}

.error-page__content p {
	font-size: 18px;
	color: var(--text-secondary);
	margin: 0 0 40px;
	line-height: 1.6;
}

.error-page__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.error-page {
	flex-direction: column;
	gap: 60px;
}

.error-page__suggestions {
	max-width: 1200px;
	width: 100%;
	padding: 0 20px;
}

.error-page__suggestions h3 {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 24px;
	text-align: center;
	color: var(--text);
}

.suggestion-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.suggestion-card {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform var(--transition), box-shadow var(--transition);
}

.suggestion-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.suggestion-card a {
	display: block;
	text-decoration: none;
}

.suggestion-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.suggestion-card__body {
	padding: 16px;
}

.suggestion-card__body .pill {
	margin-bottom: 8px;
}

.suggestion-card__body h4 {
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 8px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.suggestion-card__body time {
	font-size: 12px;
	color: var(--muted);
}

/* SEO: İç link ve dış kaynak stilleri */
.related-inline {
	background: var(--bg-secondary);
	padding: 12px 16px;
	border-radius: var(--radius);
	border-left: 3px solid var(--accent);
	margin: 16px 0;
}

.related-inline strong {
	color: var(--text-secondary);
	font-weight: 600;
	margin-right: 8px;
}

.related-inline a {
	color: var(--accent);
	font-weight: 500;
}

.related-inline a:hover {
	text-decoration: underline;
}

.external-source {
	font-size: 14px;
	color: var(--text-secondary);
	padding: 12px 0;
	border-top: 1px solid var(--border);
	margin-top: 24px;
}

/* Editör notu stili - insan dokunuşu sinyali */
.editor-note {
	background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.03));
	padding: 16px 20px;
	border-radius: var(--radius);
	border-left: 4px solid var(--accent);
	margin: 24px 0;
	font-style: italic;
	color: var(--text-secondary);
	position: relative;
}

.editor-note::before {
	content: "📝";
	position: absolute;
	left: -12px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--bg-primary);
	padding: 4px;
	border-radius: 50%;
}

.editor-note strong {
	color: var(--accent);
	font-weight: 600;
	font-style: normal;
}

/* Editorial sinyal linki */
.editorial-note {
	font-size: 13px;
	color: var(--text-tertiary);
	padding: 12px 16px;
	background: var(--bg-secondary);
	border-radius: var(--radius);
	margin: 20px 0;
}

.editorial-note a {
	color: var(--accent);
	font-weight: 500;
}

.editorial-note a:hover {
	text-decoration: underline;
}

/* Güvenilir dış kaynak stili */
.trusted-source {
	font-size: 14px;
	color: var(--text-secondary);
	padding: 14px 18px;
	background: rgba(var(--success-rgb), 0.05);
	border-radius: var(--radius);
	border: 1px solid rgba(var(--success-rgb), 0.15);
	margin: 20px 0;
}

.trusted-source a {
	color: var(--success);
	font-weight: 600;
}

.trusted-source a:hover {
	text-decoration: underline;
}

.external-source a {
	color: var(--accent);
}

@media (max-width: 768px) {
	.error-page__content h1 {
		font-size: 80px;
	}
	
	.error-page__content h2 {
		font-size: 24px;
	}
	
	.error-page__content p {
		font-size: 16px;
	}
	
	.suggestion-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}
	
	.suggestion-card img {
		height: 120px;
	}
}

@media (max-width: 480px) {
	.suggestion-grid {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATIC PAGES
   ═══════════════════════════════════════════════════════════════════════════ */

.static-page {
	max-width: 900px;
	margin: 0 auto;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 50px;
}

.static-page__header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid var(--border);
}

.static-page__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.static-page__icon svg {
	width: 40px;
	height: 40px;
}

.static-page__header h1 {
	margin: 0 0 12px;
	font-size: 36px;
	font-weight: 800;
}

.static-page__header p {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
}

.static-page__content {
	line-height: 1.8;
}

.static-page__content h2 {
	margin: 40px 0 20px;
	font-size: 26px;
	font-weight: 700;
	color: var(--text);
}

.static-page__content p {
	margin: 0 0 20px;
	line-height: 1.8;
	color: var(--text-secondary);
}

.static-page__content a {
	color: var(--accent);
	text-decoration: underline;
}

.static-page__content a:hover {
	color: var(--accent-hover);
}

.static-page__content ul,
.static-page__content ol {
	margin: 20px 0;
	padding-left: 28px;
	list-style: disc;
}

.static-page__content li {
	margin-bottom: 10px;
	line-height: 1.7;
}

.static-page__footer {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid var(--border);
	text-align: center;
	color: var(--muted);
	font-size: 14px;
}

/* Künye Sayfası */
.kunye-section {
	margin-bottom: 40px;
}

.kunye-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 20px;
}

.kunye-item {
	padding: 20px;
	background: var(--bg-secondary);
	border-radius: var(--radius);
}

.kunye-item strong {
	display: block;
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.kunye-item p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
}

.kunye-list {
	list-style: none;
	padding: 0;
}

.kunye-list li {
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}

.kunye-list li:last-child {
	border-bottom: none;
}

/* KVKK Sayfası */
.kvkk-section {
	margin-bottom: 40px;
}

.kvkk-list {
	list-style: none;
	padding: 0;
}

.kvkk-list li {
	padding: 12px 0 12px 24px;
	position: relative;
	border-bottom: 1px solid var(--border-light);
}

.kvkk-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
}

.kvkk-list li:last-child {
	border-bottom: none;
}

.kvkk-note {
	background: var(--bg-secondary);
	padding: 20px;
	border-radius: var(--radius);
	border-left: 4px solid var(--accent);
	font-size: 14px;
	color: var(--muted);
}

/* Yasal Sayfalar (Gizlilik, Çerez, Kullanım Koşulları vb.) */
.legal-section {
	margin-bottom: 40px;
}

.legal-intro {
	font-size: 18px;
	line-height: 1.8;
	color: var(--text);
	padding: 24px;
	background: var(--bg-secondary);
	border-radius: var(--radius);
	border-left: 4px solid var(--accent);
	margin-bottom: 40px;
}

.legal-section h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--border);
}

.legal-section h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--text);
	margin: 28px 0 14px;
}

.legal-section ul,
.legal-section ol {
	margin: 16px 0;
	padding-left: 24px;
}

.legal-section li {
	margin-bottom: 10px;
	line-height: 1.7;
	color: var(--text-secondary);
}

.legal-section li strong {
	color: var(--text);
}

.legal-note {
	background: var(--bg-alt);
	padding: 20px;
	border-radius: var(--radius);
	font-size: 14px;
	color: var(--muted);
	text-align: center;
	margin-top: 40px;
}

.contact-box {
	background: var(--bg-secondary);
	padding: 24px;
	border-radius: var(--radius);
	margin: 20px 0;
}

.contact-box p {
	margin: 8px 0;
}

/* Çerez Tablosu */
.cookie-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 14px;
}

.cookie-table th,
.cookie-table td {
	padding: 12px 16px;
	text-align: left;
	border: 1px solid var(--border);
}

.cookie-table th {
	background: var(--bg-secondary);
	font-weight: 600;
	color: var(--text);
}

.cookie-table td {
	color: var(--text-secondary);
}

.cookie-table tr:nth-child(even) td {
	background: var(--bg-alt);
}

/* Hakkımızda Sayfası */
.about-hero {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
	color: #fff;
	padding: 40px;
	border-radius: var(--radius-lg);
	margin-bottom: 40px;
}

.about-hero h2 {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 16px;
	color: #fff;
	border: none;
	padding: 0;
}

.about-hero .lead {
	font-size: 18px;
	line-height: 1.7;
	margin: 0;
	opacity: 0.95;
}

.about-section {
	margin-bottom: 40px;
}

.about-section h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--border);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 24px;
}

.value-item {
	padding: 24px;
	background: var(--bg-secondary);
	border-radius: var(--radius);
	text-align: center;
	transition: all var(--transition);
}

.value-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.value-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 16px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.value-icon svg {
	width: 28px;
	height: 28px;
}

.value-item h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--text);
}

.value-item p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
	margin: 0;
}

.team-structure {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 24px;
}

.team-item {
	padding: 20px;
	background: var(--bg-secondary);
	border-radius: var(--radius);
	border-left: 4px solid var(--accent);
}

.team-item strong {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text);
}

.team-item p {
	margin: 0;
	font-size: 14px;
	color: var(--muted);
}

.process-list {
	counter-reset: process;
	list-style: none;
	padding: 0;
}

.process-list li {
	counter-increment: process;
	position: relative;
	padding: 20px 20px 20px 60px;
	background: var(--bg-secondary);
	border-radius: var(--radius);
	margin-bottom: 12px;
}

.process-list li::before {
	content: counter(process);
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background: var(--accent);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	position: relative;
	padding: 12px 0 12px 32px;
	border-bottom: 1px solid var(--border-light);
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #22c55e;
	font-weight: 700;
}

.feature-list li:last-child {
	border-bottom: none;
}

.contact-details {
	background: var(--bg-secondary);
	padding: 24px;
	border-radius: var(--radius);
	margin: 20px 0;
}

.contact-details p {
	margin: 8px 0;
}

.cta-text {
	font-size: 16px;
	color: var(--text);
}

/* Reklam Politikası */
.ad-contact-box {
	background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-alt) 100%);
	padding: 30px;
	border-radius: var(--radius-lg);
	border: 2px solid var(--border);
	margin: 24px 0;
}

.ad-contact-box h3 {
	margin: 0 0 16px;
	font-size: 20px;
	color: var(--text);
}

.ad-contact-box ul {
	margin: 16px 0;
	padding-left: 20px;
}

@media (max-width: 1024px) {
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.values-grid {
		grid-template-columns: 1fr;
	}
	
	.team-structure {
		grid-template-columns: 1fr;
	}
	
	.about-hero {
		padding: 30px 20px;
	}
	
	.about-hero h2 {
		font-size: 24px;
	}
	
	.cookie-table {
		font-size: 12px;
	}
	
	.cookie-table th,
	.cookie-table td {
		padding: 8px 10px;
	}
}

/* İletişim Sayfası */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
	margin-top: 30px;
}

.contact-info h2 {
	margin: 0 0 24px;
	font-size: 24px;
	font-weight: 700;
}

.contact-item {
	display: flex;
	gap: 16px;
	padding: 20px;
	background: var(--bg-secondary);
	border-radius: var(--radius);
	margin-bottom: 16px;
}

.contact-item svg {
	width: 24px;
	height: 24px;
	color: var(--accent);
	flex-shrink: 0;
}

.contact-item strong {
	display: block;
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 4px;
}

.contact-item p {
	margin: 0;
	font-size: 16px;
}

@media (max-width: 768px) {
	.static-page {
		padding: 30px 20px;
	}

	.static-page__header h1 {
		font-size: 28px;
	}

	.static-page__icon {
		width: 60px;
		height: 60px;
	}

	.static-page__icon svg {
		width: 30px;
		height: 30px;
	}

	.kunye-grid {
		grid-template-columns: 1fr;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}
}

/* Contact Form */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
}

.contact-form input,
.contact-form textarea {
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-size: 15px;
	background: var(--bg);
	color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--accent);
}

.contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form button {
	align-self: flex-start;
	padding: 12px 24px;
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: var(--radius);
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}

.contact-form button:hover {
	background: var(--accent-hover);
}

/* ═══════════════════════════════════════════════════════════════════════════
   OKUMA İLERLEME ÇUBUĞU
   ═══════════════════════════════════════════════════════════════════════════ */

.reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent) 0%, #f43f5e 50%, #fb7185 100%);
	z-index: 9999;
	transition: width 0.1s ease-out;
	box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(225, 29, 72, 0.3);
}

html[data-theme="dark"] .reading-progress {
	box-shadow: 0 0 15px var(--accent), 0 0 30px rgba(225, 29, 72, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL TO TOP BUTONU
   ═══════════════════════════════════════════════════════════════════════════ */

.scroll-to-top {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 52px;
	height: 52px;
	border-radius: var(--radius-lg);
	background: var(--bg-card);
	color: var(--text);
	border: 1px solid var(--border);
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
	z-index: 9998;
	transition: all var(--transition);
	opacity: 0;
	transform: translateY(20px);
	backdrop-filter: blur(10px);
}

.scroll-to-top:focus {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.scroll-to-top:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
	transform: translateY(-4px);
	box-shadow: var(--shadow-glow);
}

.scroll-to-top[style*="flex"] {
	opacity: 1;
	transform: translateY(0);
}

.scroll-to-top svg {
	width: 22px;
	height: 22px;
}

@media (max-width: 640px) {
	.scroll-to-top {
		bottom: 20px;
		right: 20px;
		width: 48px;
		height: 48px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   EN ÇOK OKUNANLAR BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════════════════ */

.most-read-section {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow);
	margin-bottom: 48px;
}

.most-read-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.most-read-card {
	background: var(--bg-secondary);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
}

.most-read-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.most-read-card.featured {
	grid-column: span 3;
}

.most-read-card__rank {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 36px;
	height: 36px;
	background: var(--accent);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	z-index: 5;
	box-shadow: 0 4px 12px rgba(220, 0, 0, 0.3);
}

.most-read-card__image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: center;
	position: relative;
	display: block;
}

.most-read-card.featured .most-read-card__image {
	height: 320px;
}

.most-read-card__image-small {
	width: 100%;
	height: 140px;
	object-fit: cover;
	object-position: center;
	display: block;
	position: relative;
}

.most-read-card__body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: relative;
}

.most-read-card__body h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}

.most-read-card.featured .most-read-card__body h3 {
	font-size: 22px;
}

.most-read-card__body p {
	margin: 0;
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.5;
}

.most-read-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--muted);
	margin-top: auto;
}

@media (max-width: 1024px) {
	.most-read-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.most-read-card.featured {
		grid-column: span 2;
	}
}

@media (max-width: 640px) {
	.most-read-grid {
		grid-template-columns: 1fr;
	}
	.most-read-card.featured {
		grid-column: span 1;
	}
	.most-read-card__image {
		height: 180px;
	}
	.most-read-card.featured .most-read-card__image {
		height: 240px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO HABERLER BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════════════════ */

.video-news-section {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow);
	margin-bottom: 48px;
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.video-card {
	background: var(--bg-secondary);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	transition: transform 0.2s ease;
}

.video-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.video-card__thumbnail {
	position: relative;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.video-card__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.video-card__play {
	width: 56px;
	height: 56px;
	background: rgba(220, 0, 0, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	transition: transform 0.2s ease;
	z-index: 2;
}

.video-card:hover .video-card__play {
	transform: scale(1.1);
	background: var(--accent);
}

.video-card__play i {
	width: 24px;
	height: 24px;
	margin-left: 2px;
}

.video-card__duration {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
}

.video-card__body {
	padding: 14px;
}

.video-card__body h3 {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.video-card__meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: var(--muted);
	margin-top: 8px;
}

@media (max-width: 1024px) {
	.video-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.video-grid {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOTO GALERİ BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════════════════ */

.photo-gallery-section {
	background: var(--bg-card);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow);
	margin-bottom: 48px;
}

.photo-gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.photo-card {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.photo-card:hover {
	transform: scale(1.02);
	z-index: 2;
}

.photo-card.large {
	grid-column: span 3;
	grid-row: span 2;
}

.photo-card:not(.large) {
	grid-column: span 1;
}

.photo-card__image {
	width: 100%;
	height: 180px;
	position: relative;
	overflow: hidden;
}

.photo-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.photo-card.large .photo-card__image {
	height: 380px;
}

.photo-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 16px;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.photo-card:hover .photo-card__overlay {
	opacity: 1;
}

.photo-card__icon {
	color: #fff;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
}

.photo-card__icon i {
	width: 20px;
	height: 20px;
}

.photo-card__count {
	background: rgba(255,255,255,0.9);
	color: var(--text);
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

.photo-card__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
	color: #fff;
}

.photo-card__caption h3 {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}

.photo-card.large .photo-card__caption h3 {
	font-size: 18px;
}

.photo-card__caption span {
	font-size: 11px;
	opacity: 0.9;
}

@media (max-width: 1024px) {
	.photo-gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.photo-card.large {
		grid-column: span 3;
	}
}

@media (max-width: 640px) {
	.photo-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.photo-card.large {
		grid-column: span 2;
		grid-row: span 1;
	}
	.photo-card__image {
		height: 150px;
	}
	.photo-card.large .photo-card__image {
		height: 200px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   SON DAKİKA TICKER (Alt Bölüm)
   ═══════════════════════════════════════════════════════════════════════════ */

.breaking-news-ticker {
	background: linear-gradient(135deg, var(--accent), #b30000);
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 0;
	overflow: hidden;
	margin-bottom: 48px;
	display: flex;
	align-items: center;
	min-height: 60px;
	box-shadow: 0 4px 20px rgba(220, 0, 0, 0.3);
}

.breaking-news-ticker__label {
	background: rgba(0, 0, 0, 0.3);
	padding: 0 24px;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	flex-shrink: 0;
	white-space: nowrap;
}

.breaking-news-ticker__content {
	flex: 1;
	overflow: hidden;
	position: relative;
	padding: 16px 24px;
	min-height: 28px;
}

.breaking-news-ticker__content::before,
.breaking-news-ticker__content::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 60px;
	z-index: 2;
	pointer-events: none;
}

.breaking-news-ticker__content::before {
	left: 0;
	background: linear-gradient(to right, var(--accent), transparent);
}

.breaking-news-ticker__content::after {
	right: 0;
	background: linear-gradient(to left, var(--accent), transparent);
}

.breaking-news-track {
	display: flex;
	align-items: center;
	gap: 24px;
	animation: tickerScroll 40s linear infinite;
	white-space: nowrap;
}

.breaking-news-ticker__content:hover .breaking-news-track {
	animation-play-state: paused;
}

@keyframes tickerScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.breaking-news-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	white-space: nowrap;
	font-size: 14px;
	text-decoration: none;
	transition: opacity 0.2s ease;
	padding-right: 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.breaking-news-item:last-child {
	border-right: none;
}

.breaking-news-item:hover {
	opacity: 0.8;
	color: #fff;
}

.breaking-news-item strong {
	font-weight: 600;
}

.breaking-news-item span {
	opacity: 0.8;
	font-size: 12px;
}

@media (max-width: 640px) {
	.breaking-news-ticker {
		flex-direction: column;
		min-height: auto;
	}
	.breaking-news-ticker__label {
		width: 100%;
		padding: 12px 16px;
		justify-content: center;
	}
	.breaking-news-ticker__content {
		width: 100%;
		padding: 12px 16px;
		flex-wrap: wrap;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   YAZAR SAYFASI
   ═══════════════════════════════════════════════════════════════════════════ */

.author-page {
	max-width: 1000px;
	margin: 0 auto;
}

.author-hero {
	display: flex;
	gap: 32px;
	padding: 40px;
	background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-alt) 100%);
	border-radius: var(--radius-lg);
	margin-bottom: 40px;
}

.author-hero__avatar {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	flex-shrink: 0;
	overflow: hidden;
	border: 4px solid var(--bg);
	box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.author-hero__avatar.has-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-hero__avatar.placeholder {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	font-weight: 700;
	color: #fff;
}

.author-hero__info {
	flex: 1;
}

.author-hero__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--accent);
	margin-bottom: 8px;
}

.author-hero__info h1 {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 8px;
	color: var(--text);
}

.author-hero__title {
	font-size: 16px;
	color: var(--muted);
	margin: 0 0 16px;
	font-weight: 500;
}

.author-hero__bio {
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-secondary);
	margin: 0 0 20px;
}

.author-hero__stats {
	display: flex;
	gap: 32px;
}

.author-stat {
	text-align: center;
}

.author-stat strong {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: var(--text);
}

.author-stat span {
	font-size: 12px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.author-content {
	margin-top: 40px;
}

.author-articles-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.author-article-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all var(--transition);
}

.author-article-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	border-color: var(--accent);
}

.author-article-card.featured {
	grid-column: 1 / -1;
}

.author-article-card.featured a {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.author-article-card a {
	text-decoration: none;
	color: inherit;
}

.author-article-card__image {
	aspect-ratio: 16/10;
	overflow: hidden;
}

.author-article-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}

.author-article-card:hover .author-article-card__image img {
	transform: scale(1.05);
}

.author-article-card__body {
	padding: 24px;
}

.author-article-card__body time {
	display: block;
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 8px;
}

.author-article-card__body h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--text);
	line-height: 1.4;
}

.author-article-card.featured .author-article-card__body h3 {
	font-size: 22px;
}

.author-article-card__body p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-secondary);
	margin: 0 0 16px;
}

.author-article-card__body .read-more {
	font-size: 14px;
	font-weight: 600;
	color: var(--accent);
}

.author-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--muted);
}

.author-empty svg {
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	opacity: 0.5;
}

@media (max-width: 768px) {
	.author-hero {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 30px 20px;
	}
	
	.author-hero__avatar {
		width: 100px;
		height: 100px;
	}
	
	.author-hero__avatar.placeholder {
		font-size: 36px;
	}
	
	.author-hero__info h1 {
		font-size: 26px;
	}
	
	.author-hero__stats {
		justify-content: center;
	}
	
	.author-articles-grid {
		grid-template-columns: 1fr;
	}
	
	.author-article-card.featured a {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   GAZETE BİRİNCİ SAYFALARI BÖLÜMÜ
   ═══════════════════════════════════════════════════════════════════════════ */

.newspapers-frontpages-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.newspaper-frontpage-card {
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all 0.3s ease;
}

.newspaper-frontpage-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.newspaper-frontpage-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.newspaper-frontpage__image {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: var(--bg);
}

.newspaper-frontpage__image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.newspaper-frontpage-card:hover .newspaper-frontpage__image img {
	transform: scale(1.05);
}

.newspaper-frontpage__placeholder {
	width: 100%;
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #ddd, #bbb);
}

.newspaper-frontpage__placeholder-content {
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.newspaper-logo-big {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: 700;
}

.newspaper-frontpage__placeholder-content strong {
	font-size: 18px;
	font-weight: 700;
}

.newspaper-frontpage__placeholder-content small {
	font-size: 13px;
	opacity: 0.9;
}

.newspaper-frontpage__footer {
	padding: 12px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--border-light);
	background: var(--bg-secondary);
}

.newspaper-frontpage__footer strong {
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
}

.newspaper-frontpage__footer time {
	font-size: 11px;
	color: var(--muted);
}

@media (max-width: 1024px) {
	.newspapers-frontpages-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.newspaper-frontpage__placeholder {
		height: 250px;
	}
}

.newspapers-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.newspaper-card {
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 16px;
	transition: all 0.2s ease;
}

.newspaper-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
	border-color: var(--accent);
}

.newspaper-card__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border-light);
}

.newspaper-logo {
	width: 36px;
	height: 36px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	flex-shrink: 0;
}

.newspaper-logo--hurriyet {
	background: linear-gradient(135deg, #e60012, #c5000f);
}

.newspaper-logo--milliyet {
	background: linear-gradient(135deg, #0066cc, #0052a3);
}

.newspaper-logo--sabah {
	background: linear-gradient(135deg, #ff6600, #e55a00);
}

.newspaper-logo--sozcu {
	background: linear-gradient(135deg, #ff0000, #cc0000);
}

.newspaper-logo--cumhuriyet {
	background: linear-gradient(135deg, #000000, #333333);
}

.newspaper-logo--ntv {
	background: linear-gradient(135deg, #ff0000, #cc0000);
}

.newspaper-name {
	flex: 1;
	font-size: 13px;
	font-weight: 700;
	color: var(--text);
}

.newspaper-card__header time {
	font-size: 11px;
	color: var(--muted);
	flex-shrink: 0;
}

.newspaper-card__title {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.newspaper-card:hover .newspaper-card__title {
	color: var(--accent);
}

.newspaper-card__footer {
	display: flex;
	justify-content: flex-end;
}

.newspaper-card__link {
	font-size: 11px;
	font-weight: 600;
	color: var(--accent);
	text-decoration: none;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.newspaper-card:hover .newspaper-card__link {
	opacity: 1;
}

.newspapers-refresh {
	text-align: center;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--border-light);
}

.newspapers-refresh small {
	font-size: 11px;
	color: var(--muted);
}

.newspapers-placeholder {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.newspaper-card.placeholder {
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 16px;
}

@media (max-width: 640px) {
	.newspaper-card__header {
		flex-wrap: wrap;
	}
	
	.newspaper-card__header time {
		width: 100%;
		margin-top: 4px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   REKLAM ALANLARI
   ═══════════════════════════════════════════════════════════════════════════ */

.advertisement-slot {
	margin: 40px 0;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 1;
}

.advertisement-slot[data-ad-slot*="top"] {
	margin-top: 0;
	margin-bottom: 40px;
}

.advertisement-slot[data-ad-slot*="bottom"] {
	margin-top: 40px;
	margin-bottom: 0;
}

.advertisement-slot[data-ad-slot*="middle"] {
	margin: 40px 0;
}

/* Reklam içeriği */
.advertisement-slot img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: var(--radius);
}

.advertisement-slot iframe {
	max-width: 100%;
	width: 100%;
	border: none;
	border-radius: var(--radius);
	display: block;
}

.advertisement-slot a {
	display: inline-block;
	transition: opacity 0.2s ease;
}

.advertisement-slot a:hover {
	opacity: 0.9;
}

/* Ana sayfa reklamları */
.advertisement-slot[data-ad-slot="home-top"],
.advertisement-slot[data-ad-slot="home-middle"] {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

/* Article sayfası reklamları */
.advertisement-slot[data-ad-slot="article-top"],
.advertisement-slot[data-ad-slot="article-middle"],
.advertisement-slot[data-ad-slot="article-bottom"] {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
	.advertisement-slot {
		margin: 30px 0;
		padding: 0 16px !important;
	}
	
	.advertisement-slot[data-ad-slot*="top"] {
		margin-bottom: 30px;
	}
	
	.advertisement-slot[data-ad-slot*="bottom"] {
		margin-top: 30px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE LOADER
   ═══════════════════════════════════════════════════════════════════════════ */

.page-loader {
	position: fixed;
	inset: 0;
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.hidden {
	opacity: 0;
	visibility: hidden;
}

.page-loader__spinner {
	width: 40px;
	height: 40px;
	border: 3px solid var(--border);
	border-top-color: var(--accent);
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

@media print {
	.site-header,
	.site-footer,
	.scroll-to-top,
	.reading-progress,
	.page-loader,
	.advertisement-slot {
		display: none !important;
	}

	.page-wrapper {
		max-width: 100%;
		padding: 0;
	}

	.article-body {
		font-size: 12pt;
		line-height: 1.5;
	}

	a {
		color: inherit;
		text-decoration: underline;
	}

	img {
		max-width: 100%;
		page-break-inside: avoid;
	}
}