/* ===========================================================
   FC Finance Theme — Lacivert + Altın paleti
   =========================================================== */

:root {
    /* Renk paleti */
    --fc-primary: #0A2540;
    --fc-primary-dark: #061829;
    --fc-primary-light: #1A3B5C;
    --fc-gold: #C9A961;
    --fc-gold-light: #E0C58A;
    --fc-gold-dark: #A88A45;
    --fc-bg: #FFFFFF;
    --fc-bg-soft: #F8F9FB;
    --fc-bg-cream: #FAF7F2;
    --fc-text: #1A2332;
    --fc-text-soft: #4A5568;
    --fc-text-muted: #718096;
    --fc-border: #E2E8F0;
    --fc-border-light: #EDF2F7;
    --fc-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
    --fc-shadow-lg: 0 10px 30px rgba(10, 37, 64, 0.1);
    --fc-shadow-gold: 0 8px 24px rgba(201, 169, 97, 0.15);

    /* Tipografi */
    --fc-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --fc-font-serif: 'Lora', Georgia, serif;

    /* Geometri */
    --fc-radius-sm: 6px;
    --fc-radius: 12px;
    --fc-radius-lg: 20px;
    --fc-container: 1200px;
}

/* ===========================================================
   Base — Genel tipografi ve okunabilirlik
   =========================================================== */

body {
    font-family: var(--fc-font-sans);
    color: var(--fc-text);
    background: var(--fc-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.entry-content h1, .entry-content h2, .entry-content h3,
.entry-title, h1, h2, h3 {
    font-family: var(--fc-font-sans);
    font-weight: 700;
    color: var(--fc-primary);
    letter-spacing: -0.01em;
}

.entry-content { font-size: 17px; line-height: 1.75; color: var(--fc-text); }
.entry-content p { margin-bottom: 1.2em; }
.entry-content a { color: var(--fc-primary); text-decoration: underline; text-decoration-color: var(--fc-gold); text-underline-offset: 3px; }
.entry-content a:hover { color: var(--fc-gold-dark); }

.entry-content h2 {
    font-size: 1.6em;
    margin-top: 2em;
    margin-bottom: 0.6em;
    padding-top: 0.4em;
    border-top: 3px solid var(--fc-gold);
    padding-bottom: 0.2em;
    display: inline-block;
    padding-right: 30px;
}

.entry-content h3 {
    font-size: 1.25em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--fc-primary);
}

.entry-content blockquote {
    border-left: 4px solid var(--fc-gold);
    background: var(--fc-bg-cream);
    padding: 18px 24px;
    border-radius: var(--fc-radius-sm);
    font-style: italic;
}

.entry-content ul li, .entry-content ol li {
    margin-bottom: 0.5em;
}

/* Buton — global */
.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: var(--fc-radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: -0.005em;
}

.fc-btn-primary {
    background: var(--fc-primary);
    color: white !important;
    border-color: var(--fc-primary);
}

.fc-btn-primary:hover {
    background: var(--fc-gold);
    border-color: var(--fc-gold);
    color: var(--fc-primary) !important;
    transform: translateY(-1px);
    box-shadow: var(--fc-shadow-gold);
}

.fc-btn-outline {
    background: transparent;
    color: var(--fc-primary) !important;
    border-color: var(--fc-primary);
}

.fc-btn-outline:hover {
    background: var(--fc-primary);
    color: white !important;
}

.fc-gold { color: var(--fc-gold); }

/* ===========================================================
   Header — GeneratePress üstüne minimal iyileştirme
   =========================================================== */

.site-header {
    border-bottom: 1px solid var(--fc-border);
}

.main-navigation {
    background: var(--fc-bg);
}

.main-navigation .menu > .menu-item > a {
    color: var(--fc-primary);
    font-weight: 500;
    transition: color 0.2s;
}

.main-navigation .menu > .menu-item > a:hover,
.main-navigation .menu > .current-menu-item > a {
    color: var(--fc-gold-dark);
}

/* Site Title (if no logo) */
.site-title a, .main-title a {
    color: var(--fc-primary) !important;
    font-weight: 800 !important;
    font-family: var(--fc-font-sans);
}

/* ===========================================================
   Homepage — Container ve genel section yapısı
   =========================================================== */

.fc-homepage {
    background: var(--fc-bg);
}

.fc-section-inner {
    max-width: var(--fc-container);
    margin: 0 auto;
    padding: 0 24px;
}

.fc-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.fc-section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--fc-gold-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.fc-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--fc-primary);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ===========================================================
   Hero
   =========================================================== */

.fc-hero {
    background: linear-gradient(135deg, var(--fc-primary) 0%, var(--fc-primary-light) 100%);
    color: white;
    padding: 100px 24px 110px;
    position: relative;
    overflow: hidden;
}

.fc-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fc-gold), transparent);
}

.fc-hero::after {
    content: '';
    position: absolute;
    right: -200px;
    top: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.fc-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.fc-hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.15);
    color: var(--fc-gold-light);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.fc-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
    color: white;
    letter-spacing: -0.03em;
}

.fc-hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fc-hero-subtitle strong {
    color: var(--fc-gold-light);
    font-weight: 600;
}

.fc-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.fc-hero .fc-btn-primary {
    background: var(--fc-gold);
    color: var(--fc-primary) !important;
    border-color: var(--fc-gold);
}

.fc-hero .fc-btn-primary:hover {
    background: var(--fc-gold-light);
    border-color: var(--fc-gold-light);
}

.fc-hero .fc-btn-outline {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.4);
}

.fc-hero .fc-btn-outline:hover {
    background: white;
    color: var(--fc-primary) !important;
    border-color: white;
}

.fc-hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.fc-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===========================================================
   Kategori Kartları
   =========================================================== */

.fc-categories {
    padding: 80px 0;
    background: var(--fc-bg-soft);
}

.fc-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.fc-category-card {
    background: var(--fc-bg);
    border-radius: var(--fc-radius);
    padding: 32px 24px;
    text-decoration: none !important;
    color: var(--fc-text);
    border: 1px solid var(--fc-border);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--fc-shadow);
}

.fc-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fc-shadow-lg);
    border-color: var(--fc-gold);
}

.fc-category-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.fc-category-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-primary);
    margin: 0 0 8px;
}

.fc-category-desc {
    color: var(--fc-text-soft);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 20px;
    flex-grow: 1;
}

.fc-category-count {
    color: var(--fc-gold-dark);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.03em;
}

/* ===========================================================
   Öne çıkan yazılar (Post Grid)
   =========================================================== */

.fc-featured {
    padding: 80px 0;
    background: var(--fc-bg);
}

.fc-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.fc-post-card {
    background: var(--fc-bg);
    border-radius: var(--fc-radius);
    overflow: hidden;
    border: 1px solid var(--fc-border);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.fc-post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--fc-shadow-lg);
    border-color: var(--fc-gold-light);
}

.fc-post-image-link { display: block; }

.fc-post-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--fc-bg-soft);
}

.fc-post-image-placeholder {
    background: linear-gradient(135deg, var(--fc-primary) 0%, var(--fc-primary-light) 100%);
    position: relative;
}

.fc-post-image-placeholder::after {
    content: '📊';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    opacity: 0.5;
}

.fc-post-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fc-post-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--fc-gold-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
    text-decoration: none;
}

.fc-post-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px;
    flex-grow: 1;
}

