*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #ffffff;
    --color-surface: #f8f8f8;
    --color-border: #e8e8e8;
    --color-border-light: #f0f0f0;
    --color-text: #1a1a1a;
    --color-text-secondary: #555555;
    --color-text-muted: #888888;
    --color-accent: #111111;
    --color-accent-hover: #333333;
    --color-link: #111111;
    --color-link-hover: #444444;
    --color-tag-bg: #f0f0f0;
    --color-tag-text: #333333;
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Oxygen, sans-serif;
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-mono: 'Courier New', Courier, monospace;
    --max-width: 1200px;
    --content-width: 720px;
    --sidebar-width: 300px;
    --gap: 40px;
    --radius: 4px;
    --transition: 0.18s ease;
    --twitter: #1d9bf0;
    --facebook: #1877f2;
    --whatsapp: #25d366;
    --telegram: #229ed9;
    --linkedin: #0a66c2;
    --pinterest: #e60023;
    --instagram: #d62976;
    --youtube: #ff0000;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body.no-scroll { overflow: hidden; }

/* megaMenuPortal - paneller body içinde, z-index yüksek */
#megaMenuPortal { position: relative; z-index: 1000; }

a {
    color: var(--color-link);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-link-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.page-body {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: var(--gap);
    padding: 40px 0 60px;
    align-items: start;
}

.page-body.full-width {
    grid-template-columns: 1fr;
}

.main-content {
    min-width: 0;
}

.site-header {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 400;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

.site-logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-text);
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    max-width: min(240px, 55vw);
}
.site-logo img {
    height: 36px;
    width: auto;
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    display: block;
}
.site-logo:hover { color: var(--color-primary); }

.site-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
}
.site-nav::-webkit-scrollbar { display: none; }

.site-nav a,
.site-nav .nav-mega-btn {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    padding: 6px 10px;
    border-radius: 6px;
    transition: color .15s, background .15s;
    text-decoration: none;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    position: relative;
}
.site-nav a:hover,
.site-nav .nav-mega-btn:hover {
    color: var(--color-primary);
    background: rgba(59,130,246,.07);
}
.site-nav a.active {
    color: var(--color-primary);
    font-weight: 700;
}
.site-nav .nav-mega-btn.mega-active,
.site-nav .nav-mega-btn.active {
    color: var(--color-primary);
    background: rgba(59,130,246,.1);
    font-weight: 700;
}
.nav-chevron {
    transition: transform .2s ease;
    flex-shrink: 0;
    pointer-events: none;
    opacity: .6;
}
.nav-mega-btn.mega-active .nav-chevron,
.nav-mega-btn:hover .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}
.nav-plain { /* alias for .site-nav a */ }

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-search {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-text-secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    transition: background var(--transition), color var(--transition);
}

.btn-search:hover {
    background: var(--color-surface);
    color: var(--color-text);
}

.btn-search svg {
    width: 18px;
    height: 18px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-text);
    border-radius: var(--radius);
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
    display: none;
    border-top: 1px solid var(--color-border);
    padding: 12px 0;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--color-text);
}

