/* =================================================================
   Minimal Blog Post Template Styles
   ================================================================= */

/*
    Mobile Safari (özellikle iOS) bazı durumlarda gövde metnini otomatik büyütür.
    Bu da "hero küçük, içerik kocaman" gibi bir görünüme sebep olur.
    Blog yazısı şablonunda otomatik metin büyütmeyi kapatıyoruz.
*/
.blog-post-main,
.blog-post-article,
.blog-post-hero,
.blog-post-meta,
.blog-post-content__inner {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
}

/* Global h1 fix for deprecated API warning */
.blog-post-main h1,
.blog-post-hero h1,
.blog-post-article h1 {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Hero Section */
.blog-post-hero {
    background: #16426f;
    padding: 140px 20px 100px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.blog-post-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.blog-post-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 66, 111, 0.92) 0%, rgba(22, 66, 111, 0.85) 100%);
    z-index: 1;
}

.blog-post-hero__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.blog-post-meta__categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-post-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.blog-post-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 32px 0;
    letter-spacing: -0.8px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    /* Tarayıcının otomatik font-size ayarlamasını devre dışı bırak */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.blog-post-meta {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    flex-wrap: wrap;
    font-weight: 500;
}

.blog-post-date,
.blog-post-updated,
.blog-post-author-info,
.blog-post-comments-count {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-date svg,
.blog-post-updated svg,
.blog-post-author-info svg,
.blog-post-comments-count svg {
    opacity: 0.9;
}

/* Güncelleme tarihi - hafif opacity */
.blog-post-updated {
    opacity: 0.85;
    font-size: 14px;
}

/* Hero'daki yorum sayısı linki */
.blog-post-comments-count {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 14px;
}

.blog-post-comments-count:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* Yorum başarı ve hata mesajları */
.comment-success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.comment-success-message p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-success-message p::before {
    content: "✓";
    font-weight: bold;
}

.comment-error-message {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.comment-error-message p {
    margin: 0;
}

/* Yorum Popup Stilleri */
.comment-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.comment-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.comment-popup {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.comment-popup-overlay.is-visible .comment-popup {
    transform: scale(1) translateY(0);
}

.comment-popup__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.comment-popup--success .comment-popup__icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.comment-popup--error .comment-popup__icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

.comment-popup__icon svg {
    width: 40px;
    height: 40px;
}

.comment-popup__title {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.comment-popup__text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.comment-popup__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #16426f 0%, #1e5a9e 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.comment-popup__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 66, 111, 0.3);
}

.comment-popup--success .comment-popup__button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.comment-popup--success .comment-popup__button:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

@media (max-width: 480px) {
    .comment-popup {
        padding: 30px 24px;
    }
    
    .comment-popup__icon {
        width: 70px;
        height: 70px;
    }
    
    .comment-popup__icon svg {
        width: 35px;
        height: 35px;
    }
    
    .comment-popup__title {
        font-size: 20px;
    }
    
    .comment-popup__text {
        font-size: 14px;
    }
}



/* Layout */
.blog-post-layout {
    padding: 60px 20px;
}

.blog-post-layout__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

/* Main Content */
.blog-post-content {
    min-width: 0;
    max-width: 100%;
}

.blog-post-content__inner {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: normal;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.blog-post-content__inner * {
    box-sizing: border-box;
}

.blog-post-content__inner > * {
    margin-bottom: 24px;
}

.blog-post-content__inner p {
    margin-bottom: 24px;
}

/* İçerikte yanlışlıkla kullanılan h1'leri h2 gibi stillendir */
.blog-post-content__inner h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-align: left;
    scroll-margin-top: 100px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.blog-post-content__inner h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-align: left;
    scroll-margin-top: 100px;
}

.blog-post-content__inner h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 36px;
    margin-bottom: 16px;
    line-height: 1.4;
    scroll-margin-top: 100px;
}

.blog-post-content__inner h4 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-top: 28px;
    margin-bottom: 12px;
    text-align: left;
    scroll-margin-top: 100px;
}

.blog-post-content__inner a {

    text-underline-offset: 3px;
    transition: all 0.2s ease;
    overflow-wrap: anywhere;
    word-break: break-word;
}


.blog-post-content__inner ul,
.blog-post-content__inner ol {
    padding-left: 28px;
    margin-bottom: 24px;
}

.blog-post-content__inner li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-post-content__inner blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 20px 24px;
    margin: 32px 0;
    background: #f9fafb;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #4b5563;
}