.fc-post-title a {
    color: var(--fc-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.fc-post-title a:hover {
    color: var(--fc-gold-dark);
}

.fc-post-meta {
    font-size: 13px;
    color: var(--fc-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-post-divider { opacity: 0.5; }

/* ===========================================================
   Yazar Showcase
   =========================================================== */

.fc-author-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--fc-bg-soft) 0%, var(--fc-bg-cream) 100%);
}

.fc-author-showcase-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--fc-bg);
    padding: 48px;
    border-radius: var(--fc-radius-lg);
    border: 1px solid var(--fc-border);
    box-shadow: var(--fc-shadow);
}

.fc-author-showcase-image img {
    border-radius: 50%;
    border: 4px solid var(--fc-gold);
    box-shadow: var(--fc-shadow-gold);
    width: 160px;
    height: 160px;
    object-fit: cover;
}

.fc-author-showcase-name {
    font-size: 32px;
    font-weight: 800;
    color: var(--fc-primary);
    margin: 8px 0 4px;
    letter-spacing: -0.02em;
}

.fc-author-showcase-title {
    color: var(--fc-gold-dark);
    font-weight: 600;
    margin: 0 0 16px;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.fc-author-showcase-bio {
    color: var(--fc-text-soft);
    line-height: 1.65;
    margin: 0 0 24px;
}

/* ===========================================================
   Trust Bar
   =========================================================== */

.fc-trust-bar {
    padding: 60px 0 100px;
    background: var(--fc-bg);
}

.fc-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.fc-trust-card {
    text-align: center;
    padding: 24px;
}

.fc-trust-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.fc-trust-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--fc-primary);
    margin: 0 0 8px;
}

.fc-trust-card-text {
    color: var(--fc-text-soft);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ===========================================================
   Single Yazı — Author Box (yazı sonu)
   =========================================================== */

.fc-author-box {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 24px;
    background: linear-gradient(135deg, var(--fc-bg-soft) 0%, var(--fc-bg-cream) 100%);
    padding: 28px;
    border-radius: var(--fc-radius);
    border-left: 4px solid var(--fc-gold);
    margin: 40px 0;
    align-items: start;
}

.fc-author-avatar img {
    border-radius: 50%;
    border: 3px solid var(--fc-gold);
    width: 96px;
    height: 96px;
    object-fit: cover;
}

.fc-author-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fc-gold-dark);
}

.fc-author-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--fc-primary);
    margin: 4px 0 10px;
}

.fc-author-bio {
    color: var(--fc-text-soft);
    line-height: 1.6;
    font-size: 15px;
    margin: 0 0 14px;
}

.fc-author-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.fc-author-link {
    color: var(--fc-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.fc-author-link:hover {
    color: var(--fc-gold-dark);
}

/* ===========================================================
   Related Posts (yazı sonu)
   =========================================================== */

.fc-related-posts {
    margin: 48px 0;
    padding-top: 32px;
    border-top: 1px solid var(--fc-border);
}

.fc-related-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--fc-primary);
    margin: 0 0 28px;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
}

.fc-related-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--fc-gold);
}

.fc-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.fc-related-card {
    border-radius: var(--fc-radius);
    overflow: hidden;
    border: 1px solid var(--fc-border);
    background: var(--fc-bg);
    transition: all 0.2s;
}

.fc-related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--fc-shadow-lg);
    border-color: var(--fc-gold-light);
}

.fc-related-link {
    display: block;
    text-decoration: none !important;
    color: var(--fc-text);
}

.fc-related-image {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: var(--fc-bg-soft);
}

.fc-related-image-placeholder {
    background: linear-gradient(135deg, var(--fc-primary) 0%, var(--fc-primary-light) 100%);
}

.fc-related-content {
    padding: 16px 18px;
}

.fc-related-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fc-gold-dark);
    margin-bottom: 8px;
}

.fc-related-heading {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--fc-primary);
    margin: 0;
}

/* ===========================================================
   Footer enhancements (parent footer korunur, sadece görsel)
   =========================================================== */

.site-footer {
    background: var(--fc-primary) !important;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a {
    color: var(--fc-gold-light);
}

.site-footer a:hover {
    color: var(--fc-gold);
}

/* ===========================================================
   RESPONSIVE — Mobil
   =========================================================== */

@media (max-width: 768px) {
    .fc-hero { padding: 70px 20px 80px; }
    .fc-hero-title { font-size: 36px; }
    .fc-hero-subtitle { font-size: 17px; }
    .fc-hero-trust { gap: 16px; font-size: 13px; }

    .fc-section-title { font-size: 28px; }
    .fc-section-inner { padding: 0 16px; }

    .fc-categories, .fc-featured, .fc-author-showcase, .fc-trust-bar {
        padding: 60px 0;
    }

    .fc-author-showcase-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
    }

    .fc-author-showcase-image {
        justify-self: center;
    }

    .fc-author-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }

    .fc-author-avatar {
        justify-self: center;
    }

    .fc-author-meta { justify-content: center; }

    .entry-content { font-size: 16px; }
    .entry-content h2 { font-size: 1.4em; padding-right: 0; }

    .fc-hero-actions { flex-direction: column; }
    .fc-hero-actions .fc-btn { width: 100%; }
}

@media (max-width: 480px) {
    .fc-hero-title { font-size: 30px; }
    .fc-category-card, .fc-post-card { padding: 20px; }
}

/* ===========================================================
   ARTICLE TEMPLATE — v1.1 (AdSense Auto Ads uyumlu)
   =========================================================== */

/* Reading progress bar */
.fc-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 99999;
    pointer-events: none;
}

.fc-reading-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--fc-gold), var(--fc-gold-light));
    transition: width 0.05s linear;
    box-shadow: 0 0 6px rgba(201, 169, 97, 0.5);
}

/* Breadcrumb */
.fc-breadcrumb {
    max-width: 920px;
    margin: 20px auto 0;
    padding: 0 20px;
    font-size: 13px;
}

.fc-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: var(--fc-text-muted);
    line-height: 1.4;
}

.fc-breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.fc-breadcrumb-list a {
    color: var(--fc-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.fc-breadcrumb-list a:hover {
    color: var(--fc-gold-dark);
}

.fc-breadcrumb-sep {
    margin: 0 8px;
    color: var(--fc-border);
}

.fc-breadcrumb-current {
    color: var(--fc-primary);
    font-weight: 600;
    max-width: 320px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

/* Article meta (yazar + tarihler + okuma süresi) */
.fc-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0 24px;
    margin: 0 0 28px;
    border-bottom: 1px solid var(--fc-border);
}

.fc-article-meta-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-article-meta-author img {
    border-radius: 50%;
    border: 2px solid var(--fc-gold);
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.fc-article-meta-author-info {
    display: flex;
    flex-direction: column;
}

.fc-article-meta-author-name {
    font-weight: 700;
    color: var(--fc-primary);
    font-size: 15px;
    line-height: 1.2;
}

.fc-article-meta-author-title {
    font-size: 12px;
    color: var(--fc-text-muted);
    margin-top: 2px;
}

.fc-article-meta-details {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.fc-article-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fc-article-meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--fc-text-muted);
    font-weight: 600;
}

.fc-article-meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text);
}

.fc-article-meta-updated .fc-article-meta-value {
    color: var(--fc-gold-dark);
}

