/*
Theme Name:        Motosiklet Fiyatları Child
Theme URI:         https://motosikletfiyatlari.com
Description:       GeneratePress Premium için özel motosiklet haber ve fiyat portalı alt teması. Haber portalı stilinde, responsive ve SEO uyumlu.
Author:            motosikletfiyatlari.com
Author URI:        https://motosikletfiyatlari.com
Template:          generatepress
Version:           1.0.0
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       moto-child
Tags:              motorcycle, news-portal, responsive, generatepress-child
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================================================== */
:root {
	--moto-red:        #E63946;
	--moto-red-dark:   #C1121F;
	--moto-dark:       #1A1A2E;
	--moto-dark-alt:   #16213E;
	--moto-mid:        #0F3460;
	--moto-light:      #F8F9FA;
	--moto-white:      #FFFFFF;
	--moto-text:       #2D3436;
	--moto-text-light: #636E72;
	--moto-border:     #E0E0E0;
	--moto-card-bg:    #FFFFFF;
	--moto-shadow:     0 2px 12px rgba(0,0,0,0.08);
	--moto-shadow-hover: 0 8px 30px rgba(0,0,0,0.14);
	--moto-radius:     8px;
	--moto-radius-sm:  4px;
	--moto-font:       'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--moto-max-width:  1280px;
	--moto-content-width: 860px;
	--moto-sidebar-width: 320px;
	--moto-gap:        24px;
	--moto-transition: all 0.25s ease;
}

/* ==========================================================================
   BASE RESET & GLOBAL
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
}

body {
	font-family: var(--moto-font);
	background-color: var(--moto-light);
	color: var(--moto-text);
	line-height: 1.7;
	font-size: 15px;
	margin: 0;
}

a {
	color: var(--moto-red);
	text-decoration: none;
	transition: var(--moto-transition);
}

a:hover {
	color: var(--moto-red-dark);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* GeneratePress wrapper override */
.site-content {
	padding-top: 0 !important;
}

/* ==========================================================================
   TOP BAR (Üst Bilgi Çubuğu)
   ========================================================================== */
.moto-topbar {
	background-color: var(--moto-dark);
	color: rgba(255,255,255,0.75);
	padding: 7px 0;
	font-size: 12px;
	border-bottom: 2px solid var(--moto-red);
}