/* ── Arama Overlay ───────────────────────────────────────────── */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.72);
    z-index: 1100;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
}
.search-overlay.open {
    display: flex;
    animation: soFadeIn .16s ease;
}
@keyframes soFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.search-overlay-box {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 16px;
}
.search-overlay-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
    border: 2.5px solid var(--color-primary, #3b82f6);
}
.search-overlay-icon {
    flex-shrink: 0;
    margin-left: 20px;
    color: #94a3b8;
    pointer-events: none;
}
.search-overlay-form input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 16px;
    font-size: 1.0625rem;
    background: transparent;
    color: #1e293b;
    font-family: inherit;
}
.search-overlay-form input[type="search"]::placeholder { color: #94a3b8; }
.search-overlay-form button[type="submit"] {
    flex-shrink: 0;
    background: var(--color-primary, #3b82f6);
    color: #fff;
    border: none;
    padding: 18px 28px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s;
    white-space: nowrap;
}
.search-overlay-form button[type="submit"]:hover { background: #2563eb; }
.search-overlay-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: rgba(255,255,255,.15);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.search-overlay-close:hover { background: rgba(255,255,255,.3); }

/* Eski search-bar-overlay - geriye dönük */
.search-bar-overlay { display: none !important; }
.search-form { /* artık search-overlay-form kullanılıyor */ }

.ad-unit {
    text-align: center;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ad-unit:empty {
    display: none !important;
}

.ad-unit::before {
    content: "Reklam";
    font-size: 0.7rem;
    color: var(--color-text-muted);
    position: absolute;
    top: 4px;
    left: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ad-leaderboard {
    width: 100%;
    min-height: 90px;
    margin: 0 0 32px;
}

.ad-rectangle {
    width: 100%;
    min-height: 250px;
    margin: 0 0 24px;
}

.ad-in-article {
    width: 100%;
    min-height: 250px;
    margin: 32px 0;
    clear: both;
}

.ad-sidebar {
    width: 100%;
    min-height: 250px;
    margin: 0 0 24px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.breadcrumb a {
    color: var(--color-text-muted);
}

.breadcrumb a:hover {
    color: var(--color-text-secondary);
}

.breadcrumb .sep {
    color: var(--color-border);
}

.breadcrumb .current {
    color: var(--color-text-secondary);
}

.hero-section {
    margin-bottom: 40px;
}

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero-slider-section {
    margin-bottom: 40px;
    position: relative;
}
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.hero-slide {
    display: none;
    animation: slideIn .4s ease;
}
.hero-slide.active { display: block; }
@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}
.hero-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}
.hero-slider-prev,
.hero-slider-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--color-primary, #3b82f6);
    color: #fff;
    border-color: var(--color-primary, #3b82f6);
}
.hero-slider-dots {
    display: flex;
    gap: 7px;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.hero-dot.active {
    background: var(--color-primary, #3b82f6);
    transform: scale(1.3);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.featured-post-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-surface);
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.03);
}

.featured-post-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-primary);
    padding: 5px 12px;
    border-radius: 20px;
    align-self: flex-start;
}

.featured-post-content h2 {
    font-size: 1.625rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.featured-post-content h2 a {
    color: var(--color-text);
}

.featured-post-content h2 a:hover {
    color: var(--color-text-secondary);
}

.featured-post-content p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

.post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.post-meta a {
    color: var(--color-text-muted);
}

.post-meta a:hover {
    color: var(--color-text-secondary);
}

.post-meta .dot {
    color: var(--color-border);
}

.post-category-badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    border-bottom: 2px solid var(--color-text);
    padding-bottom: 1px;
}

.post-category-badge:hover {
    color: var(--color-text);
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-text);
}

.section-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    text-transform: uppercase;
}

.section-link {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.section-link:hover {
    color: var(--color-text);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.category-tab {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    background: var(--color-bg);
    transition: all var(--transition);
}

.category-tab:hover,
.category-tab.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.category-section {
    margin-bottom: 48px;
}

.category-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.category-section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-section-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}

.category-section-title {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.category-section-count {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.post-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.post-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.post-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.post-card:hover {
    border-color: #bbb;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.post-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-surface);
    position: relative;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.04);
}

.post-card-image .post-card-category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.post-card-body {
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.post-card-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.1px;
}

.post-card-title a {
    color: var(--color-text);
}

.post-card-title a:hover {
    color: var(--color-text-secondary);
}

.post-card-excerpt {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex: 1;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.post-list-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border-light);
    align-items: center;
}

.post-list-item:last-child {
    border-bottom: none;
}

.post-list-item-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--color-surface);
    flex-shrink: 0;
}

.post-list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-list-item-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.post-list-item-title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
}

.post-list-item-title a {
    color: var(--color-text);
}

.post-list-item-title a:hover {
    color: var(--color-text-secondary);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text-secondary);
    background: var(--color-bg, #fff);
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
    text-decoration: none;
    line-height: 1;
}

.pagination a:hover {
    background: var(--color-surface);
    border-color: #c8c8c8;
    color: var(--color-text);
    transform: translateY(-1px);
}

.pagination .current {
    background: var(--color-text);
    border-color: var(--color-text);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.pagination .prev,
.pagination .next {
    min-width: auto;
    padding: 0 16px;
    font-weight: 600;
}

.pagination .is-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.pagination-ellipsis {
    border: none !important;
    background: transparent !important;
    min-width: 28px !important;
    color: var(--color-text-muted) !important;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 80px;
}

.sidebar-widget {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.sidebar-widget-title {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.sidebar-widget-content {
    padding: 16px;
}

.sidebar-categories li {
    border-bottom: 1px solid var(--color-border-light);
}

.sidebar-categories li:last-child {
    border-bottom: none;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.sidebar-categories a:hover {
    color: var(--color-text);
}

.sidebar-categories .count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 2px 7px;
    border-radius: 20px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    display: inline-block;
    font-size: 0.8125rem;
    color: var(--color-tag-text);
    background: var(--color-tag-bg);
    padding: 4px 10px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.tag:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.popular-posts li {
    border-bottom: 1px solid var(--color-border-light);
}

.popular-posts li:last-child {
    border-bottom: none;
}

.popular-post-link {
    display: grid;
    grid-template-columns: 28px 60px 1fr;
    gap: 10px;
    padding: 10px 0;
    align-items: center;
}

.popular-post-rank {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-border);
    text-align: center;
    font-style: italic;
}

.popular-post-img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--color-surface);
}

.popular-post-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.4;
}