.fc-article-meta-updated .fc-article-meta-value::before {
    content: '↻ ';
    font-size: 13px;
}

/* GeneratePress default entry-meta'sını gizle (çakışma önleme) */
.single-post .entry-meta {
    display: none;
}

/* Sticky Social Share — Desktop yan tarafta */
.fc-social-share {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 100;
    background: var(--fc-bg);
    padding: 12px 8px;
    border-radius: var(--fc-radius);
    border: 1px solid var(--fc-border);
    box-shadow: var(--fc-shadow);
}

.fc-social-share-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--fc-text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.fc-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--fc-primary);
    background: var(--fc-bg-soft);
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.fc-share-btn:hover {
    background: var(--fc-primary);
    color: var(--fc-gold) !important;
    transform: scale(1.1);
}

.fc-share-twitter:hover { background: #000; color: white !important; }
.fc-share-facebook:hover { background: #1877F2; color: white !important; }
.fc-share-whatsapp:hover { background: #25D366; color: white !important; }
.fc-share-linkedin:hover { background: #0A66C2; color: white !important; }

/* End CTA */
.fc-end-cta {
    margin: 40px 0 24px;
    padding: 28px;
    background: linear-gradient(135deg, var(--fc-primary) 0%, var(--fc-primary-light) 100%);
    border-radius: var(--fc-radius);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fc-end-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fc-gold), transparent);
}

.fc-end-cta-title {
    color: white !important;
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
}

.fc-end-cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.55;
}

.fc-end-cta-text a {
    color: var(--fc-gold-light);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--fc-gold);
}

.fc-end-cta-text a:hover {
    color: white;
}

.fc-end-cta-disclaimer {
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

/* ===========================================================
   Article responsive
   =========================================================== */

@media (max-width: 1280px) {
    /* Sticky share buttons gizle dar ekranlarda */
    .fc-social-share {
        display: none;
    }
}

@media (max-width: 768px) {
    .fc-breadcrumb {
        margin-top: 12px;
        font-size: 12px;
    }
    
    .fc-breadcrumb-current {
        max-width: 200px;
    }

    .fc-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .fc-article-meta-details {
        gap: 16px;
        width: 100%;
    }

    .fc-end-cta {
        padding: 24px 20px;
    }

    .fc-end-cta-title {
        font-size: 20px;
    }
}

/* Mobil sticky share — alt sabit bar */
@media (max-width: 768px) {
    .fc-social-share {
        display: flex;
        flex-direction: row;
        position: fixed;
        bottom: 16px;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
        background: var(--fc-primary);
        border: 1px solid var(--fc-gold);
        padding: 8px 12px;
        border-radius: 100px;
        box-shadow: 0 8px 24px rgba(10, 37, 64, 0.3);
        gap: 6px;
    }

    .fc-social-share-label {
        color: var(--fc-gold-light);
        margin: 0 8px 0 0;
        line-height: 1;
        display: flex;
        align-items: center;
    }

    .fc-share-btn {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .fc-share-btn:hover {
        transform: none;
    }
}

/* ===========================================================
   FOOTER v1.2 — 4 sütunlu
   =========================================================== */

.fc-footer {
    background: var(--fc-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
    position: relative;
    margin-top: 60px;
}

.fc-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--fc-gold), transparent);
}

.fc-footer-inner {
    max-width: var(--fc-container);
    margin: 0 auto;
    padding: 0 24px;
}

.fc-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.fc-footer-col {
    display: flex;
    flex-direction: column;
}

.fc-footer-title {
    color: var(--fc-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 12px;
}

.fc-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--fc-gold);
}

.fc-footer-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 14px;
}

.fc-footer-disclaimer {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.5;
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fc-footer-fineprint {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    margin: 12px 0 0;
}

.fc-footer-fineprint a,
.fc-footer-disclaimer a {
    color: var(--fc-gold-light);
    text-decoration: underline;
    text-decoration-color: rgba(201, 169, 97, 0.4);
}

/* Kurumsal menü */
.fc-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fc-footer-menu li {
    margin: 0 0 10px;
}

.fc-footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fc-footer-menu a::before {
    content: '›';
    color: var(--fc-gold);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.fc-footer-menu a:hover {
    color: var(--fc-gold-light);
    transform: translateX(2px);
}

/* Bülten formu */
.fc-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0 0;
}

.fc-newsletter-input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--fc-radius-sm);
    color: white;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.fc-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.fc-newsletter-input:focus {
    outline: none;
    border-color: var(--fc-gold);
    background: rgba(255, 255, 255, 0.08);
}

.fc-newsletter-btn {
    padding: 12px 18px;
    background: var(--fc-gold);
    color: var(--fc-primary);
    border: none;
    border-radius: var(--fc-radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.fc-newsletter-btn:hover {
    background: var(--fc-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* Sosyal medya ikonları */
.fc-social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.fc-social-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--fc-radius-sm);
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.fc-social-icon svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.fc-social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
}

.fc-social-icon:hover svg {
    transform: scale(1.1);
}

.fc-social-fb:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white !important;
}

.fc-social-x:hover {
    background: #000;
    border-color: #fff;
    color: white !important;
}

/* Footer alt bar */
.fc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.fc-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fc-footer-bottom-links a:hover {
    color: var(--fc-gold);
}

.fc-sep {
    color: rgba(255, 255, 255, 0.25);
}

/* GeneratePress default footer credits gizle */
.site-info {
    display: none !important;
}

/* Footer responsive */
@media (max-width: 992px) {
    .fc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .fc-footer {
        padding: 48px 0 0;
        margin-top: 40px;
    }
    
    .fc-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }

    .fc-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================================================
   STICKY HEADER + TICKER TAPE — v1.3
   =========================================================== */

/* Ticker tape bar (üst sabit şerit) */
.fc-ticker-bar {
    background: var(--fc-primary-dark);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    position: sticky;
    top: 0;
    z-index: 9998;
    width: 100%;
    overflow: hidden;
}

.fc-ticker-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fc-gold), transparent);
    pointer-events: none;
}

.fc-ticker-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.tradingview-widget-container {
    width: 100% !important;
    height: 40px;
}

.tradingview-widget-container iframe {
    width: 100% !important;
    height: 40px !important;
}

/* TradingView copyright gizle (CSS ile, telif uyarı küçük altta olur) */
.tradingview-widget-copyright {
    display: none !important;
}

/* Sticky Header — Site Header'ı sticky yap */
.site-header {
    position: sticky !important;
    top: 40px !important; /* ticker bar yüksekliği */
    z-index: 999;
    background: var(--fc-bg);
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
    transition: box-shadow 0.3s ease;
}

/* Inside section (navigation/menu container) */
.inside-header {
    transition: padding 0.3s ease;
}

/* GeneratePress'in default navigation'i */
.main-navigation {
    position: sticky;
    top: calc(40px + var(--fc-header-height, 60px));
    z-index: 998;
    background: var(--fc-bg);
    box-shadow: 0 1px 4px rgba(10, 37, 64, 0.04);
}

/* Reading progress bar'ı ticker'ın altına al */
.fc-reading-progress {
    top: 40px;
}

/* Adminbar aktifse */
body.admin-bar .fc-ticker-bar {
    top: 32px;
}

body.admin-bar .site-header {
    top: 72px !important;
}

body.admin-bar .fc-reading-progress {
    top: 72px;
}