.blog-post-content__inner img {
    border-radius: 12px;
    margin: 32px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: auto !important;
    display: block;
}

.blog-post-content__inner pre {
    background: #1f2937;
    border-radius: 12px;
    padding: 24px;
    overflow-x: auto;
    margin: 32px 0;
    max-width: 100%;
}

/* Geniş HTML blokları (iframe/video/embed) mobilde taşmasın */
.blog-post-content__inner iframe,
.blog-post-content__inner video,
.blog-post-content__inner embed,
.blog-post-content__inner object {
    max-width: 100%;
}

/* Tablolar mobilde yatay taşmayı içeride scroll ile çözsün */
.blog-post-content__inner .wp-block-table,
.blog-post-content__inner table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* SVG/canvas gibi elementler de taşmasın */
.blog-post-content__inner svg,
.blog-post-content__inner canvas {
    max-width: 100%;
}

.blog-post-content__inner code {
    background: #f3f4f6;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Monaco', 'Courier New', monospace;
    color: #d63384;
}

.blog-post-content__inner pre code {
    background: none;
    padding: 0;
    color: #e5e7eb;
    font-size: 14px;
}

/* Tags */
.blog-post-tags {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.blog-post-tags svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: #6b7280;
}

.blog-post-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-post-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f3f4f6;
    border-radius: 20px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}


/* Share Buttons */
.blog-post-share {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, #16426f 0%, #1e5a8e 100%);
    border-radius: 16px;
    text-align: center;
}