.moto-topbar-inner {
	max-width: var(--moto-max-width);
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

.moto-topbar-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.moto-topbar-date {
	display: flex;
	align-items: center;
	gap: 6px;
}

.moto-topbar-date::before {
	content: '📅';
	font-size: 11px;
}

.moto-topbar-tagline {
	color: rgba(255,255,255,0.5);
	font-style: italic;
}

.moto-topbar-right {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Sosyal Medya İkonları (SVG/CSS) */
.moto-social-links {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.moto-social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	transition: var(--moto-transition);
}

.moto-social-links a:hover {
	background: var(--moto-red);
	color: #fff;
	transform: translateY(-2px);
}

/* Üst bar arama */
.moto-topbar-search {
	position: relative;
}

.moto-topbar-search input[type="search"] {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 20px;
	padding: 4px 32px 4px 12px;
	color: #fff;
	font-family: var(--moto-font);
	font-size: 12px;
	width: 180px;
	transition: var(--moto-transition);
}

.moto-topbar-search input[type="search"]:focus {
	outline: none;
	border-color: var(--moto-red);
	width: 220px;
}

.moto-topbar-search input[type="search"]::placeholder {
	color: rgba(255,255,255,0.4);
}

.moto-topbar-search button {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: rgba(255,255,255,0.5);
	cursor: pointer;
	padding: 0;
	font-size: 13px;
}

/* ==========================================================================
   HEADER (Marka Alanı)
   ========================================================================== */
.moto-header {
	background: var(--moto-white);
	padding: 16px 0;
	border-bottom: 1px solid var(--moto-border);
}

.moto-header-inner {
	max-width: var(--moto-max-width);
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.moto-logo-area {
	display: flex;
	flex-direction: column;
}

.moto-logo-area .site-title {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.5px;
	line-height: 1;
	margin: 0;
}

.moto-logo-area .site-title a {
	color: var(--moto-dark);
	text-decoration: none;
}

.moto-logo-area .site-title a span {
	color: var(--moto-red);
}

.moto-logo-area .site-description {
	font-size: 12px;
	color: var(--moto-text-light);
	margin: 4px 0 0;
	font-style: italic;
}

/* Custom Logo */
.moto-header .custom-logo {
	max-height: 60px;
	width: auto;
}

/* Header Banner Ad */
.moto-header-ad {
	text-align: center;
}

/* ==========================================================================
   NAVIGATION (Koyu Navigasyon)
   ========================================================================== */
.moto-nav {
	background: var(--moto-dark);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.moto-nav-inner {
	max-width: var(--moto-max-width);
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* GP Ana menü override */
.moto-nav .main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}

.moto-nav .main-navigation > ul > li > a {
	display: block;
	color: rgba(255,255,255,0.85);
	padding: 14px 16px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: var(--moto-transition);
	border-bottom: 3px solid transparent;
}

.moto-nav .main-navigation > ul > li > a:hover,
.moto-nav .main-navigation > ul > li.current-menu-item > a,
.moto-nav .main-navigation > ul > li.current-menu-ancestor > a {
	color: var(--moto-white);
	border-bottom-color: var(--moto-red);
	background: rgba(255,255,255,0.05);
}

/* Dropdown */
.moto-nav .main-navigation ul ul {
	position: absolute;
	background: var(--moto-dark-alt);
	border-top: 3px solid var(--moto-red);
	min-width: 200px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
	display: none;
	flex-direction: column;
}

.moto-nav .main-navigation ul li:hover > ul {
	display: flex;
}

.moto-nav .main-navigation ul ul li a {
	color: rgba(255,255,255,0.75);
	padding: 10px 16px;
	font-size: 13px;
	display: block;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.moto-nav .main-navigation ul ul li a:hover {
	color: var(--moto-white);
	background: rgba(230,57,70,0.2);
	padding-left: 24px;
}

/* Hamburger */
.moto-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: #fff;
	flex-direction: column;
	gap: 5px;
}

.moto-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: var(--moto-transition);
}

.moto-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.moto-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.moto-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   PAGE WRAPPER
   ========================================================================== */
.moto-main-wrapper {
	max-width: var(--moto-max-width);
	margin: 0 auto;
	padding: 32px 16px;
}

/* İki sütun layout: içerik + sidebar */
.moto-content-sidebar {
	display: grid;
	grid-template-columns: 1fr var(--moto-sidebar-width);
	gap: var(--moto-gap);
	align-items: start;
}

/* ==========================================================================
   SECTION TITLE
   ========================================================================== */
.moto-section-title {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--moto-dark);
	margin: 0 0 20px;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--moto-red);
	display: flex;
	align-items: center;
	gap: 8px;
}

.moto-section-title::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 18px;
	background: var(--moto-red);
	border-radius: 2px;
	flex-shrink: 0;
}

/* ==========================================================================
   HERO / FEATURED SECTION (Öne Çıkan Yazılar)
   ========================================================================== */
.moto-hero {
	margin-bottom: 40px;
}

.moto-hero-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
	min-height: 460px;
}

/* Büyük öne çıkan yazı */
.moto-featured-main {
	grid-row: 1 / 3;
	position: relative;
	border-radius: var(--moto-radius);
	overflow: hidden;
	background: var(--moto-dark);
	min-height: 460px;
}

.moto-featured-main .moto-card-image-wrap {
	position: absolute;
	inset: 0;
}

.moto-featured-main .moto-card-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.moto-featured-main:hover .moto-card-image-wrap img {
	transform: scale(1.04);
}

.moto-featured-main .moto-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.moto-featured-main .moto-card-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	color: #fff;
}

.moto-featured-main .moto-card-title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 10px;
}

.moto-featured-main .moto-card-title a {
	color: #fff;
}

.moto-featured-main .moto-card-title a:hover {
	color: var(--moto-red);
}

/* Küçük öne çıkan yazılar */
.moto-featured-small {
	position: relative;
	border-radius: var(--moto-radius);
	overflow: hidden;
	background: var(--moto-dark);
	min-height: 220px;
}

.moto-featured-small .moto-card-image-wrap {
	position: absolute;
	inset: 0;
}

.moto-featured-small .moto-card-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.moto-featured-small:hover .moto-card-image-wrap img {
	transform: scale(1.05);
}

.moto-featured-small .moto-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 70%);
}

.moto-featured-small .moto-card-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	color: #fff;
}

.moto-featured-small .moto-card-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
}

.moto-featured-small .moto-card-title a {
	color: #fff;
}