/* Mobile uyum */
@media (max-width: 782px) {
    body.admin-bar .fc-ticker-bar {
        top: 46px;
    }

    body.admin-bar .site-header {
        top: 86px !important;
    }

    body.admin-bar .fc-reading-progress {
        top: 86px;
    }
}

/* Ticker bar mobilde daha kompakt */
@media (max-width: 600px) {
    .tradingview-widget-container,
    .tradingview-widget-container iframe {
        height: 36px !important;
    }

    .fc-ticker-bar {
        font-size: 12px;
    }

    .site-header {
        top: 36px !important;
    }

    .fc-reading-progress {
        top: 36px;
    }

    body.admin-bar .site-header {
        top: 82px !important;
    }
}

/* ===========================================================
   v1.4 OVERRIDES — Ticker non-sticky + Header tek satır
   =========================================================== */

/* Ticker bar artık STİCKY DEĞİL — scroll'da yukarı kayar */
.fc-ticker-bar {
    position: relative !important;
    top: auto !important;
    z-index: auto;
}

/* Site header'ı en üste yapıştır (ticker scroll'la gidince) */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 999;
    background: var(--fc-bg) !important;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06) !important;
}

/* Reading progress en üste */
.fc-reading-progress {
    top: 0 !important;
}

/* Admin bar overrides */
body.admin-bar .site-header {
    top: 32px !important;
}

body.admin-bar .fc-reading-progress {
    top: 32px !important;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px !important;
    }
    body.admin-bar .fc-reading-progress {
        top: 46px !important;
    }
}

/* ===========================================================
   HEADER COMPACT — Tek satır layout (17ajans tarzı)
   =========================================================== */

/* Header'ı tek satıra sığdır - daha kompakt */
.site-header {
    padding: 8px 0 !important;
}

.inside-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    padding: 0 20px !important;
    max-width: var(--fc-container) !important;
    margin: 0 auto !important;
}

