/* ═══════════════════════════════════════════════════════════════════════════
   HABERIBUL - Profesyonel Haber Portalı
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
	--bg: #ffffff;
	--bg-secondary: #f8f9fa;
	--bg-card: #ffffff;
	--text: #1a1a1a;
	--text-secondary: #666666;
	--muted: #999999;
	--accent: #dc0000;
	--accent-hover: #b30000;
	--accent-light: #fff5f5;
	--blue: #0066cc;
	--green: #00a650;
	--border: #e5e5e5;
	--border-light: #f0f0f0;
	--shadow: 0 2px 8px rgba(0,0,0,0.08);
	--shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
	--radius: 4px;
	--radius-lg: 8px;
	--font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	--font-serif: Georgia, 'Times New Roman', serif;
}

html[data-theme="dark"] {
	--bg: #121212;
	--bg-secondary: #1a1a1a;
	--bg-card: #1e1e1e;
	--text: #e5e5e5;
	--text-secondary: #a0a0a0;
	--muted: #707070;
	--accent-light: #2a1a1a;
	--border: #333333;
	--border-light: #2a2a2a;
	--shadow: 0 2px 8px rgba(0,0,0,0.3);
	--shadow-lg: 0 4px 20px rgba(0,0,0,0.4);
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: var(--font);
	background: var(--bg-secondary);
	color: var(--text);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	min-height: 100vh;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--accent);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER - Üst Bilgi Çubuğu
   ═══════════════════════════════════════════════════════════════════════════ */

.site-header {
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

/* Canlı Akış Ticker */
.top-bar {
	background: var(--accent);
	color: #fff;
	display: flex;
	align-items: center;
	padding: 0;
	font-size: 13px;
	overflow: hidden;
}

.ticker-label {
	background: #000;
	color: #fff;
	padding: 8px 16px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.5px;
	white-space: nowrap;
	flex-shrink: 0;
}

.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: 8px;
	padding: 8px 24px;
	color: #fff;
	border-right: 1px solid rgba(255,255,255,0.2);
}

.ticker-card:hover {
	background: rgba(0,0,0,0.1);
	color: #fff;
}

.ticker-card strong {
	font-weight: 500;
}

.ticker-time {
	opacity: 0.7;
	font-size: 12px;
}

.live-dot {
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
	animation: pulse 1.5s infinite;
}

@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: var(--bg);
	position: relative;
}

.nav-container {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding: 12px 20px;
	gap: 24px;
	position: relative;
}

.logo {
	flex-shrink: 0;
}

.logo img {
	width: 120px;   /* burayı 220-350px arası istediğin gibi ayarla */
	height: auto;
}

.primary-nav {
	flex: 1;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
}

.primary-nav a {
	display: block;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	border-radius: var(--radius);
	transition: all 0.15s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
	background: var(--accent);
	color: #fff;
}

.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: none;
	max-height: none;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 10001;
	padding: 80px 20px 40px;
	transform: translateY(-20px);
}

.category-dropdown.open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

body.category-menu-open {
	overflow: hidden;
}

.category-dropdown.open {
	max-height: 600px;
	opacity: 1;
	visibility: visible;
	overflow-y: auto;
}

.category-dropdown__header {
	padding: 20px 24px;
	border-bottom: 1px solid var(--border);
	background: var(--bg-secondary);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 10002;
	max-width: 1200px;
	margin: 0 auto;
}

.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: 0;
	padding: 24px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 10003;
}

.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__grid {
		grid-template-columns: 1fr;
		padding: 16px;
	}
	
	.category-dropdown__header {
		padding: 16px;
	}
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.search-form {
	display: flex;
	align-items: center;
	background: var(--bg-secondary);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}

.search-form input {
	border: none;
	background: transparent;
	padding: 8px 12px;
	font-size: 14px;
	width: 180px;
	color: var(--text);
}

.search-form input::placeholder {
	color: var(--muted);
}

.search-form input:focus {
	outline: none;
}

.search-form button {
	background: transparent;
	border: none;
	padding: 8px 12px;
	cursor: pointer;
	color: var(--muted);
	display: flex;
	align-items: center;
}

.search-form button:hover {
	color: var(--accent);
}

.search-form button svg {
	width: 18px;
	height: 18px;
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: var(--accent);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	border-radius: var(--radius);
	border: none;
	cursor: pointer;
	transition: background 0.15s ease;
}

.btn-cta:hover {
	background: var(--accent-hover);
	color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE WRAPPER
   ═══════════════════════════════════════════════════════════════════════════ */

.page-wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px;
	width: 100%;
	overflow-x: hidden;
}

