/* =========================================================================
   ABOUT CONTENT COMPONENT (template-parts/section-about.php)
   Architecture: High-Performance Fluid Grid Engine
   ========================================================================= */

.about-content-section {
    padding: 80px 0;
    background-color: #f8fafc; 
}

.about-content-section .container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 🎯 GRID ARCHITECTURE: Masaüstünde Altın Oran 2 Sütun Yerleşimi */
.about-layout-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* 🐛 CRITICAL FIX: Görsel Yoksa Tek Sütun Tam Genişlik Esnetmesi */
.about-content-section.no-image-single .about-layout-wrapper {
    grid-template-columns: 1fr;
}

.about-content-section .section-header {
    text-align: left;
    margin-bottom: 30px;
    position: relative;
}

.about-content-section .entry-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark, #0f172a);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0;
}

/* Başlık altı estetik çizgi */
.about-content-section .section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--fogya-orange, #f16b4e);
    margin: 15px 0 0 0; 
    border-radius: 2px;
}

.about-content-section .entry-content {
    font-size: 16px;
    line-height: 1.8; 
    color: var(--text-muted, #334155);
}

.about-content-section .entry-content p {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: justify;
}

.about-content-section .entry-content strong,
.entry-content strong {
    color: inherit; /* Sabit renk yerine bulunduğu paragrafın rengini otomatik çeker */
    font-weight: 700; /* Kalınlık korunur */
}

/* 🖼️ IMAGE WRAPPER AND SHADOW MATRIX */
.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.about-featured-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.about-image-wrapper:hover .about-featured-img {
    transform: scale(1.03);
}

/* RESPONSIVE COLLAPSE (991px ve Altı) */
@media (max-width: 991px) {
    .about-content-section {
        padding: 50px 0;
    }

    .about-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-column {
        order: 2; /* Mobilde görsel metnin altına iner */
    }

    .about-content-section .entry-title {
        font-size: 24px;
    }
}