/* Logo alanı sol */
.site-branding,
.site-logo,
.header-image {
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.site-logo img,
.header-image img,
.site-branding img {
    max-height: 48px !important;
    width: auto !important;
    display: block !important;
}

/* Site title (logo yoksa) */
.site-title, .main-title {
    margin: 0 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
}

/* Sağdaki header widget alanlarını GİZLE (kategoriler, sosyal medya widget vs.) */
.header-widget,
.header-widget-1,
.header-widget-2,
#header-widget,
.inside-header > .widget,
.inside-header > .widget-area,
.site-header .widget-area,
.inside-header > aside {
    display: none !important;
}

/* Ana navigasyonu header'ın içine al (sticky group) */
.main-navigation {
    background: var(--fc-bg) !important;
    border-top: 1px solid var(--fc-border-light) !important;
    box-shadow: none !important;
    position: sticky !important;
    top: 64px !important; /* logo header yüksekliği */
    z-index: 998;
}

body.admin-bar .main-navigation {
    top: 96px !important;
}

@media (max-width: 782px) {
    body.admin-bar .main-navigation {
        top: 110px !important;
    }
}

/* Navigasyon menü öğeleri daha kompakt */
.main-navigation .menu > .menu-item > a {
    padding: 14px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

/* Header içine arama veya CTA buton kullanılırsa */
.inside-header .header-cta {
    flex-shrink: 0;
}

/* Mobilde header (hamburger için) */
@media (max-width: 768px) {
    .site-header {
        padding: 6px 0 !important;
    }

    .inside-header {
        padding: 0 16px !important;
        gap: 12px !important;
    }

    .site-logo img,
    .header-image img,
    .site-branding img {
        max-height: 40px !important;
    }

    .main-navigation {
        top: 52px !important;
    }

    body.admin-bar .main-navigation {
        top: 98px !important;
    }
}

/* ===========================================================
   v1.5 — Logo büyütme + Mobil ticker düzeltmesi
   =========================================================== */

/* Logo: hem masaüstü hem mobilde daha büyük, daha geniş alan */
.site-logo img,
.header-image img,
.site-branding img,
.site-logo a img,
.header-image a img {
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
}

.site-branding,
.site-logo {
    max-width: 360px !important;
    flex-shrink: 0 !important;
}

/* Header padding biraz daha (logo büyüdü) */
.site-header {
    padding: 12px 0 !important;
}

/* Mobil logo */
@media (max-width: 768px) {
    .site-logo img,
    .header-image img,
    .site-branding img,
    .site-logo a img,
    .header-image a img {
        max-height: 50px !important;
    }
    .site-branding,
    .site-logo {
        max-width: 240px !important;
    }
    .site-header {
        padding: 8px 0 !important;
    }
}

/* Küçük mobil ekran */
@media (max-width: 480px) {
    .site-logo img,
    .header-image img,
    .site-branding img,
    .site-logo a img,
    .header-image a img {
        max-height: 44px !important;
    }
    .site-branding,
    .site-logo {
        max-width: 200px !important;
    }
}

/* ===========================================================
   TICKER MOBIL DÜZELTMESİ — Yükseklik arttır, içerik görünsün
   =========================================================== */

/* Ticker container - hem desktop hem mobil */
.fc-ticker-bar {
    overflow: visible !important;
    min-height: 44px !important;
}

.fc-ticker-inner {
    min-height: 44px !important;
}

.tradingview-widget-container {
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
    overflow: visible !important;
}

.tradingview-widget-container__widget {
    height: 44px !important;
    min-height: 44px !important;
}

.tradingview-widget-container iframe {
    width: 100% !important;
    height: 44px !important;
    min-height: 44px !important;
}

/* Mobil — daha geniş yükseklik */
@media (max-width: 768px) {
    .fc-ticker-bar,
    .fc-ticker-inner,
    .tradingview-widget-container,
    .tradingview-widget-container__widget,
    .tradingview-widget-container iframe {
        height: 48px !important;
        min-height: 48px !important;
    }
}

@media (max-width: 480px) {
    .fc-ticker-bar,
    .fc-ticker-inner,
    .tradingview-widget-container,
    .tradingview-widget-container__widget,
    .tradingview-widget-container iframe {
        height: 50px !important;
        min-height: 50px !important;
    }
}

/* ===========================================================
   v1.6 — Header padding sıkıştır + Mobil logo doldur
   =========================================================== */

/* MASAÜSTÜ: Header padding'i ciddi şekilde azalt — logonun üstü/altı sıkı */
.site-header {
    padding: 2px 0 !important;
}

.inside-header {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    min-height: auto !important;
}

/* Logo görseli */
.site-logo img,
.header-image img,
.site-branding img,
.site-logo a img,
.header-image a img,
.custom-logo,
.custom-logo-link img {
    max-height: 56px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* MOBILDE: Logo geniş alan kaplasın, hamburger sağda küçük kalsın */
@media (max-width: 768px) {
    .site-header {
        padding: 0 !important;
    }

    .inside-header {
        padding: 4px 12px !important;
        gap: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: auto !important;
    }

    /* Logo container — esnek, alanı kapla */
    .site-branding,
    .site-logo,
    .header-image {
        flex: 1 1 auto !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Logo görseli mobilde MAKSIMUM */
    .site-logo img,
    .header-image img,
    .site-branding img,
    .site-logo a img,
    .header-image a img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 56px !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    /* Hamburger menü ikonu — sağda küçük ve net */
    .menu-toggle,
    .mobile-menu-control-wrapper,
    button.menu-toggle {
        flex-shrink: 0 !important;
        margin-left: auto !important;
        padding: 8px !important;
        font-size: 22px !important;
        background: transparent !important;
    }

    /* Hamburger içindeki ikon */
    .menu-toggle .gp-icon,
    button.menu-toggle svg,
    .mobile-menu-control-wrapper svg {
        width: 24px !important;
        height: 24px !important;
    }

    /* Site title (logo yok ise) */
    .site-title, .main-title {
        font-size: 20px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }
}

/* Küçük ekranlar — logo daha küçük ama hala dominant */
@media (max-width: 480px) {
    .site-logo img,
    .header-image img,
    .site-branding img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 48px !important;
    }

    .inside-header {
        padding: 4px 10px !important;
    }
}

/* ===========================================================
   v1.7 — HEADER COMPLETE RESET (agresif override)
   Sorun: GeneratePress'in mobile header'ı ayrı bir DOM yapısı kullanıyor
   olabilir. Tüm olası selector'lara aynı kuralları uyguluyoruz.
   =========================================================== */

/* ----- MASAÜSTÜ: Logo altı/üstü beyaz alanı KESİNLİKLE kaldır ----- */

.site-header,
#masthead,
.generate-header {
    padding: 0 !important;
    min-height: auto !important;
}

.inside-header {
    padding: 4px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
    min-height: auto !important;
    line-height: 1 !important;
}

.site-logo,
.site-branding,
.header-image {
    flex-shrink: 0;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.site-logo a,
.header-image a,
.custom-logo-link {
    display: block !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-logo img,
.header-image img,
.site-branding img,
.custom-logo,
.custom-logo-link img {
    max-height: 56px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    vertical-align: middle !important;
}

/* ----- MOBİL: Logo tam genişlik + sağda hamburger ----- */

@media (max-width: 768px) {
    /* Tüm olası mobile header containers */
    .site-header,
    #masthead,
    #mobile-header,
    .generate-header,
    .mobile-header-navigation {
        padding: 0 !important;
        min-height: auto !important;
    }

    /* Tüm header inner containers */
    .inside-header,
    #mobile-header .inside-navigation,
    .mobile-header-navigation .inside-navigation,
    .nav-aligned-left .inside-navigation,
    .nav-aligned-right .inside-navigation {
        padding: 4px 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
        min-height: auto !important;
        line-height: 1 !important;
    }

    /* Logo container - ALANI TAM KAPLA */
    .site-logo,
    .site-branding,
    .navigation-branding,
    .header-image,
    .mobile-header-logo,
    .navigation-branding .site-logo,
    .navigation-branding .site-branding {
        flex: 1 1 auto !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
    }

    .site-logo a,
    .header-image a,
    .navigation-branding a,
    .mobile-header-logo a,
    .custom-logo-link {
        display: block !important;
        line-height: 0 !important;
        max-width: 100% !important;
    }

    /* Logo image — MAKSİMUM görünüm */
    .site-logo img,
    .header-image img,
    .site-branding img,
    .navigation-branding img,
    .mobile-header-logo img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 56px !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: left center !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Hamburger menü - HER ZAMAN sağda, küçük */
    .menu-toggle,
    button.menu-toggle,
    .mobile-menu-control-wrapper,
    .toggled-on .menu-toggle {
        flex-shrink: 0 !important;
        margin-left: auto !important;
        padding: 8px !important;
        min-width: 40px !important;
        background: transparent !important;
        border: none !important;
    }

    .menu-toggle .gp-icon,
    button.menu-toggle svg,
    .menu-toggle svg,
    .mobile-menu-control-wrapper svg,
    .menu-toggle .icon-menu-bars {
        width: 26px !important;
        height: 26px !important;
        fill: currentColor !important;
    }

    /* Site title (logo yoksa) */
    .site-title, .main-title {
        font-size: 18px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }
}

/* Küçük mobil */
@media (max-width: 480px) {
    .site-logo img,
    .header-image img,
    .navigation-branding img,
    .mobile-header-logo img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 50px !important;
    }

    .inside-header,
    #mobile-header .inside-navigation {
        padding: 4px 10px !important;
    }
}

/* ===========================================================
   v1.8 — Hamburger menü SAĞA ZORLA + Logo daha büyük (mobil)
   =========================================================== */

@media (max-width: 768px) {
    /* Hamburger menünün containerını ZORLA sağa it */
    nav.main-navigation,
    .main-navigation,
    #site-navigation,
    #mobile-header .main-navigation,
    .navigation-clone,
    .nav-aligned-right,
    .nav-aligned-left {
        flex: 0 0 auto !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        background: transparent !important;
        width: auto !important;
        max-width: none !important;
        box-shadow: none !important;
        border: none !important;
    }

    /* Hamburger button kendisi - kesinlikle sağda */
    .menu-toggle,
    button.menu-toggle,
    .mobile-menu-control-wrapper {
        flex-shrink: 0 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 8px !important;
    }

    /* Site logo container - tam genişlik dolduran flex */
    .site-logo,
    .site-branding,
    .navigation-branding,
    .header-image,
    .mobile-header-logo {
        flex: 1 1 auto !important;
        max-width: calc(100% - 56px) !important; /* hamburger için yer bırak */
        min-width: 0 !important;
    }

    /* Logo BÜYÜT — daha görünür */
    .site-logo img,
    .header-image img,
    .site-branding img,
    .navigation-branding img,
    .mobile-header-logo img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 72px !important; /* önceki 56px'den 72px'e */
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    /* Inside header alanı - dolu, sola yaslı */
    .inside-header,
    #mobile-header .inside-navigation {
        padding: 4px 12px !important;
        gap: 8px !important;
        justify-content: space-between !important;
    }

    /* Eğer mobile menü öğeleri header içindeyse onları gizle (sadece hamburger görünür) */
    .main-navigation .menu > li:not(.menu-toggle-item) {
        /* Bu kuralı dikkatli ekle — hamburger açılınca menü görünmeli */
    }
}

/* Küçük ekran */
@media (max-width: 480px) {
    .site-logo img,
    .header-image img,
    .navigation-branding img,
    .mobile-header-logo img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 60px !important;
    }
}

/* TÜM EKRANLARDA — Logo image padding/margin tamamen sıfır */
.site-logo,
.site-logo a,
.header-image,
.header-image a,
.custom-logo-link {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    border: none !important;
}

/* ===========================================================
   v1.9 — Ticker üstündeki beyaz çizgi/boşluk düzeltmesi
   =========================================================== */

/* Body ve HTML default margin/padding sıfır */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Ticker bar — tüm margin/border/outline sıfır */
.fc-ticker-bar {
    margin: 0 !important;
    padding: 0 !important;
    border-top: none !important;
    outline: none !important;
}

/* Ticker bar yukarı kayan (eğer wp_body_open öncesi whitespace varsa) */
body > .fc-ticker-bar:first-of-type {
    margin-top: 0 !important;
}

/* Wrapper element'lerinde top padding/margin yok */
.site,
#page,
.hfeed.site {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

/* WP Admin Bar yüksekliği kompanse (logged-in kullanıcılar için) */
body.admin-bar .fc-ticker-bar {
    margin-top: 0 !important;
}

/* TradingView iframe'in üst boşluğunu da temizle */
.tradingview-widget-container,
.tradingview-widget-container__widget {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

/* ===========================================================
   v2.0 — Breadcrumb tüm sayfalarda
   =========================================================== */

/* Breadcrumb tüm sayfa tiplerinde geniş layout */
.fc-breadcrumb {
    max-width: var(--fc-container);
    margin: 20px auto 0;
    padding: 0 20px;
}

/* Kategori, etiket, arşiv sayfalarında breadcrumb */
.archive .fc-breadcrumb,
.search .fc-breadcrumb,
.error404 .fc-breadcrumb,
.page .fc-breadcrumb {
    margin: 20px auto 8px;
}

/* Mobilde de düzgün dur */
@media (max-width: 768px) {
    .fc-breadcrumb {
        padding: 0 16px;
        margin-top: 16px;
    }

    .fc-breadcrumb-current {
        max-width: 200px;
    }
}

/* ===========================================================
   v2.3 — Eski footer yasal linkler bloğu gizleme
   (class yok, attribute selector ile)
   =========================================================== */

/* Spesifik inline style ile eşleşen div'i bul */
div[style*="background:#f8f9fa"][style*="border-top:1px solid #e2e8f0"]:has(a[href*="/gizlilik-politikasi/"]):has(a[href*="/kullanim-sartlari/"]) {
    display: none !important;
}

/* Yedek — basit attribute match */
div[style*="border-top:1px solid #e2e8f0"][style*="font-size:13px"][style*="padding:12px"]:has(a[href*="/hakkimizda/"]) {
    display: none !important;
}

/* ===========================================================
   v2.5 — ANA SAYFA full-width düzeltmesi (alt sayfalara dokunmaz)
   =========================================================== */

/* Ana sayfada tüm GeneratePress wrapper'larını ZORLA tam genişlik */
body.home,
body.front-page,
body.page-template-front-page,
body.home #page,
body.home .site,
body.home .site-content,
body.home .inside-content,
body.home .container.grid-container,
body.home .grid-container,
body.home .grid-parent,
body.home main#main,
body.home article,
body.home .inside-article,
body.home .content-area {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    float: none !important;
}

/* fc-homepage container - tam ekran */
.fc-homepage {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Sections'ın iç container'ı zaten 1200px max-width ile ortalı.
   Onlara dokunma - bizim CSS değişkeni var:
   .fc-section-inner = max-width: var(--fc-container) + margin: 0 auto
*/

/* Mobilde aynı */
@media (max-width: 768px) {
    body.home,
    body.home #page,
    body.home .site,
    body.home .site-content,
    body.home .inside-content {
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* ===========================================================
   v2.6 — Alt sayfalarda sidebar GeneratePress varsayılanına döndür
   (Ana sayfa için v2.5 full-width kuralları geçerli kalır)
   =========================================================== */

/* Sidebar tekrar görünür - eğer GeneratePress aktivse */
#secondary,
.sidebar,
aside.widget-area {
    display: block;
}

/* Alt sayfalarda GeneratePress default sidebar layout korunur */
/* (right-sidebar veya left-sidebar Customizer'dan belirlenir) */

/* Sadece alt sayfalarda padding/margin default'a dön */
body:not(.home) .site-content,
body:not(.home) .inside-content,
body:not(.home) .inside-article,
body:not(.home) .content-area {
    /* Eski override'ları kaldır */
}

/* ===========================================================
   v2.7 — Masaüstü header daha kompakt + logo daha geniş
   =========================================================== */

@media (min-width: 769px) {
    /* Header dikey padding sıfır - sıkı bant */
    .site-header,
    #masthead {
        padding: 0 !important;
    }

    .inside-header {
        padding: 0 20px !important;
        min-height: auto !important;
    }

    /* Logo BÜYÜT — hem yükseklik hem genişlik */
    .site-logo img,
    .header-image img,
    .site-branding img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 72px !important;
        width: auto !important;
    }

    /* Logo container daha geniş alan */
    .site-branding,
    .site-logo,
    .header-image {
        max-width: 480px !important;
    }

    /* Menü item padding azalt */
    .main-navigation .menu > .menu-item > a {
        padding: 12px 14px !important;
    }
}

/* Geniş ekran (1200px+) - logo daha da büyüyebilir */
@media (min-width: 1200px) {
    .site-logo img,
    .header-image img,
    .site-branding img,
    .custom-logo,
    .custom-logo-link img {
        max-height: 80px !important;
    }

    .site-branding,
    .site-logo {
        max-width: 560px !important;
    }
}

/* ===========================================================
   v2.8 — Logo BÜYÜTME zorla + header sıkıştır (max-spec)
   =========================================================== */

@media (min-width: 769px) {
    /* Header — kesinlikle dar */
    body .site-header,
    body #masthead {
        padding: 0 !important;
        min-height: 0 !important;
    }

    body .inside-header {
        padding: 0 20px !important;
        min-height: 80px !important;  /* logoyu içerecek alan */
        height: auto !important;
    }

    /* Logo image — height ile ZORLA */
    body .site-logo img,
    body .header-image img,
    body .site-branding img,
    body .custom-logo,
    body .custom-logo-link img,
    body img.custom-logo {
        height: 76px !important;
        max-height: 76px !important;
        min-height: 76px !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        object-fit: contain !important;
    }

    /* Container'a yer */
    body .site-branding,
    body .site-logo,
    body .header-image {
        max-width: 600px !important;
        min-width: 0 !important;
    }
}

@media (min-width: 1200px) {
    body .site-logo img,
    body .header-image img,
    body .custom-logo,
    body .custom-logo-link img,
    body img.custom-logo {
        height: 86px !important;
        max-height: 86px !important;
        min-height: 86px !important;
    }

    body .inside-header {
        min-height: 90px !important;
    }
}

/* ===========================================================
   v2.9 — Header içeriği ortala (logo sağa, menü içe doğru)
   =========================================================== */

@media (min-width: 769px) {
    body .inside-header {
        max-width: var(--fc-container) !important; /* 1200px */
        margin: 0 auto !important;
        padding: 0 40px !important;
    }
}

@media (min-width: 1200px) {
    body .inside-header {
        padding: 0 60px !important;
    }
}

/* ===========================================================
   v2.10 — Header içeriği gerçekten daralt (zorla)
   =========================================================== */

@media (min-width: 769px) {
    body .inside-header,
    body header.site-header .inside-header,
    body #masthead .inside-header {
        max-width: 1000px !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
}

/* Geniş ekranda daha da içe çek */
@media (min-width: 1400px) {
    body .inside-header {
        max-width: 1100px !important;
    }
}

/* ===========================================================
   v2.12 — Ticker üstündeki beyaz boşluk temizle
   =========================================================== */

/* Body tam sıfır */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Body içinde fc-ticker-bar'dan önceki elementler üst boşluk yapmasın */
body > *:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Skip-link / screen reader text - tam gizle */
a.skip-link,
.skip-link {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Çerez banner gizliyse height da sıfır olsun */
.cob-banner[style*="display: none"],
.cob-banner[style*="display:none"],
.cob-banner.hidden,
.cob-banner.cob-banner-hidden {
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}

/* Ticker bar'ı en üste zorla */
.fc-ticker-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
}

/* WordPress otomatik eklediği genel whitespace */
body::before {
    content: none !important;
}

#wpadminbar + .fc-ticker-bar,
#wpadminbar ~ .fc-ticker-bar {
    margin-top: 0 !important;
}

/* ===========================================================
   v2.15 — Sidebar Widgets (Son Yazılar + Kategori Seçmeler)
   =========================================================== */

.fc-widget {
    background: var(--fc-bg);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    padding: 20px;
    margin-bottom: 24px;
    list-style: none;
}

.fc-widget-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fc-primary);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--fc-gold);
    position: relative;
}