.popular-post-link:hover .popular-post-title {
    color: var(--color-text-secondary);
}

.popular-post-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sidebar-social {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.sidebar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    border-radius: var(--radius);
    color: #fff;
    transition: transform var(--transition), opacity var(--transition);
}

.sidebar-social a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.sidebar-social a svg {
    width: 18px;
    height: 18px;
}

.sidebar-social .sc-twitter { background: var(--twitter); }
.sidebar-social .sc-facebook { background: var(--facebook); }
.sidebar-social .sc-instagram { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.sidebar-social .sc-youtube { background: var(--youtube); }
.sidebar-social .sc-telegram { background: var(--telegram); }
.sidebar-social .sc-linkedin { background: var(--linkedin); }
.sidebar-social .sc-pinterest { background: var(--pinterest); }
.sidebar-social .sc-whatsapp { background: var(--whatsapp); }

.article-header {
    margin-bottom: 32px;
}

.article-header h1 {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.article-meta a {
    color: var(--color-text-muted);
}

.article-meta a:hover {
    color: var(--color-text-secondary);
}

.article-author-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-surface);
}

.article-featured-figure {
    margin: 0 0 32px;
}
.article-featured-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--color-surface);
    margin-bottom: 0;
    display: block;
}
.article-featured-caption,
.content-figure figcaption {
    margin-top: 8px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.4;
}
.content-figure {
    margin: 1.5rem 0;
}
.content-figure img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}
.content-image-link {
    display: block;
}

/* Reklam slotlari - AdSense uyumlu, CLS dusuk */
.ad-slot {
    display: block;
    margin: 1.25rem 0;
    text-align: center;
    min-height: 50px;
    clear: both;
}
.ad-slot-inner {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
}
.ad-slot-header_banner,
.ad-slot-footer_banner {
    margin: 0.75rem auto;
}
.ad-slot-sidebar_top_ad,
.ad-slot-sidebar_ad {
    margin: 0 0 1rem;
}
.ad-slot-in_article_ad,
.ad-slot-in_article_ad_2 {
    margin: 1.75rem 0;
    padding: 0.5rem 0;
    border-top: 1px dashed var(--color-border);
    border-bottom: 1px dashed var(--color-border);
}

.article-toc {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius);
    padding: 0;
    margin-bottom: 32px;
    overflow: hidden;
}

.article-toc-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-align: left;
}

.article-toc-toggle:hover {
    background: rgba(0, 0, 0, 0.03);
}

.article-toc-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0;
}

.article-toc-title svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.toc-chevron {
    flex-shrink: 0;
    color: var(--color-text-muted);
    transition: transform .2s ease;
}

.article-toc-toggle[aria-expanded="true"] .toc-chevron {
    transform: rotate(180deg);
}

.article-toc-panel {
    padding: 0 18px 16px;
    border-top: 1px solid var(--color-border);
}

.article-toc-panel[hidden] {
    display: none !important;
}

.article-toc ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: toc-counter;
    margin: 12px 0 0;
    padding: 0;
}

.article-toc li {
    counter-increment: toc-counter;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.article-toc li::before {
    content: counter(toc-counter);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 50%;
}

.article-toc li.toc-more {
    counter-increment: none;
    color: var(--color-text-muted, #64748b);
    font-size: 0.875rem;
    padding-left: 30px;
}
.article-toc li.toc-more::before {
    display: none;
}

.article-toc a {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.article-toc a:hover {
    color: var(--color-primary);
}

/* Lazy görseller: yer tutucu + yumuşak görünüm */
img[loading="lazy"] {
    background: var(--color-surface, #f3f4f6);
}
img.is-loaded {
    animation: imgFadeIn .25s ease;
}
@keyframes imgFadeIn {
    from { opacity: .55; }
    to { opacity: 1; }
}

.article-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text);
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
    letter-spacing: -0.3px;
    line-height: 1.3;
    scroll-margin-top: 90px;
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 32px 0 12px;
    line-height: 1.35;
    scroll-margin-top: 90px;
}

.article-body h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 24px 0 10px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 20px 24px;
}

.article-body ul {
    list-style: disc;
}

.article-body ol {
    list-style: decimal;
}

.article-body li {
    margin-bottom: 6px;
    line-height: 1.7;
}

.article-body blockquote {
    border-left: 3px solid var(--color-primary);
    margin: 32px 0;
    padding: 16px 24px;
    background: var(--color-surface);
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--color-text-secondary);
}