@media (max-width: 768px) {
	.page-wrapper {
		padding: 12px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   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-lg);
	overflow: hidden;
	background: var(--bg-secondary);
	margin-bottom: 32px;
}

.hero-carousel {
	position: relative;
	height: 420px;
	overflow: hidden;
	margin-bottom: 0;
	padding-bottom: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
	display: flex;
	flex-direction: column;
}

.hero-slide[data-active="true"] {
	opacity: 1;
	position: relative;
}

.hero-slide__media {
	display: block;
	height: 420px;
	position: relative;
	flex-shrink: 0;
}

.hero-slide__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.hero-slide__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
	pointer-events: none;
	z-index: 1;
}

.hero-slide__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 28px 32px;
	color: #fff;
	z-index: 2;
	background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.hero-meta .pill {
	background: var(--accent);
	color: #fff;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 2px;
}

.hero-meta time {
	font-size: 12px;
	opacity: 0.8;
}

.hero-slide__content h1 {
	margin: 0 0 8px;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
}

.hero-slide__content h1 a {
	color: #fff;
}

.hero-slide__content h1 a:hover {
	text-decoration: underline;
}

.hero-slide__content p {
	margin: 0;
	font-size: 14px;
	opacity: 0.85;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hero-slide__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	font-size: 12px;
	opacity: 0.7;
}

.ghost-link {
	color: #fff;
	font-weight: 500;
}

.ghost-link:hover {
	text-decoration: underline;
	color: #fff;
}

.hero-carousel__nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 12px;
	pointer-events: none;
}

.hero-carousel__nav button {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
	transition: all 0.2s ease;
}

.hero-carousel__nav button:hover {
	background: #fff;
	transform: scale(1.1);
}

.hero-carousel__nav button svg {
	width: 20px;
	height: 20px;
	color: #000;
}

.hero-carousel__counter {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	background: var(--bg);
	border: 1px solid var(--border);
	padding: 12px 20px;
	border-radius: var(--radius);
	color: var(--text);
	font-weight: 600;
	font-size: 14px;
	margin-top: 16px;
	box-shadow: var(--shadow-sm);
}

.hero-carousel__counter .hero-carousel__current {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.hero-carousel__counter .hero-carousel__separator {
	opacity: 0.6;
	margin: 0 2px;
}

.hero-carousel__counter .hero-carousel__total {
	opacity: 0.8;
	font-size: 14px;
}

.hero-carousel__dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	padding: 8px 12px;
	border-radius: 20px;
	z-index: 10;
}

.hero-carousel__dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
	position: relative;
}

.hero-carousel__dots button .dot-indicator {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: inherit;
}