.blog-post-share__title {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.blog-post-share__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-post-share__button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.odakon-faq-container {
        max-width: 100%;
        margin: 50px 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .odakon-faq-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .odakon-faq-title {
        color: #2d3748;
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .odakon-faq-desc {
        color: #718096;
        font-size: 1rem;
    }

    /* Accordion Stili */
    details.odakon-faq-item {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    details.odakon-faq-item:hover {
        border-color: #cbd5e0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    details.odakon-faq-item[open] {
        border-color: #3182ce;
        box-shadow: 0 4px 12px rgba(49, 130, 206, 0.1);
    }

    summary.odakon-faq-question {
        padding: 20px;
        cursor: pointer;
        font-weight: 600;
        color: #2d3748;
        font-size: 1.1rem;
        list-style: none; /* Varsayılan üçgeni gizle */
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Webkit (Chrome/Safari) için üçgen gizleme */
    summary.odakon-faq-question::-webkit-details-marker {
        display: none;
    }

    /* Özel İkon (+ / -) */
    summary.odakon-faq-question::after {
        content: '+';
        font-size: 1.5rem;
        color: #3182ce;
        font-weight: 300;
        line-height: 1;
        transition: transform 0.2s;
    }

    details[open] summary.odakon-faq-question::after {
        content: '−'; /* Eksi işareti */
        color: #e53e3e;
        transform: rotate(180deg);
    }

    .odakon-faq-answer {
        padding: 0 20px 20px 20px;
        color: #4a5568;
        line-height: 1.7;
        font-size: 0.95rem;
        border-top: 1px solid #f7fafc;
        margin-top: -10px; /* Görsel hizalama */
        padding-top: 20px;
    }

    .odakon-faq-answer strong {
        color: #2c3e50;
    }

    .odakon-faq-answer a {
        color: #3182ce;
        text-decoration: underline;
    }




.blog-post-share__tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Post Navigation */
.blog-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.blog-post-navigation__prev,
.blog-post-navigation__next {
    min-width: 0;
}

.blog-post-navigation__next {
    text-align: right;
}

.blog-post-navigation__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 0;
}



.blog-post-navigation__link svg {
    flex-shrink: 0;
    color: currentColor;
}

.blog-post-navigation__link > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.blog-post-navigation__label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
}

.blog-post-navigation__title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Sidebar */
.blog-post-sidebar {
    position: relative;
    padding-top: 60px;
    display: block;
    align-self: start;
}

.blog-post-sidebar__sticky {
    position: static;
    display: block;
    margin-bottom: 24px;
}

/* Son Yazılar için ayrı sticky container */
.blog-post-sidebar__recent-sticky {
    width: 100%;
}

.blog-post-recent {
    position: static;
}

/* Author Card */
.blog-post-author-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-post-author-card--mobile {
    display: none;
}

.blog-post-author-card__avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #16426f;
}

.blog-post-author-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-author-card__name {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.blog-post-author-card__bio {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    text-align: center;
    margin: 0;
    font-style: italic;
}

/* Table of Contents */
.blog-post-toc {
    background: #f9fafb;
    border: none;
    border-radius: 12px;
    padding: 24px;
    box-shadow: none;
    max-height: 100vh;
    overflow-y: auto;
}

.blog-post-toc__title {
    font-size: 13px;
    font-weight: 600;
    color: #16426f;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.blog-post-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-post-toc__item {
    margin-bottom: 4px;
}

.blog-post-toc__item--h3 {
    padding-left: 12px;
}

.blog-post-toc__item--h4 {
    padding-left: 24px;
}

.blog-post-toc__link {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    padding: 8px 0;
    transition: all 0.2s ease;
    text-decoration: none;
}


.blog-post-toc__link.is-active {
    color: #16426f;
    font-weight: 600;
}

/* Recent Posts */
.blog-post-recent {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.blog-post-recent__title {
    font-size: 13px;
    font-weight: 600;
    color: #16426f;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    flex-shrink: 0;
}

.blog-post-recent__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-post-recent__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 16px;
}

.blog-post-recent__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #d1d5db;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.blog-post-recent__item:last-child {
    border-bottom: none;
}


.blog-post-recent__date {
    font-size: 12px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.blog-post-recent__item-title {
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    font-weight: 500;
    margin: 0;
    transition: color 0.2s ease;
}


/* Responsive */
@media (max-width: 1024px) {
    .blog-post-layout__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Sidebar'ı içeriğin altına taşı */
    .blog-post-sidebar {
        order: 2;
    }
    
    .blog-post-content {
        order: 1;
    }
    
    .blog-post-sidebar__sticky {
        position: relative;
        top: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .blog-post-sidebar__recent-sticky {
        position: relative;
        top: 0;
        width: 100%;
    }
    
    .blog-post-author-card,
    .blog-post-toc {
        flex: 1;
        min-width: 280px;
    }
    
    .blog-post-recent {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-post-hero {
        padding: 100px 20px 60px;
        min-height: 350px;
        background-size: cover;
    }
    
    .blog-post-title {
        font-size: 32px;
    }
    
    .blog-post-meta {
        font-size: 14px;
        gap: 16px;
    }
    
    .blog-post-content__inner {
        text-align: left;
        hyphens: auto;
        word-break: normal;
        overflow-wrap: break-word;
    }
    
    .blog-post-featured-image {
        margin: -20px 0 40px 0;
    }
    
    .blog-post-layout {
        padding: 0 16px 60px;
    }
    
    .blog-post-layout__container {
        gap: 32px;
        display: flex;
        flex-direction: column;
    }
    
    /* Mobilde içeriği üste, sidebar'ı alta koy */
    .blog-post-content {
        order: 1;
    }
    
    .blog-post-sidebar {
        order: 2;
        padding-top: 0;
        margin-top: 40px;
    }
    
    .blog-post-content__inner {
        font-size: 16px;
    }
    
    .blog-post-content__inner h2 {
        font-size: 26px;
        margin-top: 36px;
    }
    
    .blog-post-content__inner h3 {
        font-size: 20px;
        margin-top: 28px;
    }
    
    .blog-post-navigation {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .blog-post-navigation__next {
        text-align: left;
    }
    
    .blog-post-sidebar__sticky {
        display: block;
    }
    
    .blog-post-author-card--mobile {
        display: block;
        margin-top: 48px;
        margin-bottom: 32px;
        padding: 24px;
    }
    
    .blog-post-author-card:not(.blog-post-author-card--mobile) {
        display: none;
    }
    
    .blog-post-toc {
        display: none;
    }
    
    .blog-post-recent {
        margin-top: 0;
        border-radius: 16px;
        padding: 20px;
    }
    
    .blog-post-recent__title {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .blog-post-recent__list {
        max-height: 400px;
        gap: 0;
    }
    
    .blog-post-recent__item {
        padding: 14px 0 14px 14px;
    }
    
    .blog-post-recent__item::before {
        width: 5px;
        height: 5px;
    }
    
    .blog-post-recent__date {
        font-size: 12px;
    }
    
    .blog-post-recent__item-title {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .blog-post-title {
        font-size: 28px;
    }
    
    .blog-post-share {
        padding: 24px 16px;
    }
    
    .blog-post-navigation__title {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .blog-post-share,
    .blog-post-navigation,
    .blog-post-sidebar {
        display: none;
    }
    
    .blog-post-layout__container {
        grid-template-columns: 1fr;
    }
    
    .blog-post-content__inner a {
        color: #000;
        text-decoration: underline;
    }
}

/* =================================================================
   Blog Comments Section - İçerik ile aynı genişlikte, SEO uyumlu
   ================================================================= */

.blog-comments-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.blog-comments-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 24px 0;
}

.blog-comments-title svg {
    color: #16426f;
    flex-shrink: 0;
}

/* Comments List */
.blog-comments-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-comment-item {
    margin-bottom: 16px;
}

.blog-comment-item .children {
    list-style: none;
    margin: 12px 0 0 0;
    padding-left: 24px;
    border-left: 2px solid #e2e8f0;
}

.blog-comment-body {
    background: #f8fafc;
    border-radius: 10px;
    padding: 16px 18px;
    border: 1px solid #e2e8f0;
}

.blog-comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.blog-comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16426f 0%, #1e5a9e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.avatar-initial {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-comment-avatar.has-image {
    padding: 0;
    background: none;
}

.blog-comment-avatar__img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.blog-comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-comment-author {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    font-style: normal;
}

.blog-comment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #0f172a;
    background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.blog-comment-date {
    font-size: 12px;
    color: #9ca3af;
}

.blog-comment-date::before {
    content: "•";
    margin-right: 8px;
    color: #d1d5db;
}

.blog-comment-content {
    font-size: 14px;
    line-height: 1.65;
    color: #374151;
}

.blog-comment-content p {
    margin: 0;
}

.comment-awaiting-moderation {
    background: #fef3c7;
    color: #92400e;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 8px;
}

.blog-comment-footer {
    margin-top: 10px;
}

.blog-comment-footer .comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-comment-footer .comment-reply-link:hover {
    color: #16426f;
}

/* Comments Pagination */
.blog-comments-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.blog-comments-pagination a,
.blog-comments-pagination span {
    padding: 6px 12px;
    font-size: 13px;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-comments-pagination a:hover {
    background: #16426f;
    color: #ffffff;
    border-color: #16426f;
}

.blog-comments-pagination .current {
    background: #16426f;
    color: #ffffff;
    border-color: #16426f;
}

/* Comment Form Wrapper */
.blog-comment-form-wrapper {
    margin-top: 32px;
}

.blog-comments-list-wrapper + .blog-comment-form-wrapper {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

/* Comment Form - Kompakt Tasarım */
.blog-comment-form,
#commentform {
    background: #f8fafc;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.comment-reply-title {
    display: block;
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

#cancel-comment-reply-link {
    font-size: 12px;
    color: #9ca3af;
    margin-left: 8px;
    font-weight: 400;
}

/* Oturum açmış kullanıcı bilgisi - Minimal */
.logged-in-as {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 12px 0;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    line-height: 1.5;
}

.logged-in-as a {
    color: #16426f;
    text-decoration: none;
    font-weight: 500;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* Gerekli alanlar notu - gizle veya minimal yap */
.comment-notes {
    display: none;
}

/* Form alanları */
.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.comment-form-field {
    margin-bottom: 12px;
}

.comment-form-field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 4px;
}

.comment-form-field .required {
    color: #ef4444;
}

.comment-form-field input[type="text"],
.comment-form-field input[type="email"],
.comment-form-field textarea,
#commentform input[type="text"],
#commentform input[type="email"],
#commentform textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.comment-form-field input[type="text"]:focus,
.comment-form-field input[type="email"]:focus,
.comment-form-field textarea:focus,
#commentform input[type="text"]:focus,
#commentform input[type="email"]:focus,
#commentform textarea:focus {
    outline: none;
    border-color: #16426f;
    box-shadow: 0 0 0 2px rgba(22, 66, 111, 0.08);
}

.comment-form-field input::placeholder,
.comment-form-field textarea::placeholder,
#commentform input::placeholder,
#commentform textarea::placeholder {
    color: #9ca3af;
}

.comment-form-field textarea,
#commentform textarea {
    resize: vertical;
    min-height: 80px;
}

.email-note {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

/* WordPress varsayılan form alanları için */
#commentform p {
    margin: 0 0 12px 0;
}

#commentform p.comment-form-author,
#commentform p.comment-form-email {
    display: inline-block;
    width: calc(50% - 6px);
    vertical-align: top;
}

#commentform p.comment-form-author {
    margin-right: 12px;
}

#commentform p.comment-form-comment {
    margin-bottom: 12px;
}

#commentform label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 4px;
}

/* Submit Button - Kompakt */
.form-submit {
    margin: 16px 0 0 0;
}

.blog-comment-submit,
#commentform .submit,
#commentform input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #16426f 0%, #1e5a9e 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.blog-comment-submit:hover,
#commentform .submit:hover,
#commentform input[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 66, 111, 0.25);
}