.article-body blockquote p {
    margin: 0;
}

.article-body pre {
    background: #1a1a1a;
    color: #f0f0f0;
    padding: 20px;
    border-radius: var(--radius);
    overflow-x: auto;
    margin: 24px 0;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.6;
}

.article-body code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 2px 6px;
    border-radius: 3px;
}

.article-body pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: inherit;
}

.article-body img {
    border-radius: var(--radius);
    margin: 24px 0;
}

.article-body a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: var(--color-primary-hover);
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9375rem;
}

.article-body th,
.article-body td {
    border: 1px solid var(--color-border);
    padding: 10px 14px;
    text-align: left;
}

.article-body th {
    background: var(--color-surface);
    font-weight: 600;
    font-size: 0.875rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    align-items: center;
}

.article-tags-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: none;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    transition: all var(--transition);
    cursor: pointer;
}

.share-btn svg {
    width: 15px;
    height: 15px;
}

.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    color: #fff;
}

.share-btn.share-twitter { background: var(--twitter); }
.share-btn.share-facebook { background: var(--facebook); }
.share-btn.share-whatsapp { background: var(--whatsapp); }
.share-btn.share-telegram { background: var(--telegram); }
.share-btn.share-linkedin { background: var(--linkedin); }
.share-btn.share-copy { background: var(--color-text); }

.author-box {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-top: 40px;
}

.author-box-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-surface);
}

.author-box-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-box-name a {
    color: var(--color-text);
}

.author-box-name a:hover {
    color: var(--color-text-secondary);
}

.author-box-bio {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-top: 6px;
}

.related-posts {
    margin-top: 48px;
}

.related-posts .section-header {
    margin-bottom: 20px;
}

.comments-section {
    margin-top: 48px;
}

.comments-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.comments-summary-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.comments-summary-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.comment {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.comment:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-color: #ddd;
}

.comment.comment-reply {
    margin-left: 48px;
    background: var(--color-surface);
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-surface);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.comment-author {
    font-size: 0.9375rem;
    font-weight: 700;
}

.comment-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-primary);
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.comment-date {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.comment-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-top: 8px;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.comment-like-btn,
.comment-reply-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0;
    font-weight: 600;
    transition: color var(--transition);
}

.comment-like-btn svg,
.comment-reply-btn svg {
    width: 14px;
    height: 14px;
}

.comment-like-btn:hover,
.comment-reply-btn:hover {
    color: var(--color-primary);
}

.comment-form {
    margin-top: 32px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 28px;
}

.comment-form h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 0.9375rem;
    background: var(--color-bg);
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group.full {
    grid-column: 1 / -1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    gap: 8px;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-outline:hover {
    background: var(--color-surface);
    border-color: #bbb;
}

.page-header {
    padding: 40px 0 32px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
}

.page-header-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    max-width: 560px;
    line-height: 1.6;
}

.page-header-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.page-header-stats strong {
    color: var(--color-text);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.category-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.category-card:hover {
    border-color: #bbb;
}

.category-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-surface);
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-card:hover .category-card-img img {
    transform: scale(1.04);
}

.category-card-body {
    padding: 16px;
}

.category-card-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.category-card-name a {
    color: var(--color-text);
}

.category-card-name a:hover {
    color: var(--color-text-secondary);
}

.category-card-count {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.content-disclaimer {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 20px 0 28px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #e8d9a8;
    background: #fffbeb;
    color: #3f3a2a;
}

.content-disclaimer--medical {
    border-color: #f0c4c4;
    background: #fff5f5;
}

.content-disclaimer--finance {
    border-color: #c9d9f0;
    background: #f4f8ff;
}

.content-disclaimer--legal {
    border-color: #d8d0f0;
    background: #f7f5ff;
}

.content-disclaimer-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.06);
    color: #5a4b1e;
}