.fc-widget-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fc-widget-post {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--fc-border-light);
    align-items: flex-start;
}

.fc-widget-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fc-widget-post:first-child {
    padding-top: 0;
}

.fc-widget-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: var(--fc-radius-sm);
    overflow: hidden;
    background: var(--fc-bg-soft);
    display: block;
    text-decoration: none !important;
    position: relative;
}

.fc-widget-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.fc-widget-thumb:hover img {
    transform: scale(1.05);
}

.fc-widget-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 24px;
    background: linear-gradient(135deg, var(--fc-primary) 0%, var(--fc-primary-light) 100%);
    color: var(--fc-gold-light);
}

.fc-widget-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fc-widget-heading {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--fc-primary);
    text-decoration: none !important;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fc-widget-heading:hover {
    color: var(--fc-gold-dark);
}

.fc-widget-date {
    font-size: 11px;
    color: var(--fc-text-muted);
    font-weight: 500;
}

/* Kategori widget */
.fc-widget-cat-section {
    margin-bottom: 18px;
}

.fc-widget-cat-section:last-child {
    margin-bottom: 0;
}

.fc-widget-cat-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--fc-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--fc-border);
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.fc-widget-cat-name:hover {
    color: var(--fc-primary);
}

.fc-widget-cat-icon {
    font-size: 14px;
}

