/* =========================================
   BLOG DETAY SAYFASI STİLLERİ
   ========================================= */
body {
    background-color: #fcfcfc;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

/* --- HERO (KAPAK) ALANI --- */
.blog-hero {
    position: relative;
    height: 60vh; /* Biraz daha yüksek, havalı duruş */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    margin-bottom: -80px; /* İçeriğin üzerine binmesi için */
}

.blog-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Yazının okunması için karartma */
    filter: sepia(0.2); /* Hafif nostaljik/ciddi ton */
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.blog-meta {
    font-size: 1.1rem;
    background-color: rgba(128, 0, 32, 0.8); /* Bordo zemin */
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

/* --- İÇERİK KUTUSU --- */
.blog-content-container {
    background-color: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.blog-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #444;
}

.blog-content h2 {
    color: #800020; /* Başlıklar Bordo */
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-content li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #555;
    list-style-type: none; /* Standart mermi işaretini kaldır */
    position: relative;
    padding-left: 25px;
}

/* Özel Mermi İşareti (Bordo Ok) */
.blog-content li::before {
    content: "\F285"; /* Bootstrap Icon Chevron Right */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #800020;
    font-weight: bold;
}

/* --- YAZAR KUTUSU --- */
.author-box {
    display: flex;
    align-items: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 5px solid #800020;
    border-radius: 10px;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Mobil Ayarlar */
@media (max-width: 768px) {
    .blog-hero { height: 50vh; }
    .blog-hero-content h1 { font-size: 2rem; }
    .blog-content-container { padding: 30px 20px; width: 95%; }
}