.content-disclaimer--medical .content-disclaimer-icon { color: #8a3030; }
.content-disclaimer--finance .content-disclaimer-icon { color: #2f4f8a; }
.content-disclaimer--legal .content-disclaimer-icon { color: #4a3d8a; }

.content-disclaimer-title {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.content-disclaimer-body p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: inherit;
}

.content-disclaimer-links {
    margin-bottom: 0 !important;
    font-size: 0.85rem !important;
}

.content-disclaimer-links a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-disclaimer--page {
    margin-top: 8px;
}

.profile-header {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    align-items: start;
    padding: 40px 0 32px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 40px;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-border);
    background: var(--color-surface);
}

.profile-name {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 6px;
}

.profile-role {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.profile-bio {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    max-width: 500px;
}

.profile-stats {
    display: flex;
    gap: 28px;
    margin-top: 20px;
}

.profile-stat {
    text-align: center;
}

.profile-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: block;
}

.profile-stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.profile-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.profile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    color: #fff;
    transition: all var(--transition);
}

.profile-social a:hover {
    transform: translateY(-2px);
}

.profile-social svg {
    width: 16px;
    height: 16px;
}

.search-results-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.search-results-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.search-results-count {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.search-results-count strong {
    color: var(--color-text);
}

.search-highlight {
    background: #fef08a;
    padding: 0 3px;
    border-radius: 2px;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-info-icon svg {
    width: 18px;
    height: 18px;
}

.contact-info-text h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-info-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}

.about-intro-img {
    border-radius: var(--radius);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--color-surface);
}

.about-lead {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.65;
    margin-bottom: 16px;
}

.about-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.team-card {
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    padding-bottom: 16px;
}

.team-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--color-surface);
    margin-bottom: 12px;
}

.team-card-name {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card-role {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.legal-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 36px 0 14px;
    letter-spacing: -0.2px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 0 0 16px 22px;
    list-style: disc;
}

.legal-content li {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.875rem;
}

.legal-content th,
.legal-content td {
    border: 1px solid var(--color-border);
    padding: 10px 14px;
    text-align: left;
}

.legal-content th {
    background: var(--color-surface);
    font-weight: 700;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 8px 14px;
    border-radius: 20px;
    margin-bottom: 32px;
}

.legal-toc {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 32px;
}

.legal-toc-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    color: var(--color-text-muted);
}

.legal-toc ul {
    list-style: none;
    margin: 0;
    columns: 2;
    gap: 24px;
}

.legal-toc li {
    margin-bottom: 8px;
}

.legal-toc a {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.legal-toc a:hover {
    color: var(--color-primary);
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 620px;
    margin: 0 auto;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.14);
    padding: 22px 24px;
    z-index: 500;
    display: none;
}

.cookie-banner.open {
    display: block;
}

.cookie-banner-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cookie-banner-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-banner-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    flex: 1;
}

.not-found-code {
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: -8px;
    line-height: 1;
    color: var(--color-surface);
    border: 2px solid var(--color-border);
    padding: 20px 40px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    user-select: none;
}

.not-found h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.not-found p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-width: 400px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.not-found-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.site-footer {
    background: #111111;
    border-top: 3px solid var(--color-primary);
    margin-top: auto;
    color: #d4d4d4;
}
.site-footer .footer-widget-title {
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-bottom: 8px;
    margin-bottom: 14px;
}
.site-footer .footer-links a {
    color: #aaaaaa;
}
.site-footer .footer-links a:hover {
    color: #ffffff;
}
.site-footer .footer-bottom {
    border-top-color: rgba(255,255,255,.1);
    color: #777;
}
.site-footer .footer-bottom a {
    color: #777;
}
.site-footer .footer-bottom a:hover {
    color: #ffffff;
}
.site-footer .footer-bottom-links a {
    color: #aaa;
}
.site-footer .footer-bottom-links a:hover {
    color: #fff;
}
.site-footer .footer-desc,
.site-footer .footer-copy {
    color: #999;
}
.footer-logo {
    color: #ffffff !important;
}
.footer-contact-email a {
    color: var(--color-primary) !important;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 48px 0 40px;
}
@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 0 28px; }
}
@media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-top: 12px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius);
    color: #fff;
    transition: all var(--transition);
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-widget-title {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--color-text);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-text);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

.footer-bottom-links a {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--color-text);
}

.text-muted { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }
.font-bold { font-weight: 700; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }
.divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 32px 0;
}