.moto-featured-small .moto-card-title a:hover {
	color: var(--moto-red);
}

/* Placeholder görsel */
.moto-no-image {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--moto-dark) 0%, var(--moto-mid) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}

.moto-no-image .moto-placeholder-icon {
	font-size: 48px;
	opacity: 0.3;
}

/* ==========================================================================
   CATEGORY BADGE
   ========================================================================== */
.moto-cat-badge {
	display: inline-block;
	background: var(--moto-red);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 3px 8px;
	border-radius: var(--moto-radius-sm);
	margin-bottom: 8px;
	transition: var(--moto-transition);
}

.moto-cat-badge:hover {
	background: var(--moto-red-dark);
	color: #fff;
}

/* ==========================================================================
   POST CARD (Yazı Kartı)
   ========================================================================== */
.moto-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--moto-gap);
}

.moto-post-card {
	background: var(--moto-card-bg);
	border-radius: var(--moto-radius);
	overflow: hidden;
	box-shadow: var(--moto-shadow);
	transition: var(--moto-transition);
	display: flex;
	flex-direction: column;
}

.moto-post-card:hover {
	box-shadow: var(--moto-shadow-hover);
	transform: translateY(-4px);
}

.moto-post-card-image {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--moto-dark);
}

.moto-post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.moto-post-card:hover .moto-post-card-image img {
	transform: scale(1.06);
}

.moto-post-card-image .moto-cat-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	margin: 0;
}

.moto-post-card-body {
	padding: 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.moto-post-card-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 8px;
}

.moto-post-card-title a {
	color: var(--moto-text);
}

.moto-post-card-title a:hover {
	color: var(--moto-red);
}

.moto-post-card-excerpt {
	font-size: 13px;
	color: var(--moto-text-light);
	line-height: 1.6;
	margin: 0 0 12px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.moto-post-card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	color: var(--moto-text-light);
	border-top: 1px solid var(--moto-border);
	padding-top: 10px;
	margin-top: auto;
	flex-wrap: wrap;
}

.moto-post-card-meta span {
	display: flex;
	align-items: center;
	gap: 4px;
}

.moto-post-card-meta .moto-read-more {
	margin-left: auto;
	color: var(--moto-red);
	font-weight: 600;
	font-size: 11px;
	white-space: nowrap;
}

.moto-post-card-meta .moto-read-more:hover {
	color: var(--moto-red-dark);
}

/* ==========================================================================
   LIST STYLE POSTS (Yatay Kart)
   ========================================================================== */
.moto-post-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.moto-post-list-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 14px;
	align-items: start;
	background: var(--moto-card-bg);
	border-radius: var(--moto-radius);
	overflow: hidden;
	box-shadow: var(--moto-shadow);
	transition: var(--moto-transition);
}

.moto-post-list-item:hover {
	box-shadow: var(--moto-shadow-hover);
}

.moto-post-list-image {
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--moto-dark);
}

.moto-post-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.moto-post-list-item:hover .moto-post-list-image img {
	transform: scale(1.05);
}

.moto-post-list-body {
	padding: 12px 12px 12px 0;
}

.moto-post-list-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 6px;
}

.moto-post-list-title a {
	color: var(--moto-text);
}

.moto-post-list-title a:hover {
	color: var(--moto-red);
}

.moto-post-list-meta {
	font-size: 11px;
	color: var(--moto-text-light);
}

/* ==========================================================================
   PRICE TABLE (Fiyat Kartı)
   ========================================================================== */
.moto-price-card {
	display: grid;
	grid-template-columns: 50px 1fr auto;
	gap: 10px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--moto-border);
}

.moto-price-card:last-child {
	border-bottom: none;
}

.moto-price-rank {
	font-size: 18px;
	font-weight: 800;
	color: var(--moto-border);
	text-align: center;
}

.moto-price-info .moto-price-brand {
	font-size: 11px;
	color: var(--moto-text-light);
	text-transform: uppercase;
}

.moto-price-info .moto-price-model {
	font-size: 13px;
	font-weight: 600;
	color: var(--moto-text);
}

.moto-price-info .moto-price-model a {
	color: var(--moto-text);
}

.moto-price-info .moto-price-model a:hover {
	color: var(--moto-red);
}

