/**
 * Temajet Makaleler & Köşe Yazarları Sistemi (2026 Core Web Vitals & E-E-A-T)
 *
 * 1. Birebir Referans Tasarım (Kırmızı Üst Şerit, "YAZARLAR" Başlığı, "•••" İkonu, 1:1 Dairesel Portre, İnce Ayraç, Koyu Başlık)
 * 2. 4 Saniyede Bir Otomatik Kayan Native Touch Carousel (Pause on Hover)
 * 3. 0 CLS, 0ms TTFB
 * 4. Yazar İmza Kutusu (Author Bio Box)
 * 5. Yazar Profil (single-yazarlar.php) ve Makale (single-makaleler.php) Şablonları
 */

:root {
    --jet-kose-accent: #cc0000;
    --jet-kose-card-bg: #f4f5f7;
    --jet-kose-author-color: #4b5563;
    --jet-kose-title-color: #111827;
    --jet-kose-border: #e2e8f0;
    --jet-kose-radius: 6px;
}

/* ==========================================================================
   1. BİREBİR REFERANS CAROUSEL BLOK YAPISI
   ========================================================================== */
.jet-kose-portal-module {
    margin-top: 24px;
    margin-bottom: 28px;
    position: relative;
    width: 100%;
}

/* Üst Kırmızı Çizgi Şeridi */
.jet-kose-top-red-bar {
    width: 100%;
    height: 4px;
    background: var(--jet-kose-accent, #cc0000);
    margin-bottom: 12px;
}

/* Başlık Barı (YAZARLAR ve Üç Nokta •••) */
.jet-kose-portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding: 0 2px;
    border: none;
}