@media (max-width: 1024px) {
    :root {
        --gap: 28px;
        --sidebar-width: 260px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .post-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --gap: 24px;
    }

    .site-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .page-body {
        grid-template-columns: 1fr;
        padding: 24px 0 48px;
    }

    .sidebar {
        position: static;
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post-image {
        aspect-ratio: 16/9;
    }

    .featured-post-content {
        padding: 20px;
    }

    .featured-post-content h2 {
        font-size: 1.25rem;
    }

    .post-grid {
        grid-template-columns: 1fr;
    }

    .post-grid.three-col,
    .post-grid.four-col {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.5rem;
    }

    .profile-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-avatar {
        margin: 0 auto;
    }

    .profile-stats {
        justify-content: center;
    }

    .profile-social {
        justify-content: center;
    }

    .profile-bio {
        max-width: 100%;
    }

    .author-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-box-img {
        margin: 0 auto;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .post-list-item {
        grid-template-columns: 90px 1fr;
    }

    .not-found-code {
        font-size: 5rem;
        letter-spacing: -4px;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ad-leaderboard {
        min-height: 60px;
    }

    .comment.comment-reply {
        margin-left: 16px;
    }

    .legal-toc ul {
        columns: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .post-list-item {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .pagination a,
    .pagination span {
        min-width: 34px;
        height: 34px;
        font-size: 0.8125rem;
    }

    .pagination .prev,
    .pagination .next {
        padding: 0 12px;
    }

    .article-header h1 {
        font-size: 1.375rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .not-found-code {
        font-size: 4rem;
        letter-spacing: -2px;
        padding: 16px 24px;
    }
}

.share-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 32px 0;
    padding: 24px;
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}
.share-label {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-right: 4px;
}
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    transition: opacity .15s;
}
.share-btn:hover { opacity: .85; }
.share-btn.twitter  { background: #000; }
.share-btn.facebook { background: #1877f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.telegram { background: #2aabee; }
.share-btn.copy     { background: var(--color-text-muted); }

/* (TOC stilleri yukarıda tanımlı — tekrar ezilmesin) */

.comments-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}
.comment {
    padding: 16px;
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    margin-bottom: 12px;
}
.comment-reply { margin-left: 32px; }
.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.comment-date {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}
.comment-body { font-size: 0.9375rem; line-height: 1.6; }
.comment-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    font-size: 0.8125rem;
}
.comment-likes, .comment-reply-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 0.8125rem;
}
.comment-reply-btn:hover { color: var(--color-primary); }
.comment-replies { margin-top: 12px; }
.comment-form-section { margin-top: 32px; }
.comment-form-section h3 { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 0.875rem; font-weight: 500; }
.form-control {
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    background: var(--color-bg);
    color: var(--color-text);
    width: 100%;
    box-sizing: border-box;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }

.pagination-nav { margin-top: 32px; }
.pagination-nav .pagination {
    list-style: none;
    padding: 0;
}
.pagination-nav .pagination li a,
.pagination-nav .pagination li.active span,
.pagination-nav .pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    font-size: 0.875rem;
    color: var(--color-text);
    background: var(--color-bg);
}
.pagination-nav .pagination li.active a,
.pagination-nav .pagination li.active span {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}
.pagination-nav .pagination li a:hover { background: var(--color-surface); }

.sidebar-social .social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: opacity .15s;
}
.social-btn:hover { opacity: .85; }
.social-btn.facebook  { background: #1877f2; }
.social-btn.twitter   { background: #000; }
.social-btn.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-btn.youtube   { background: #ff0000; }
.social-btn.telegram  { background: #2aabee; }

.widget { margin-bottom: 32px; }
.widget-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
}
.recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}
.recent-post img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.recent-post-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 4px; }
.recent-post-title a { color: var(--color-text); text-decoration: none; }
.recent-post-title a:hover { color: var(--color-primary); }
.recent-post-date { font-size: 0.75rem; color: var(--color-text-muted); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: var(--color-text);
    text-decoration: none;
    transition: all .15s;
}
.tag:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.article-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 24px 0; }
.article-tags strong { font-size: 0.875rem; color: var(--color-text-muted); }

.related-posts { margin-top: 48px; }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}
.breadcrumb li + li::before { content: '/'; margin-right: 8px; }
.breadcrumb a { color: var(--color-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-primary); }

.text-muted { color: var(--color-text-muted); }
.small { font-size: 0.8125rem; }
.btn-sm { padding: 6px 12px; font-size: 0.8125rem; }

.popular-post {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.popular-post-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.popular-post-body { flex: 1; }
.popular-post-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 4px; }
.popular-post-title a { color: var(--color-text); text-decoration: none; }
.popular-post-title a:hover { color: var(--color-primary); }
.popular-post-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.reply-form { background: var(--color-surface); padding: 16px; border-radius: var(--radius); border: 1px solid var(--color-border); }

.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;
}

/* ══════════════════════════════════════════════════════════════
   MEGA PANEL — Portal, position:fixed, JS top atar
══════════════════════════════════════════════════════════════ */
.mega-panel {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid var(--color-primary, #3b82f6);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 1px 0 rgba(0,0,0,.06);
    z-index: 1000;
}
.mega-panel.mega-open {
    display: block;
    animation: mpIn .18s cubic-bezier(.16,1,.3,1);
}
@keyframes mpIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mega-panel-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 40px 32px;
}