.moto-price-amount {
	font-size: 13px;
	font-weight: 700;
	color: var(--moto-red);
	white-space: nowrap;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.moto-sidebar {
	position: sticky;
	top: 60px;
}

.moto-widget-box {
	background: var(--moto-card-bg);
	border-radius: var(--moto-radius);
	box-shadow: var(--moto-shadow);
	padding: 20px;
	margin-bottom: 24px;
}

.moto-widget-box .moto-section-title {
	font-size: 14px;
}

.moto-ad-placeholder {
	background: #f0f0f0;
	border: 2px dashed var(--moto-border);
	border-radius: var(--moto-radius);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
	color: var(--moto-text-light);
	font-size: 12px;
	min-height: 250px;
	margin-bottom: 24px;
}

.moto-ad-placeholder span {
	font-size: 24px;
	margin-bottom: 8px;
}

/* Sidebar son yazılar */
.moto-sidebar-post {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 10px;
	align-items: start;
	padding: 10px 0;
	border-bottom: 1px solid var(--moto-border);
}

.moto-sidebar-post:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.moto-sidebar-post-img {
	width: 70px;
	height: 52px;
	border-radius: var(--moto-radius-sm);
	overflow: hidden;
	background: var(--moto-dark);
	flex-shrink: 0;
}

.moto-sidebar-post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.moto-sidebar-post-title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 4px;
}

.moto-sidebar-post-title a {
	color: var(--moto-text);
}

.moto-sidebar-post-title a:hover {
	color: var(--moto-red);
}

.moto-sidebar-post-meta {
	font-size: 11px;
	color: var(--moto-text-light);
}

/* ==========================================================================
   AD AREAS
   ========================================================================== */
.moto-ad-area {
	margin: 24px 0;
	text-align: center;
}

.moto-ad-area-content-top,
.moto-ad-area-content-bottom {
	padding: 12px;
	background: var(--moto-card-bg);
	border-radius: var(--moto-radius);
	box-shadow: var(--moto-shadow);
}

/* ==========================================================================
   SINGLE POST
   ========================================================================== */
.moto-single-article {
	background: var(--moto-card-bg);
	border-radius: var(--moto-radius);
	box-shadow: var(--moto-shadow);
	overflow: hidden;
}

.moto-single-header {
	padding: 32px 40px 24px;
}

.moto-single-category {
	margin-bottom: 12px;
}

.moto-single-title {
	font-size: 30px;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 16px;
	color: var(--moto-dark);
}

.moto-single-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13px;
	color: var(--moto-text-light);
	flex-wrap: wrap;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--moto-border);
}

.moto-single-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.moto-single-meta a {
	color: var(--moto-text-light);
}

.moto-single-meta a:hover {
	color: var(--moto-red);
}

.moto-single-featured {
	margin: 0;
	aspect-ratio: 16/7;
	overflow: hidden;
	background: var(--moto-dark);
}

.moto-single-featured img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.moto-single-content {
	padding: 32px 40px;
	font-size: 16px;
	line-height: 1.8;
	color: var(--moto-text);
}

.moto-single-content h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 32px 0 16px;
	color: var(--moto-dark);
	border-left: 4px solid var(--moto-red);
	padding-left: 16px;
}

.moto-single-content h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 24px 0 12px;
	color: var(--moto-dark);
}

.moto-single-content p {
	margin: 0 0 20px;
}

.moto-single-content ul, .moto-single-content ol {
	margin: 0 0 20px;
	padding-left: 24px;
}

.moto-single-content li {
	margin-bottom: 6px;
}

.moto-single-content blockquote {
	border-left: 4px solid var(--moto-red);
	margin: 24px 0;
	padding: 16px 24px;
	background: var(--moto-light);
	border-radius: 0 var(--moto-radius) var(--moto-radius) 0;
	font-style: italic;
}

.moto-single-content img {
	border-radius: var(--moto-radius);
	margin: 16px 0;
}

/* Post navigation */
.moto-post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	padding: 24px 40px;
	border-top: 1px solid var(--moto-border);
}

.moto-nav-post {
	background: var(--moto-light);
	border-radius: var(--moto-radius);
	padding: 14px 16px;
	transition: var(--moto-transition);
	border: 1px solid var(--moto-border);
}

.moto-nav-post:hover {
	border-color: var(--moto-red);
	background: rgba(230,57,70,0.04);
}

.moto-nav-post.next {
	text-align: right;
}

.moto-nav-post-label {
	font-size: 11px;
	text-transform: uppercase;
	color: var(--moto-text-light);
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.moto-nav-post-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--moto-text);
	line-height: 1.4;
}

