/* =========================================================================
   SINGLE BLOG POST ENGINE (single.php)
   Architecture: Asymmetric 2-Column Grid & Gutenberg Typography
   ========================================================================= */

.single-blog-master-container {
    max-width: 1140px;
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ASİMETRİK ÇİFT SÜTUN GRID */
.blog-layout-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

/* SAĞ MAKALE ALANI */
.single-article-body {
    background: #ffffff;
}

/* DİNAMİK ENJEKTE EDİLEN HARİTA CONTAINER */
.post-embedded-map-wrapper {
    width: 100%;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.post-embedded-map-wrapper iframe {
    width: 100% !important;
    height: 400px !important;
    border: 0 !important;
    display: block;
}

/* GUTENBERG METİN TİPOGRAFİSİ & RENDER MOTORU */
.article-entry-content {
    color: var(--text-muted, #334155);
    font-size: 15px;
    line-height: 1.8;
}

/* 🎯 İLK PARAGRAF VURGUSU (LEAD PARAGRAPH) & STRONG INHERITANCE */
.article-entry-content > p:first-of-type {
    font-size: 17px;
    font-weight: 500;
    color: var(--fogya-red, #dc2626);
    line-height: 1.7;
}

.article-entry-content > p:first-of-type strong {
    color: inherit;
    font-weight: 700;
}

/* MAKALE BAŞLIKLARI (H2 & H3) */
.article-entry-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark, #0f172a);
    margin: 35px 0 18px 0;
    letter-spacing: -0.5px;
}

.article-entry-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark, #0f172a);
    margin: 25px 0 12px 0;
}

.article-entry-content p {
    margin-bottom: 18px;
}

.article-entry-content ol, 
.article-entry-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.article-entry-content li {
    margin-bottom: 8px;
}

/* GUTENBERG BLOK GÖRSEL DÜZENLEMELERİ */
.article-entry-content .wp-block-image {
    margin: 0 0 25px 0;
    width: 100%;
}

.article-entry-content .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.article-entry-content .wp-block-image figcaption {
    font-size: 13px;
    color: var(--text-muted, #64748b);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-layout-sidebar {
        order: 2;
    }

    .blog-layout-content {
        order: 1;
    }

    .post-embedded-map-wrapper iframe {
        height: 300px !important;
    }
}