/* ── Üst başlık çubuğu ── */
.mega-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}
.mega-cat-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-primary, #3b82f6);
    text-transform: uppercase;
    letter-spacing: .1em;
}
.mega-cat-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-primary, #3b82f6);
    text-decoration: none;
    padding: 6px 14px;
    border: 1.5px solid var(--color-primary, #3b82f6);
    border-radius: 20px;
    transition: background .15s, color .15s;
}
.mega-cat-all:hover {
    background: var(--color-primary, #3b82f6);
    color: #fff;
}
.mega-cat-all svg { transition: transform .15s; }
.mega-cat-all:hover svg { transform: translateX(3px); }

/* ── Kart grid ── */
.mega-panel-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.mega-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef2f8;
    background: #fff;
    transition: box-shadow .22s, transform .22s;
    will-change: transform;
}
.mega-card:hover {
    box-shadow: 0 12px 36px rgba(59,130,246,.2);
    transform: translateY(-4px);
    border-color: rgba(59,130,246,.25);
}
.mega-card-img {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #e8eef8;
    position: relative;
}
.mega-card-img img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .35s ease;
}
.mega-card:hover .mega-card-img img { transform: scale(1.08); }
.mega-card-body {
    padding: 10px 12px 13px;
}
.mega-card-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
}
.mega-card:hover .mega-card-title { color: var(--color-primary, #3b82f6); }

.mega-empty {
    color: #94a3b8;
    font-size: 0.875rem;
    padding: 12px 0;
    grid-column: 1 / -1;
}

/* ── Dim overlay ── */
.mega-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15,23,42,.18);
}
.mega-overlay.active { display: block; }

/* Eski sınıflar — artık kullanılmıyor */
.nav-link-plain, .nav-mega-wrap, .nav-mega-trigger, .nav-mega-panel,
.nmp-overlay, .nmp-cat-header, .nmp-cat-label, .nmp-cat-all,
.nmp-posts-row, .nmp-card, .nmp-card-img, .nmp-card-title, .nmp-empty,
.nmp-cats, .nmp-posts-wrap, .nmp-posts-panel, .nmp-posts-grid,
.nmp-post-card, .nmp-post-img, .nmp-post-title, .nmp-see-all,
.nmp-inner { /* kullanılmıyor */ }

/* ── Mobil Drawer ─────────────────────────────────────────────────── */
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 900;
    backdrop-filter: blur(2px);
}
.mobile-drawer-overlay.open { display: block; }
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: left .28s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,.15);
}
.mobile-drawer.open { left: 0; }
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
    flex-shrink: 0;
}
.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--color-text);
    border-radius: 6px;
    transition: background .15s;
}
.drawer-close:hover { background: var(--color-border); }
.mobile-drawer-search {
    padding: 12px 20px;
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}
.mobile-drawer-search input {
    width: 100%;
    padding: 9px 14px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.9rem;
    background: var(--color-surface);
    outline: none;
    box-sizing: border-box;
}
.mobile-drawer-search input:focus { border-color: var(--color-primary); }
.mobile-drawer-nav {
    list-style: none;
    padding: 8px 0 24px;
    flex: 1;
    margin: 0;
}
.mobile-drawer-nav li a {
    display: block;
    padding: 12px 20px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background .12s, color .12s;
}
.mobile-drawer-nav li a:hover,
.mobile-drawer-nav li a.active {
    background: rgba(59,130,246,.06);
    color: var(--color-primary);
}
.drawer-divider {
    height: 1px;
    background: var(--color-border);
    margin: 8px 20px;
    pointer-events: none;
    list-style: none;
}

/* Drawer mega accordion */
.drawer-mega-item { list-style: none; }
.drawer-cat-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: background .12s, color .12s;
}
.drawer-cat-toggle:hover { background: rgba(59,130,246,.06); color: var(--color-primary); }
.drawer-cat-toggle[aria-expanded="true"] { color: var(--color-primary); }
.drawer-cat-toggle[aria-expanded="true"] .chevron-icon { transform: rotate(180deg); }
.drawer-cat-toggle .chevron-icon { transition: transform .2s ease; }
.drawer-cat-list {
    display: none;
    list-style: none;
    padding: 0 0 4px;
    margin: 0;
    background: #f8f9fc;
}
.drawer-cat-list.open { display: block; }
.drawer-cat-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px 9px 28px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
}
.drawer-cat-list li a:hover,
.drawer-cat-list li a.active { color: var(--color-primary); background: rgba(59,130,246,.06); }
.dcat-bullet {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary, #3b82f6);
    flex-shrink: 0;
}