.jet-kose-portal-title {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: var(--jet-kose-accent, #cc0000);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.jet-kose-more-dots {
    color: #111111;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.jet-kose-more-dots:hover {
    color: var(--jet-kose-accent, #cc0000);
    opacity: 0.8;
}

/* ==========================================================================
   2. NATIVE TOUCH CAROUSEL VİEWPORT & TRACK
   ========================================================================== */
.jet-kose-carousel-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
}

.temajet-writers-track,
.jet-kose-carousel-track {
    display: flex !important;
    gap: 16px;
    align-items: stretch;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x pan-y !important;
    scrollbar-width: none !important; /* Firefox */
    padding: 2px 0 6px 0;
    will-change: scroll-position;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
}

.temajet-writers-track::-webkit-scrollbar,
.jet-kose-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.temajet-writers-card,
.jet-kose-carousel-item {
    flex: 0 0 calc(33.333% - 11px); /* Masaüstünde tam görseldeki gibi 3 kart */
    scroll-snap-align: start !important;
    min-width: 280px;
    box-sizing: border-box;
    display: flex;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
    touch-action: pan-x pan-y !important;
    will-change: transform;
}

@media (max-width: 1024px) {
    .temajet-writers-card,
    .jet-kose-carousel-item {
        flex: 0 0 calc(50% - 8px); /* Tablette 2 kart */
    }
}

@media (max-width: 768px) {
    .temajet-writers-track,
    .jet-kose-carousel-track {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x pan-y !important;
        gap: 12px;
    }

    .temajet-writers-card,
    .jet-kose-carousel-item {
        flex: 0 0 85% !important; /* Mobilde parmakla akıcı kaydırma için geniş tek kart */
        max-width: 320px;
        min-width: 240px;
        scroll-snap-align: start !important;
    }
}

@media (max-width: 640px) {
    .temajet-writers-card,
    .jet-kose-carousel-item {
        flex: 0 0 88% !important;
        min-width: 220px;
        scroll-snap-align: start !important;
    }
}

/* ==========================================================================
   3. YAZAR KARTI BİREBİR TASARIMI (SOL RESİM, SAĞ METİN HİYERARŞİSİ)
   ========================================================================== */
.jet-kose-author-card {
    background: var(--jet-kose-card-bg, #f4f5f7);
    border: 1px solid #e5e7eb;
    border-radius: var(--jet-kose-radius, 6px);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 104px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
    touch-action: pan-x pan-y !important;
}

.jet-kose-author-card a {
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
    touch-action: pan-x pan-y !important;
}

.jet-kose-card-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
    pointer-events: none; /* Mobilde dokunurken resim yakalamayı engeller */
}

.jet-kose-author-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

/* Sol Taraf (Yazar Portresi): Tam Dairesel (1:1), kenarlıksız, keskin */
.jet-kose-card-avatar-wrap {
    width: 72px;
    height: 72px;
    min-width: 72px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.jet-kose-card-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* Sağ Taraf (Metin Hiyerarşisi) */
.jet-kose-card-content {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 1. Üstte Yazar Adı & Unvanı */
.jet-kose-card-author-name {
    font-family: var(--jet-kose-author-font, inherit);
    font-size: 13.5px;
    font-weight: var(--jet-kose-author-weight, 500);
    font-style: var(--jet-kose-author-style, normal);
    line-height: 1.25;
    color: var(--jet-kose-author-color, #4b5563);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 18px;
}

.jet-kose-card-author-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.jet-kose-card-author-name a:hover {
    color: var(--jet-kose-accent, #cc0000);
}

/* 2. Adın hemen altında ince yatay ayraç çizgisi */
.jet-kose-card-divider {
    height: 1px;
    background: #dcdcdc;
    margin: 6px 0 7px 0;
    width: 100%;
}

/* 3. Çizginin altında KOYU, BÜYÜK HARFLİ (UPPERCASE) ve KALIN Makale Başlığı */
.jet-kose-card-article-title {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--jet-kose-title-color, #111827);
    margin: 0;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.jet-kose-card-article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.jet-kose-card-article-title a:hover {
    color: var(--jet-kose-accent, #cc0000);
}

/* ==========================================================================
   4. DİKEY LİSTE (SIDEBAR) UYUMU
   ========================================================================== */
.jet-kose-vertical-wrapper .jet-kose-portal-header {
    border-top: 3px solid var(--jet-kose-accent, #cc0000);
    padding: 6px 0;
}

.jet-kose-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.jet-kose-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--jet-kose-card-bg, #f4f5f7);
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.jet-kose-list-item:hover {
    background: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.jet-kose-list-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.jet-kose-list-content {
    flex-grow: 1;
    overflow: hidden;
}

.jet-kose-list-author {
    font-family: var(--jet-kose-author-font, inherit);
    font-size: 13px;
    font-weight: var(--jet-kose-author-weight, 500);
    font-style: var(--jet-kose-author-style, normal);
    color: var(--jet-kose-author-color, #4b5563);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jet-kose-list-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--jet-kose-title-color, #111827);
    margin: 3px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   5. YAZAR İMZA KUTUSU (AUTHOR BIO BOX - AT BOTTOM OF ARTICLE)
   ========================================================================== */
.jet-author-signature-box {
    margin-top: 36px;
    margin-bottom: 32px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.jet-asb-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@media (max-width: 640px) {
    .jet-asb-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.jet-asb-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--jet-kose-accent, #cc0000);
    aspect-ratio: 1 / 1;
}

.jet-asb-content {
    flex-grow: 1;
}

.jet-asb-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 6px;
}

@media (max-width: 640px) {
    .jet-asb-header {
        flex-direction: column;
        align-items: center;
    }
}

.jet-asb-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--jet-kose-accent, #cc0000);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 2px;
}

.jet-asb-name {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.jet-asb-name a {
    color: inherit;
    text-decoration: none;
}

.jet-asb-name a:hover {
    color: var(--jet-kose-accent, #cc0000);
}

.jet-asb-title {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}

.jet-asb-socials {
    display: flex;
    gap: 8px;
}

.jet-asb-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.jet-asb-social:hover {
    background: var(--jet-kose-accent, #cc0000);
    border-color: var(--jet-kose-accent, #cc0000);
    color: #ffffff;
    transform: translateY(-2px);
}

.jet-asb-bio {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin: 10px 0 16px;
}

.jet-asb-all-posts-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--jet-kose-accent, #cc0000);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.jet-asb-all-posts-btn:hover {
    background: #a00000;
    color: #ffffff;
}

/* ==========================================================================
   6. SINGLE MAKALE & SINGLE YAZAR DETAY ŞABLONLARI
   ========================================================================== */
.jet-single-makale-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #0f172a;
}

.jet-single-makale-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    display: block;
}

.jet-makale-author-header-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 20px;
}

.jet-mah-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border: 2px solid var(--jet-kose-accent, #cc0000);
}

.jet-mah-info {
    flex-grow: 1;
}

.jet-mah-name {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
}

.jet-mah-title {
    font-size: 12px;
    color: #64748b;
}

.jet-mah-meta {
    font-size: 12px;
    color: #64748b;
    display: flex;
    gap: 14px;
}

/* ==========================================================================
   KÖŞE YAZISI (SINGLE MAKALE) İÇERİK & PARAGRAF HİZALAMA
   ========================================================================== */
.jet-single-makale-article .entry-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.3;
    color: #0f172a;
    margin-top: 8px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .jet-single-makale-article .entry-title {
        font-size: 24px;
        line-height: 1.35;
    }
}

.jet-makale-content,
.jet-single-makale-article .entry-content {
    font-size: 18px;
    line-height: 1.85;
    color: #1e293b;
    margin-bottom: 36px;
    word-wrap: break-word;
}

/* Paragraflar Arası Net & Belirgin Boşluk */
.jet-makale-content p,
.jet-single-makale-article .entry-content p {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    line-height: 1.85 !important;
    font-size: 18px !important;
    color: #1e293b;
    letter-spacing: -0.01em;
}

/* Boş bırakılan / enter basılarak oluşturulan satır aralıkları */
.jet-makale-content p:empty,
.jet-single-makale-article .entry-content p:empty,
.jet-makale-content p:blank {
    min-height: 24px;
    display: block;
    margin-bottom: 24px !important;
}

.jet-makale-content p > br:only-child,
.jet-single-makale-article .entry-content p > br:only-child {
    display: block;
    height: 20px;
    content: "";
}

.jet-makale-content br + br,
.jet-single-makale-article .entry-content br + br {
    display: block;
    content: "";
    margin-top: 16px;
}

/* Makale Başlıkları (h2, h3, h4) */
.jet-makale-content h2,
.jet-single-makale-article .entry-content h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    margin-top: 36px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

.jet-makale-content h3,
.jet-single-makale-article .entry-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin-top: 30px;
    margin-bottom: 16px;
}

.jet-makale-content h4,
.jet-single-makale-article .entry-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 24px;
    margin-bottom: 14px;
}

/* Alıntılar (Blockquote) */
.jet-makale-content blockquote,
.jet-single-makale-article .entry-content blockquote {
    margin: 28px 0;
    padding: 20px 26px;
    border-left: 4px solid var(--jet-kose-accent, #cc0000);
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 18.5px;
    line-height: 1.75;
    color: #334155;
}

.jet-makale-content blockquote p,
.jet-single-makale-article .entry-content blockquote p {
    margin-bottom: 0 !important;
}

/* Listeler */
.jet-makale-content ul,
.jet-makale-content ol,
.jet-single-makale-article .entry-content ul,
.jet-single-makale-article .entry-content ol {
    margin: 20px 0 24px 28px;
    padding: 0;
    line-height: 1.8;
    font-size: 17.5px;
}

.jet-makale-content li,
.jet-single-makale-article .entry-content li {
    margin-bottom: 10px;
}

/* ==========================================================================
   KÖŞE YAZILARI & MAKALELER LİSTE GRIDLERİ (ARCHIVE, KATEGORİ, YAZAR PROFİL)
   ========================================================================== */
.jet-kose-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 36px;
}

@media (max-width: 768px) {
    .jet-kose-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.jet-kose-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.jet-kose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

/* 16:9 Kapak Görseli */
.jet-kose-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}

.jet-kose-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    display: block;
    transition: transform 0.35s ease;
}

.jet-kose-card:hover .jet-kose-thumb-img {
    transform: scale(1.04);
}

.jet-kose-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}

/* Yuvarlak Yazar Portresi Rozeti */
.jet-kose-avatar-badge {
    position: absolute;
    bottom: 12px;
    left: 14px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 2;
    background: #ffffff;
}

.jet-kose-avatar-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

/* Kart Gövdesi */
.jet-kose-card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.jet-kose-author-info {
    margin-bottom: 8px;
}

.jet-kose-author-info .jet-kose-author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--jet-kose-accent, #cc0000);
    text-decoration: none;
    display: block;
}

.jet-kose-author-info .jet-kose-author-name:hover {
    text-decoration: underline;
}

.jet-kose-author-title {
    font-size: 12px;
    color: #64748b;
    margin-top: 1px;
}

/* Makale Başlığı - 2 Satır Sabit Hizalama */
.jet-kose-card .jet-kose-article-title {
    font-size: 16.5px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 10px;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jet-kose-card .jet-kose-article-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.jet-kose-card .jet-kose-article-title a:hover {
    color: var(--jet-kose-accent, #cc0000);
}

/* Makale Özeti - 3 Satır Sabit Hizalama */
.jet-kose-article-excerpt {
    font-size: 13.5px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 64px;
}

/* Kart Footer - Tarih ve Okunma */
.jet-kose-card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #94a3b8;
}

.jet-kose-card-footer span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Yazar Profil Hero Alanı */
.jet-yazar-profile-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    padding: 32px 28px;
    color: #ffffff;
    margin-bottom: 32px;
}

.jet-yph-inner {
    display: flex;
    gap: 24px;
    align-items: center;
}

@media (max-width: 768px) {
    .jet-yph-inner {
        flex-direction: column;
        text-align: center;
    }
}

.jet-yph-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    aspect-ratio: 1 / 1;
}

.jet-yph-content {
    flex-grow: 1;
}

.jet-yph-label {
    background: var(--jet-kose-accent, #cc0000);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

.jet-yph-name {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 4px;
}

.jet-yph-title {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.jet-yph-bio {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 14px;
}

.jet-yph-socials {
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .jet-yph-socials {
        justify-content: center;
    }
}

.jet-yph-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.jet-yph-social-btn:hover {
    background: var(--jet-kose-accent, #cc0000);
    color: #ffffff;
}


/* ==========================================================================
   8. MASAÜSTÜ & MOBİL AYRI KONUM VE CİHAZ HEDEFLEME
   ========================================================================== */
@media (max-width: 768px) {
    .jet-kose-desktop-only {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .jet-kose-mobile-only {
        display: none !important;
    }
}

/* ==========================================================================
   9. KÖŞE YAZARLARI SABİT OK NAVİGASYONU & AKICI KAYDIRMA (YATAY & DİKEY)
   ========================================================================== */
.temajet-writer-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Ok Butonları Genel Tasarımı */
.temajet-writer-nav-btn {
    position: absolute;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background-color: var(--jet-kose-arrow-bg, #ffffff);
    color: var(--jet-kose-arrow-color, #111827);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.temajet-writer-nav-btn:hover {
    background-color: var(--jet-kose-arrow-hover-bg, #cc0000);
    color: var(--jet-kose-arrow-hover-color, #ffffff);
    transform: scale(1.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.temajet-writer-nav-btn:active {
    transform: scale(0.95);
}

.temajet-writer-nav-btn svg {
    display: block;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

/* Yatay Ok Konumlandırması (Sol / Sağ kenara sabit & taşma payı) */
.temajet-writer-slider-wrapper:not(.vertical) .temajet-writer-nav-prev {
    left: -16px;
}

.temajet-writer-slider-wrapper:not(.vertical) .temajet-writer-nav-next {
    right: -16px;
}

@media (max-width: 768px) {
    .temajet-writer-slider-wrapper:not(.vertical) .temajet-writer-nav-prev {
        left: 2px;
    }
    .temajet-writer-slider-wrapper:not(.vertical) .temajet-writer-nav-next {
        right: 2px;
    }
    .temajet-writer-nav-btn {
        width: 32px;
        height: 32px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    }
}

/* Dikey Ok Konumlandırması (Üst / Alt) */
.temajet-writer-slider-wrapper.vertical {
    flex-direction: column;
    align-items: stretch;
    position: relative;
    padding: 24px 0;
}

.temajet-writer-slider-wrapper.vertical .temajet-writer-nav-prev.vertical {
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.temajet-writer-slider-wrapper.vertical .temajet-writer-nav-prev.vertical:hover {
    transform: translateX(-50%) scale(1.08);
}

.temajet-writer-slider-wrapper.vertical .temajet-writer-nav-prev.vertical:active {
    transform: translateX(-50%) scale(0.95);
}

.temajet-writer-slider-wrapper.vertical .temajet-writer-nav-next.vertical {
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.temajet-writer-slider-wrapper.vertical .temajet-writer-nav-next.vertical:hover {
    transform: translateX(-50%) scale(1.08);
}

.temajet-writer-slider-wrapper.vertical .temajet-writer-nav-next.vertical:active {
    transform: translateX(-50%) scale(0.95);
}

/* Dikey Kaydırma Kapsayıcısı */
.temajet-writers-track.vertical,
.jet-kose-list-vertical {
    max-height: 420px;
    overflow-y: auto !important;
    scroll-snap-type: y mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x pan-y !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none;
    padding: 4px 2px;
    will-change: scroll-position;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.temajet-writers-track.vertical::-webkit-scrollbar,
.jet-kose-list-vertical::-webkit-scrollbar {
    display: none; /* Chrome, Edge, Safari */
}

.temajet-writers-card.jet-kose-list-item,
.jet-kose-list-vertical .jet-kose-list-item {
    scroll-snap-align: start !important;
    flex-shrink: 0;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
    touch-action: pan-x pan-y !important;
}

.jet-kose-list-avatar {
    pointer-events: none;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
}

/* Mouse Drag & Akıcı Kaydırma Davranışları */
.temajet-writers-track,
.jet-kose-carousel-track,
.jet-kose-list-vertical {
    cursor: grab;
}

.temajet-writers-track.is-dragging,
.jet-kose-carousel-track.is-dragging,
.jet-kose-list-vertical.is-dragging {
    cursor: grabbing !important;
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.temajet-writers-track.is-dragging a,
.jet-kose-carousel-track.is-dragging a,
.jet-kose-list-vertical.is-dragging a {
    pointer-events: none !important;
}

/* Touch-action: Yatay ve Dikey Serbest Akış */
.temajet-writers-track,
.jet-kose-carousel-track {
    touch-action: pan-x pan-y !important;
}

.temajet-writers-track.vertical,
.jet-kose-list-vertical {
    touch-action: pan-x pan-y !important;
}


/* ==========================================================================
   6. YAZIYI OKU & KART TIKLANABİLİRLİK GÜVENCESİ
   ========================================================================== */
.temajet-writers-card a,
.jet-kose-author-card a,
.jet-kose-card-article-title a,
.jet-kose-card-author-name a,
.jet-kose-card-avatar-wrap a,
.jet-kose-list-item a,
.jet-kose-card-read-more a,
.jet-kose-list-read-btn {
    pointer-events: auto !important;
    cursor: pointer !important;
    text-decoration: none;
}

.temajet-writers-card:not(.is-dragging) {
    cursor: pointer;
}

.jet-kose-card-read-more {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.jet-kose-read-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--jet-kose-accent, #cc0000) !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, color 0.2s ease;
}

.jet-kose-read-link:hover {
    transform: translateX(3px);
    color: #111827 !important;
}

.jet-kose-list-read-btn {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: var(--jet-kose-accent, #cc0000) !important;
    transition: color 0.2s ease;
}

.jet-kose-list-read-btn:hover {
    text-decoration: underline;
}

/* ==========================================================================
   7. YAZARIN DİĞER YAZILARI (DETAY SAYFASI BİLEŞENİ)
   ========================================================================== */
.jet-author-other-articles {
    margin-top: 36px;
    margin-bottom: 30px;
    padding-top: 24px;
    border-top: 2px solid #f1f5f9;
}

.jet-aoa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.jet-aoa-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.jet-aoa-title i {
    color: #e11d48;
}

.jet-aoa-view-all {
    font-size: 12px;
    font-weight: 700;
    color: #0284c7;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.jet-aoa-view-all:hover {
    color: #0369a1;
    text-decoration: underline;
}

.jet-aoa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.jet-aoa-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.jet-aoa-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.jet-aoa-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #64748b;
    margin-bottom: 8px;
}

.jet-aoa-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.jet-aoa-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.jet-aoa-card-title a:hover {
    color: #e11d48;
}

.jet-aoa-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #e11d48;
    text-decoration: none;
    margin-top: auto;
    transition: transform 0.2s ease;
}

.jet-aoa-card:hover .jet-aoa-read-more {
    transform: translateX(4px);
}


/* ==========================================================================
   KÖŞE YAZISI DETAY ALT BİLGİ ÇUBUĞU (ARTICLE META BAR)
   0ms TTFB, 0% CLS, 100 PageSpeed & Mobil Uyumlu
   ========================================================================== */
.temajet-article-meta-bar {
    width: 100%;
    margin: 16px 0 24px 0;
    padding: 10px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-sizing: border-box;
    min-height: 60px; /* CLS Önleme */
}

.temajet-meta-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Sol Blok: Tarihler ve Metrikler */
.temajet-meta-left {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.temajet-meta-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.temajet-meta-val {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

.temajet-meta-lbl {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 3px;
    line-height: 1;
}

.temajet-meta-divider {
    width: 1px;
    height: 28px;
    background: #cbd5e1;
    margin: 0 16px;
    flex-shrink: 0;
}

/* Sağ Blok: Sosyal Butonlar, Font Sizer, Google News */
.temajet-meta-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Sosyal Medya & Aksiyon Butonları */
.temajet-social-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.temajet-social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.temajet-social-btn:active {
    transform: translateY(0);
}

.temajet-social-btn svg {
    display: block;
    pointer-events: none;
}

/* Buton Renkleri */
.temajet-btn-facebook {
    background-color: #1877F2 !important;
}

.temajet-btn-x {
    background-color: #000000 !important;
}

.temajet-btn-whatsapp {
    background-color: #25D366 !important;
}

.temajet-btn-share-plus {
    background-color: #CC0000 !important;
}

/* Font Sizer Kapsayıcı ve Butonları */
.temajet-font-sizer-wrap {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 2px 6px;
    gap: 4px;
    margin: 0 2px;
    height: 36px;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.temajet-font-sizer-btn {
    background: transparent;
    border: none;
    font-size: 13px;
    font-weight: 800;
    color: #334155;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 12px;
    line-height: 1;
    transition: background-color 0.15s ease, color 0.15s ease;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.temajet-font-sizer-btn:hover {
    background: #f1f5f9;
    color: #cc0000;
}

.temajet-font-sizer-sep {
    color: #cbd5e1;
    font-size: 12px;
    user-select: none;
}

/* ==========================================================================
   MAKALE FONT BOYUTU DEĞİŞTİRİCİ (CSS VARIABLE & EM SPECIFICITY MİMARİSİ)
   14px - 22px Dinamik Sınırlar, CSS !important Geçersiz Kılma
   ========================================================================== */
:root {
    --article-font-size: 17px;
}

.temajet-article-content,
.kose-yazisi-content,
.jet-makale-content,
.entry-content.jet-single-text {
    --article-font-size: 17px;
}

/* Makale içindeki tüm metin bloklarına dinamik CSS değişkeni uygulanır */
.temajet-article-content p,
.temajet-article-content li,
.temajet-article-content blockquote,
.temajet-article-content pre,
.kose-yazisi-content p,
.kose-yazisi-content li,
.kose-yazisi-content blockquote,
.kose-yazisi-content pre,
.jet-makale-content p,
.jet-makale-content li,
.jet-makale-content blockquote,
.entry-content.jet-single-text p,
.entry-content.jet-single-text li,
.entry-content.jet-single-text blockquote {
    font-size: var(--article-font-size, 17px) !important;
    line-height: 1.75 !important;
    transition: font-size 0.1s ease-out;
}

/* Google News Butonu */
.temajet-google-news-btn {
    height: 36px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-decoration: none !important;
    color: #1e293b !important;
    font-size: 12px;
    font-weight: 700;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s ease, border-color 0.18s ease;
}

.temajet-google-news-btn:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.temajet-gn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.temajet-gn-label {
    line-height: 1;
    white-space: nowrap;
}

/* Toast Bildirim (Bağlantı kopyalandı mesajı) */
.temajet-share-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #0f172a;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.temajet-share-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   MOBİL RESPONSIVE TASARIM (MAX-WIDTH: 768PX)
   ========================================================================== */
@media (max-width: 768px) {
    .temajet-article-meta-bar {
        padding: 12px 14px;
        min-height: 116px; /* Mobilde 2 satır için sabit min-height, 0 CLS */
        margin: 14px 0 20px 0;
    }

    .temajet-meta-bar-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .temajet-meta-left {
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 10px;
    }

    .temajet-meta-divider {
        margin: 0 8px;
        height: 24px;
    }

    .temajet-meta-val {
        font-size: 11px;
    }

    .temajet-meta-lbl {
        font-size: 9px;
    }

    .temajet-meta-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }

    /* Mobilde dokunmatik alan minimum 38x38px */
    .temajet-social-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }

    .temajet-font-sizer-wrap {
        height: 38px;
        min-height: 38px;
        padding: 2px 8px;
    }

    .temajet-font-sizer-btn {
        padding: 6px 10px;
        font-size: 14px;
    }

    .temajet-google-news-btn {
        height: 38px;
        min-height: 38px;
        padding: 0 12px;
    }
}

/* Ekstra Küçük Ekranlar (max-width: 480px) */
@media (max-width: 480px) {
    .temajet-meta-val {
        font-size: 10px;
    }
    .temajet-meta-lbl {
        font-size: 8px;
    }
    .temajet-meta-divider {
        margin: 0 4px;
    }
}


/* Mobil Ekranlarda Haber Detay & Yazar Barı Taşma Koruması (<= 768px) */
@media (max-width: 768px) {
    .jet-makale-author-header-bar {
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 10px 12px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .jet-mah-info {
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }
    .jet-mah-meta {
        width: 100% !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin-top: 4px !important;
        padding-top: 6px !important;
        border-top: 1px solid #e2e8f0 !important;
    }
    .temajet-article-meta-bar {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding: 10px 12px !important;
    }
    .temajet-meta-left {
        max-width: 100% !important;
        box-sizing: border-box !important;
        flex-wrap: wrap !important;
    }
    .temajet-meta-right {
        max-width: 100% !important;
        box-sizing: border-box !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
    }
    .entry-title,
    .jet-single-makale-article .entry-title {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
}