.moto-nav-post a {
	color: var(--moto-text);
	display: block;
}

.moto-nav-post a:hover .moto-nav-post-title {
	color: var(--moto-red);
}

/* ==========================================================================
   RELATED POSTS
   ========================================================================== */
.moto-related {
	padding: 32px 40px;
	border-top: 1px solid var(--moto-border);
}

.moto-related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

/* ==========================================================================
   ARCHIVE / CATEGORY
   ========================================================================== */
.moto-archive-header {
	background: var(--moto-dark);
	color: #fff;
	padding: 40px;
	border-radius: var(--moto-radius);
	margin-bottom: 32px;
	position: relative;
	overflow: hidden;
}

.moto-archive-header::before {
	content: '';
	position: absolute;
	top: -20px;
	right: -20px;
	width: 120px;
	height: 120px;
	background: var(--moto-red);
	border-radius: 50%;
	opacity: 0.15;
}

.moto-archive-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--moto-red);
	margin-bottom: 8px;
}

.moto-archive-title {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 8px;
}

.moto-archive-desc {
	color: rgba(255,255,255,0.65);
	font-size: 14px;
	margin: 0;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.moto-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.moto-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: var(--moto-radius-sm);
	font-size: 13px;
	font-weight: 600;
	background: var(--moto-card-bg);
	border: 1px solid var(--moto-border);
	color: var(--moto-text);
	transition: var(--moto-transition);
}

.moto-pagination .page-numbers:hover,
.moto-pagination .page-numbers.current {
	background: var(--moto-red);
	border-color: var(--moto-red);
	color: #fff;
}

.moto-pagination .prev, .moto-pagination .next {
	width: auto;
	padding: 0 14px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.moto-footer {
	background: var(--moto-dark);
	color: rgba(255,255,255,0.75);
	margin-top: 60px;
}

.moto-footer-widgets {
	max-width: var(--moto-max-width);
	margin: 0 auto;
	padding: 48px 16px 32px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 32px;
}

.moto-footer-widget-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--moto-red);
}

.moto-footer-brand .site-name {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 8px;
}

.moto-footer-brand .site-name span {
	color: var(--moto-red);
}

.moto-footer-brand p {
	font-size: 13px;
	line-height: 1.7;
	margin: 0 0 16px;
}

.moto-footer-brand .moto-social-links a {
	background: rgba(255,255,255,0.08);
}

.moto-footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.moto-footer-links li {
	margin-bottom: 8px;
}

.moto-footer-links a {
	color: rgba(255,255,255,0.65);
	font-size: 13px;
	transition: var(--moto-transition);
	display: flex;
	align-items: center;
	gap: 6px;
}

.moto-footer-links a::before {
	content: '›';
	color: var(--moto-red);
	font-size: 16px;
}

.moto-footer-links a:hover {
	color: var(--moto-white);
	padding-left: 4px;
}

/* Footer newsletter */
.moto-footer-newsletter p {
	font-size: 13px;
	margin-bottom: 12px;
}

.moto-footer-newsletter .moto-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.moto-footer-newsletter input[type="email"] {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: var(--moto-radius-sm);
	padding: 10px 14px;
	color: #fff;
	font-family: var(--moto-font);
	font-size: 13px;
	width: 100%;
}

.moto-footer-newsletter input[type="email"]::placeholder {
	color: rgba(255,255,255,0.35);
}

.moto-footer-newsletter input[type="email"]:focus {
	outline: none;
	border-color: var(--moto-red);
}

.moto-btn {
	display: inline-block;
	background: var(--moto-red);
	color: #fff;
	padding: 10px 20px;
	border-radius: var(--moto-radius-sm);
	font-family: var(--moto-font);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
	cursor: pointer;
	transition: var(--moto-transition);
	text-align: center;
}

.moto-btn:hover {
	background: var(--moto-red-dark);
	color: #fff;
	transform: translateY(-1px);
}

/* Footer bottom */
.moto-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
}

.moto-footer-bottom-inner {
	max-width: var(--moto-max-width);
	margin: 0 auto;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12px;
}