.footer-ad-bar {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 16px 0;
}
.footer-col {
    min-width: 0;
}
.footer-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 8px 0 12px;
}
.footer-contact-email {
    font-size: 0.875rem;
    margin-bottom: 12px;
}
.footer-contact-email a {
    color: var(--color-primary);
}
.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
}
.footer-copy {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}
.footer-copy a {
    color: var(--color-text-secondary);
    text-decoration: none;
}
.footer-copy a:hover { color: var(--color-primary); }

.sc-telegram { background: #229ed9; }
.sc-linkedin  { background: #0a66c2; }

.site-footer .footer-links li a,
.site-footer .footer-bottom-links a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color .15s;
}
.site-footer .footer-links li a:hover,
.site-footer .footer-bottom-links a:hover {
    color: var(--color-primary);
}
.site-footer .footer-widget-title {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
}

.reading-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .ad-unit,
    .article-share,
    .comments-section,
    .related-posts,
    .cookie-banner {
        display: none !important;
    }

    .page-body {
        grid-template-columns: 1fr;
    }

    .article-body {
        font-size: 11pt;
        line-height: 1.6;
    }
}

/* ── Emoji Tepki Sistemi ─────────────────────────────────────────── */
.post-reactions {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 20px 24px;
    margin: 32px 0;
    text-align: center;
}
.reactions-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 14px;
    letter-spacing: .01em;
}
.reactions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.reaction-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 40px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all .2s cubic-bezier(.34,1.56,.64,1);
    font-size: 0.875rem;
    line-height: 1;
    min-width: 52px;
}
.reaction-btn:hover {
    border-color: var(--color-primary, #3b82f6);
    background: #f0f7ff;
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 6px 20px rgba(59,130,246,.2);
}
.reaction-btn.active {
    border-color: var(--color-primary, #3b82f6);
    background: var(--color-primary, #3b82f6);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(59,130,246,.35);
}
.reaction-btn.reaction-loading {
    opacity: .6;
    pointer-events: none;
}
.reaction-emoji {
    font-size: 1.5rem;
    line-height: 1;
    display: block;
}
.reaction-count {
    font-size: 0.7rem;
    font-weight: 700;
    min-height: 1em;
    color: inherit;
}
.reaction-btn.active .reaction-count { color: rgba(255,255,255,.9); }
@keyframes reactionPop {
    0%   { transform: scale(1.1); }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1.1); }
}
.reaction-btn.reaction-pop { animation: reactionPop .4s ease; }
.reactions-total {
    margin-top: 10px;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Yorum beğeni */
.comment-like-btn {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    transition: all .18s ease;
}
.comment-like-btn:hover { border-color: var(--color-primary,#3b82f6); color: var(--color-primary,#3b82f6); }
.comment-like-btn.liked { border-color: var(--color-primary,#3b82f6); color: var(--color-primary,#3b82f6); background:#f0f7ff; }

/* Toast bildirimi */
.like-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(30,30,30,.92);
    color: #fff;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.875rem;
    z-index: 9999;
    opacity: 0;
    transition: all .25s ease;
    white-space: nowrap;
    pointer-events: none;
}
.like-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Hızlı Özet — okuyucu UX (AI markası yok) */
.quick-summary {
    margin: 0 0 1.75rem;
    padding: 1.25rem 1.35rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #f0f7f4 0%, #e8f1ff 100%);
    border: 1px solid rgba(20, 90, 70, 0.12);
    box-shadow: 0 8px 28px rgba(15, 40, 30, 0.06);
}
.quick-summary-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}
.quick-summary-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #1a6b4a;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.quick-summary-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #12352a;
}
.quick-summary-sub {
    margin: 0.15rem 0 0;
    font-size: 0.8125rem;
    color: #5a6b63;
}
.quick-summary-body {
    font-size: 0.975rem;
    line-height: 1.65;
    color: #1c2a24;
}
.quick-summary-body p { margin: 0 0 0.75rem; }
.quick-summary-body ul {
    margin: 0;
    padding-left: 1.15rem;
}
.quick-summary-body li { margin: 0.35rem 0; }
.quick-summary-body li::marker { color: #1a6b4a; }

@media (max-width: 768px) {
    .quick-summary { padding: 1rem 1.05rem; border-radius: 14px; }
    .quick-summary-title { font-size: 1.05rem; }
    /* Mobil performans: below-fold kartlar */
    .post-card, .category-section, .sidebar-widget {
        content-visibility: auto;
        contain-intrinsic-size: 1px 280px;
    }
    .hero-slider-section { content-visibility: visible; }
}