.hero-carousel__dots button.active {
	background: #fff;
	transform: scale(1.3);
	box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.hero-carousel__dots button:hover {
	background: rgba(255,255,255,0.8);
	transform: scale(1.2);
}

/* 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: 16px;
	margin-top: 0;
	grid-auto-rows: minmax(auto, max-content);
}

.hero-side__block {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 16px;
}

.hero-side__block header {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border-light);
}

.hero-side__block header h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
}

.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: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--accent);
}

.section-head h2 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--text);
}

.section-head p {
	margin: 0;
	font-size: 12px;
	color: var(--muted);
}

.section-head .ghost-link {
	color: var(--accent);
	font-size: 13px;
	font-weight: 500;
}

.section-head.compact {
	border-bottom: none;
	padding-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SPOTLIGHT GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.spotlight-grid {
	margin-bottom: 30px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.spotlight-grid__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	width: 100%;
	min-width: 0;
}

.spotlight-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-width: 0;
	width: 100%;
	transition: box-shadow 0.2s ease;
}

.spotlight-card:hover {
	box-shadow: var(--shadow-lg);
}

.spotlight-card a {
	display: block;
}

.spotlight-card__image {
	width: 100%;
	height: 140px;
	object-fit: cover;
	object-position: center;
	background-color: var(--bg-secondary);
	display: block;
}

.spotlight-card__body {
	padding: 12px;
}

.spotlight-card__body .pill {
	display: inline-block;
	background: var(--accent-light);
	color: var(--accent);
	padding: 2px 8px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 2px;
	margin-bottom: 8px;
}

.spotlight-card__body 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;
}

.spotlight-card:hover h3 {
	color: var(--accent);
}

.spotlight-card__body 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;
}

/* 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: 12px;
	background: linear-gradient(90deg, var(--border-light), var(--bg-secondary), var(--border-light));
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
	border-radius: 4px;
}

.skeleton-line.short {
	width: 60%;
}

.skeleton-block {
	background: linear-gradient(90deg, var(--border-light), var(--bg-secondary), var(--border-light));
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
	border-radius: var(--radius);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.site-footer {
	background: #1a1a1a;
	color: #e5e5e5;
	margin-top: 40px;
}

/* Newsletter Section */
.footer-newsletter {
	background: linear-gradient(135deg, #dc0000, #8b0000);
	padding: 40px 20px;
}

.footer-newsletter__content {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.footer-newsletter__text h3 {
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
}

.footer-newsletter__text p {
	margin: 0;
	font-size: 14px;
	color: rgba(255,255,255,0.85);
}

.footer-newsletter__form {
	flex-shrink: 0;
}

.footer-newsletter__form .input-group {
	display: flex;
	gap: 0;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.footer-newsletter__form input[type="email"] {
	border: none;
	padding: 14px 18px;
	font-size: 15px;
	width: 280px;
	color: #1a1a1a;
}

.footer-newsletter__form input[type="email"]::placeholder {
	color: #999;
}

.footer-newsletter__form input[type="email"]:focus {
	outline: none;
}

.footer-newsletter__form button {
	background: #1a1a1a;
	color: #fff;
	border: none;
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.footer-newsletter__form button:hover {
	background: #333;
}

.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: 1280px;
	margin: 0 auto;
	padding: 50px 20px 40px;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
	gap: 40px;
}

.footer-brand img {
	margin-bottom: 16px;
}

.footer-brand p {
	font-size: 14px;
	color: #a0a0a0;
	line-height: 1.6;
	margin: 0 0 20px;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	background: #333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all 0.2s ease;
}

.footer-social a:hover {
	background: var(--accent);
	color: #fff;
}

.footer-social svg {
	width: 18px;
	height: 18px;
}

.footer-col h4 {
	margin: 0 0 20px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col a {
	font-size: 14px;
	color: #a0a0a0;
	transition: color 0.2s ease;
}

.footer-col a:hover {
	color: #fff;
}

.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: 12px;
}

.footer-stat-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-stat-item strong {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.footer-stat-item span {
	font-size: 12px;
	color: rgba(255,255,255,0.7);
}

.footer-bottom {
	max-width: 1280px;
	margin: 0 auto;
	padding: 24px 20px;
	border-top: 1px solid #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	color: #707070;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom > div {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-bottom .separator {
	color: #555;
	margin: 0 4px;
}

.footer-bottom__links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-bottom__links a {
	color: #707070;
	text-decoration: none;
	transition: color 0.2s ease;
}

.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: 360px;
	}

	.hero-slide__content {
		padding: 20px 16px;
	}

	.hero-slide__content h1 {
		font-size: 20px;
		line-height: 1.3;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.hero-slide__content p {
		display: none;
	}

	.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: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.article-hero {
	position: relative;
	z-index: 0;
}

.article-hero-bar {
	padding: 30px 0;
	position: relative;
	z-index: 1;
}

.article-hero-tags {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.article-hero-bar h1 {
	margin: 0 0 20px;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--text);
}

.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;
}

/* 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-block;
	padding: 5px 12px;
	background: var(--accent);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	border-radius: 20px;
	text-transform: uppercase;
}

.chip.ghost {
	background: var(--bg-alt);
	color: var(--text);
}

@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;
}

@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;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   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);
}

/* İ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), #ff3d71);
	z-index: 9999;
	transition: width 0.1s ease-out;
	box-shadow: 0 2px 8px rgba(220, 0, 0, 0.3);
}

html[data-theme="dark"] .reading-progress {
	background: linear-gradient(90deg, var(--accent), #ff3d71);
	box-shadow: 0 2px 8px rgba(220, 0, 0, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL TO TOP BUTONU
   ═══════════════════════════════════════════════════════════════════════════ */

.scroll-to-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	border: none;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(220, 0, 0, 0.3);
	z-index: 9998;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(10px);
}

.scroll-to-top:focus {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.scroll-to-top:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(220, 0, 0, 0.4);
}

.scroll-to-top[style*="flex"] {
	opacity: 1;
	transform: translateY(0);
}

.scroll-to-top svg {
	width: 20px;
	height: 20px;
}

html[data-theme="dark"] .scroll-to-top {
	box-shadow: 0 4px 16px rgba(220, 0, 0, 0.5);
}

@media (max-width: 640px) {
	.scroll-to-top {
		bottom: 16px;
		right: 16px;
		width: 44px;
		height: 44px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   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;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   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;
	}
}