.blog-comment-submit svg {
    transition: transform 0.2s ease;
}

.blog-comment-submit:hover svg {
    transform: translateX(2px);
}

/* Responsive Comments */
@media (max-width: 768px) {
    .blog-comments-section {
        margin-top: 32px;
        padding-top: 24px;
    }
    
    .blog-comment-form,
    #commentform {
        padding: 16px;
    }
    
    .comment-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    #commentform p.comment-form-author,
    #commentform p.comment-form-email {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .blog-comment-body {
        padding: 12px 14px;
    }
    
    .blog-comment-item .children {
        padding-left: 16px;
    }
    
    .blog-comment-avatar {
        width: 32px;
        height: 32px;
    }
    
    .avatar-initial {
        font-size: 12px;
    }
    
    .blog-comment-author {
        font-size: 13px;
    }
    
    .blog-comment-content {
        font-size: 13px;
    }
    
    .blog-comment-submit,
    #commentform .submit,
    #commentform input[type="submit"] {
        width: 100%;
    }
    
    .logged-in-as {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .blog-comments-title {
        font-size: 15px;
    }
    
    .comment-reply-title {
        font-size: 14px;
    }
    
    .blog-comment-header {
        gap: 8px;
    }
    
    .blog-comment-avatar {
        width: 28px;
        height: 28px;
    }
    
    .avatar-initial {
        font-size: 11px;
    }
    
    .blog-comment-date::before {
        display: none;
    }
    
    .blog-comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
}