.fc-widget-posts-mini .fc-widget-post {
    padding: 8px 0;
    gap: 10px;
}

.fc-widget-posts-mini .fc-widget-thumb {
    width: 56px;
    height: 56px;
}

.fc-widget-posts-mini .fc-widget-heading {
    font-size: 12px;
    -webkit-line-clamp: 2;
}

/* Sticky sidebar (opsiyonel, performans için kapalı) */
@media (min-width: 769px) {
    .widget-area#secondary {
        position: relative;
    }
}

/* Mobile - widget'lar yazı alanının altına */
@media (max-width: 768px) {
    .fc-widget {
        padding: 16px;
    }

    .fc-widget-thumb {
        width: 60px;
        height: 60px;
    }
}

/* ===========================================================
   v2.16 — Sticky Breadcrumb Bar (Header'ın altında sabit)
   =========================================================== */

/* Breadcrumb container — sticky + header altında */
.fc-breadcrumb {
    position: sticky !important;
    top: 80px !important; /* Header height (logo 76px + minimal padding) */
    z-index: 998 !important;
    background: #F4F5F7 !important; /* Header'dan farklı, hafif gri */
    border-bottom: 1px solid var(--fc-border) !important;
    box-shadow: 0 2px 4px rgba(10, 37, 64, 0.04) !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

/* Breadcrumb iç içerik ortalı */
.fc-breadcrumb-list {
    max-width: var(--fc-container);
    margin: 0 auto !important;
    padding: 0 !important;
}

/* WP Admin bar aktifse top offset güncelle */
body.admin-bar .fc-breadcrumb {
    top: 112px !important; /* 80 + 32 */
}

/* Geniş ekranda (1200px+) header daha yüksek */
@media (min-width: 1200px) {
    .fc-breadcrumb {
        top: 90px !important;
    }
    body.admin-bar .fc-breadcrumb {
        top: 122px !important;
    }
}

/* Tablet */
@media (max-width: 1199px) and (min-width: 769px) {
    .fc-breadcrumb {
        top: 80px !important;
    }
    body.admin-bar .fc-breadcrumb {
        top: 112px !important;
    }
}

/* Mobil — header daha kompakt */
@media (max-width: 768px) {
    .fc-breadcrumb {
        top: 68px !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
    body.admin-bar .fc-breadcrumb {
        top: 114px !important; /* 68 + 46 */
    }
    .fc-breadcrumb-current {
        max-width: 180px;
    }
}

/* Sayfa içeriği breadcrumb'ın altında başlasın */
.fc-breadcrumb + .site-content,
.fc-breadcrumb + main {
    margin-top: 0 !important;
}

/* ===========================================================
   v2.17 — Mobile sticky breadcrumb + overflow düzeltmesi
   =========================================================== */

/* Sticky position parent'larında overflow olmamalı */
html, body, .site, #page,
.site-content, .inside-content,
.content-area, main {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

/* Article wrapper sticky etkisi için clip-path siz */
article, .inside-article, .entry-content {
    overflow: visible !important;
}

/* Breadcrumb webkit-sticky uyumu */
.fc-breadcrumb {
    position: -webkit-sticky !important;
    position: sticky !important;
}

/* Mobil için sticky GÜÇLENDİR */
@media (max-width: 768px) {
    .fc-breadcrumb {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 62px !important; /* mobile header height */
        left: 0 !important;
        right: 0 !important;
        z-index: 997 !important;
        background: #F4F5F7 !important;
        border-bottom: 1px solid var(--fc-border) !important;
        margin: 0 !important;
        padding: 8px 12px !important;
    }

    body.admin-bar .fc-breadcrumb {
        top: 108px !important; /* 62 + 46 admin bar */
    }
}

/* ===========================================================
   v2.19 — Mobile breadcrumb FIXED (sticky çalışmıyor, garantili çözüm)
   =========================================================== */

@media (max-width: 768px) {
    /* Sticky yerine FIXED */
    .fc-breadcrumb {
        position: fixed !important;
        top: 62px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 998 !important;
        background: #F4F5F7 !important;
        border-bottom: 1px solid var(--fc-border) !important;
        box-shadow: 0 2px 4px rgba(10, 37, 64, 0.06) !important;
        padding: 8px 12px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    body.admin-bar .fc-breadcrumb {
        top: 108px !important;
    }

    /* Fixed breadcrumb yer kaplıyor — site-content'a padding-top ekle ki içerik altında kalmasın */
    body:not(.home) .site-content,
    body:not(.home) main#main,
    body:not(.home) .inside-content {
        padding-top: 50px !important;
    }
}

/* ===========================================================
   v2.20 — Breadcrumb içeriğini header ile hizala (masaüstü)
   =========================================================== */

@media (min-width: 769px) {
    /* Breadcrumb container — sıfır padding (background tam genişlik) */
    .fc-breadcrumb {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* İç içerik — header ile aynı 1000px ortalı */
    .fc-breadcrumb-list {
        max-width: 1000px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 20px !important;
        box-sizing: border-box !important;
    }
}

/* Geniş ekran header 1100px ise breadcrumb de */
@media (min-width: 1400px) {
    .fc-breadcrumb-list {
        max-width: 1100px !important;
    }
}

/* ===========================================================
   v2.30 — Mobile breadcrumb göster (agresif zorla)
   =========================================================== */

@media (max-width: 768px) {
    body .fc-breadcrumb,
    body nav.fc-breadcrumb,
    body div.fc-breadcrumb {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        top: 62px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 998 !important;
        background: #F4F5F7 !important;
        border-bottom: 1px solid var(--fc-border) !important;
        box-shadow: 0 2px 4px rgba(10, 37, 64, 0.06) !important;
        padding: 8px 12px !important;
        margin: 0 !important;
        font-size: 12px !important;
        box-sizing: border-box !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }

    body.admin-bar .fc-breadcrumb {
        top: 108px !important;
    }

    body:not(.home) .site-content,
    body:not(.home) main#main {
        padding-top: 50px !important;
    }
}

/* ===========================================================
   v2.31 — Mobile breadcrumb top offset düzeltme (header altına tutturma)
   =========================================================== */

@media (max-width: 768px) {
    body .fc-breadcrumb {
        top: 82px !important; /* mobile header height: logo 72 + padding */
    }

    body.admin-bar .fc-breadcrumb {
        top: 128px !important; /* 82 + 46 admin bar */
    }

    body:not(.home) .site-content,
    body:not(.home) main#main {
        padding-top: 60px !important; /* breadcrumb height + boşluk */
    }
}

/* Çok küçük mobil */
@media (max-width: 480px) {
    body .fc-breadcrumb {
        top: 72px !important;
    }

    body.admin-bar .fc-breadcrumb {
        top: 118px !important;
    }
}

/* ===========================================================
   v2.35 — Relocated featured image stili
   =========================================================== */

.fc-relocated-image {
    margin: 24px 0 32px !important;
    border-radius: var(--fc-radius) !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.08);
}

.fc-relocated-image img {
    width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: var(--fc-radius);
}

/* İlk paragraf giriş vurgusu */
.entry-content > p:first-of-type {
    font-size: 17px;
    line-height: 1.65;
    color: var(--fc-text);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .entry-content > p:first-of-type {
        font-size: 15px;
    }
}

/* ===========================================================
   v2.37 — Mobile breadcrumb FIXED (JS dinamik top)
   =========================================================== */

@media (max-width: 768px) {
    body .fc-breadcrumb {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 998 !important;
        background: #F4F5F7 !important;
        border-bottom: 1px solid var(--fc-border) !important;
        box-shadow: 0 2px 4px rgba(10, 37, 64, 0.06) !important;
        padding: 10px 12px !important;
        margin: 0 !important;
        font-size: 12px !important;
        box-sizing: border-box !important;
        display: block !important;
        visibility: visible !important;
    }

    /* Breadcrumb fixed olduğu için içerik yer aç */
    body:not(.home) .site-content {
        padding-top: 50px !important;
    }
}

/* ===========================================================
   v2.39 — Mobile breadcrumb STATIC (görünür hali geri)
   =========================================================== */

@media (max-width: 768px) {
    body .fc-breadcrumb,
    body nav.fc-breadcrumb,
    body div.fc-breadcrumb {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #F4F5F7 !important;
        border-bottom: 1px solid var(--fc-border) !important;
        padding: 10px 12px !important;
        margin: 0 !important;
        font-size: 12px !important;
        box-sizing: border-box !important;
        z-index: auto !important;
    }

    body:not(.home) .site-content,
    body:not(.home) main#main,
    body:not(.home) .inside-content {
        padding-top: 0 !important;
    }
}

/* ===========================================================
   v2.40 — Relocated meta box (yazının altına taşındı)
   =========================================================== */

.fc-relocated-meta {
    margin: 32px 0 24px !important;
    padding: 16px !important;
    background: var(--fc-bg-soft) !important;
    border-left: 3px solid var(--fc-gold) !important;
    border-radius: var(--fc-radius-sm) !important;
}

/* ===========================================================
   v2.41 — Relocated meta (doğru class) stili
   =========================================================== */

.fc-meta-relocated {
    margin: 32px 0 24px !important;
    padding: 16px !important;
    background: var(--fc-bg-soft) !important;
    border-left: 3px solid var(--fc-gold) !important;
    border-radius: var(--fc-radius-sm) !important;
}

/* ===========================================================
   v2.42 — Author & Category Archive Hero + Card Grid
   =========================================================== */

/* === ARCHIVE HERO === */
.fc-archive-hero {
    background: linear-gradient(135deg, var(--fc-primary) 0%, var(--fc-primary-light) 100%);
    color: var(--fc-bg);
    padding: 48px 20px;
    margin: 0 0 32px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.fc-archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.fc-archive-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.fc-archive-hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin-bottom: 8px;
}

.fc-archive-hero-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--fc-bg);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.fc-archive-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
    max-width: 700px;
}