.moto-footer-bottom-links {
	display: flex;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.moto-footer-bottom-links a {
	color: rgba(255,255,255,0.45);
	font-size: 12px;
}

.moto-footer-bottom-links a:hover {
	color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   GENERATEPRESS OVERRIDES (Ana tema uyumu)
   ========================================================================== */
/* Kendi header/nav alanlarımızı kullandığımız için GP header'ı gizliyoruz */
.site-header {
	display: none !important;
}

.navigation-search,
.nav-search-icon {
	display: none;
}

/* GP site içeriği üst boşluğu */
.content-area {
	padding: 0 !important;
	max-width: none !important;
	width: 100% !important;
	float: none !important;
}

/* GP article default stillerini sıfırla */
.entry-content {
	font-family: var(--moto-font);
}

/* GP sidebar override */
.widget-area {
	display: none !important; /* Kendi sidebar.php'yi kullanıyoruz */
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.moto-breadcrumb {
	font-size: 12px;
	color: var(--moto-text-light);
	margin-bottom: 12px;
}

.moto-breadcrumb a {
	color: var(--moto-text-light);
}

.moto-breadcrumb a:hover {
	color: var(--moto-red);
}

.moto-breadcrumb span {
	margin: 0 5px;
	opacity: 0.5;
}

/* ==========================================================================
   READING PROGRESS BAR
   ========================================================================== */
.moto-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--moto-red);
	z-index: 9999;
	transition: width 0.1s;
}

/* ==========================================================================
   NO RESULTS
   ========================================================================== */
.moto-no-results {
	text-align: center;
	padding: 80px 40px;
	background: var(--moto-card-bg);
	border-radius: var(--moto-radius);
	box-shadow: var(--moto-shadow);
}

.moto-no-results .moto-no-results-icon {
	font-size: 64px;
	margin-bottom: 16px;
}

.moto-no-results h2 {
	font-size: 22px;
	margin-bottom: 10px;
}

.moto-no-results p {
	color: var(--moto-text-light);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ==========================================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
	.moto-content-sidebar {
		grid-template-columns: 1fr;
	}

	.moto-sidebar {
		position: static;
	}

	.moto-footer-widgets {
		grid-template-columns: 1fr 1fr;
	}

	.moto-post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.moto-single-header,
	.moto-single-content,
	.moto-post-navigation,
	.moto-related {
		padding-left: 24px;
		padding-right: 24px;
	}

	.moto-related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ========================================================================== */
@media (max-width: 768px) {
	:root {
		--moto-gap: 16px;
	}

	.moto-topbar-tagline {
		display: none;
	}

	.moto-topbar-search {
		display: none;
	}

	/* Hero */
	.moto-hero-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		min-height: auto;
	}

	.moto-featured-main {
		grid-row: 1;
		min-height: 280px;
	}

	.moto-featured-small {
		min-height: 180px;
	}

	/* Cards */
	.moto-post-grid {
		grid-template-columns: 1fr;
	}

	/* Mobile Nav */
	.moto-menu-toggle {
		display: flex;
	}

	.moto-nav .main-navigation {
		display: none;
		width: 100%;
		padding-bottom: 8px;
	}

	.moto-nav .main-navigation.is-open {
		display: block;
	}

	.moto-nav-inner {
		flex-wrap: wrap;
	}

	.moto-nav .main-navigation ul {
		flex-direction: column;
	}

	.moto-nav .main-navigation > ul > li > a {
		padding: 10px 16px;
		border-bottom: 1px solid rgba(255,255,255,0.07);
		border-left: none;
	}

	.moto-nav .main-navigation ul ul {
		position: static;
		display: none;
		box-shadow: none;
		border-top: none;
		background: rgba(255,255,255,0.05);
	}

	.moto-nav .main-navigation ul li.is-open > ul {
		display: flex;
	}

	/* Single */
	.moto-single-header,
	.moto-single-content,
	.moto-post-navigation,
	.moto-related {
		padding-left: 16px;
		padding-right: 16px;
	}

	.moto-single-title {
		font-size: 22px;
	}

	.moto-post-navigation {
		grid-template-columns: 1fr;
	}

	/* Footer */
	.moto-footer-widgets {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 32px 16px;
	}

	/* Related */
	.moto-related-grid {
		grid-template-columns: 1fr;
	}

	/* Archive */
	.moto-archive-header {
		padding: 24px 20px;
	}

	.moto-archive-title {
		font-size: 22px;
	}
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
	.moto-topbar,
	.moto-nav,
	.moto-sidebar,
	.moto-footer,
	.moto-ad-area,
	.moto-post-navigation,
	.moto-related {
		display: none;
	}

	.moto-content-sidebar {
		grid-template-columns: 1fr;
	}
}