.fc-archive-hero-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fc-archive-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 999px;
    font-size: 13px;
    color: var(--fc-gold-light);
    font-weight: 600;
}

/* Author özel avatar */
.fc-author-hero-avatar {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--fc-gold);
    background: var(--fc-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.fc-author-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fc-author-hero-info {
    flex: 1;
    min-width: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .fc-archive-hero {
        padding: 32px 16px;
        margin-bottom: 24px;
    }
    .fc-archive-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .fc-archive-hero-title {
        font-size: 24px;
    }
    .fc-archive-hero-desc {
        font-size: 14px;
    }
    .fc-author-hero-avatar {
        width: 96px;
        height: 96px;
    }
    .fc-archive-hero-meta {
        justify-content: center;
    }
}

/* === ARCHIVE CARD GRID === */
.archive .entry-content,
.author .entry-content,
.search .entry-content,
.category .entry-content,
.tag .entry-content {
    /* Default entry-content stilini sıfırla */
}

/* GeneratePress'in default arşiv post listesini grid yap */
@media (min-width: 768px) {
    body.archive main#main > .generate-columns-container,
    body.author main#main > .generate-columns-container,
    body.search main#main > .generate-columns-container,
    body.category main#main > .generate-columns-container,
    body.tag main#main > .generate-columns-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Default arşiv yazı kartı stili */
body.archive article,
body.author article,
body.search article,
body.category article,
body.tag article {
    background: var(--fc-bg);
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

body.archive article:hover,
body.author article:hover,
body.search article:hover,
body.category article:hover,
body.tag article:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
    border-color: var(--fc-gold);
}

/* Arşiv kart başlığı */
body.archive .entry-title,
body.author .entry-title,
body.search .entry-title,
body.category .entry-title,
body.tag .entry-title {
    font-size: 18px !important;
    line-height: 1.35 !important;
    padding: 16px 20px 8px;
    margin: 0;
}

body.archive .entry-title a,
body.author .entry-title a,
body.search .entry-title a,
body.category .entry-title a,
body.tag .entry-title a {
    color: var(--fc-primary);
    text-decoration: none !important;
}

body.archive .entry-title a:hover,
body.author .entry-title a:hover {
    color: var(--fc-gold-dark);
}

/* Arşiv kart meta + özet */
body.archive .entry-meta,
body.author .entry-meta,
body.search .entry-meta,
body.category .entry-meta,
body.tag .entry-meta {
    padding: 0 20px;
    font-size: 12px;
    color: var(--fc-text-muted);
}

body.archive .entry-summary,
body.author .entry-summary,
body.search .entry-summary,
body.category .entry-summary,
body.tag .entry-summary {
    padding: 8px 20px 16px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--fc-text);
}

/* Daha fazla oku link */
body.archive .read-more,
body.author .read-more,
body.category .read-more {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 8px 16px;
    background: var(--fc-primary);
    color: var(--fc-bg) !important;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none !important;
}

body.archive .read-more:hover {
    background: var(--fc-gold-dark);
}
