/* ============================================= */
/* TEKİL BLOG YAZISI STİLLERİ                      */
/* ============================================= */

.post-container {
    width: 100%;
    margin-left: 0; /* Sidebar'dan dolayı ana .content sınıfı zaten boşluk bırakıyor */
}

/* Yazının sinematik başlık alanı */
.post-header {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 4rem 2rem;
    box-sizing: border-box;
}

.post-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.6);
}

.post-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.8) 0%, transparent 50%);
    z-index: -1;
}

.post-category {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.post-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 0 0 1.5rem 0;
    max-width: 800px;
    line-height: 1.3;
}

.post-meta {
    font-size: 0.9rem;
    color: #c7c7c7;
}

.meta-separator {
    margin: 0 0.75rem;
}

/* Yazı içeriği alanı */
.post-content {
    max-width: 720px; /* Okunabilirlik için ideal genişlik */
    margin: 4rem auto;
    padding: 0 1rem;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ffffff;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content a {
    color: #a3b8ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(163, 184, 255, 0.5);
    transition: all 0.2s ease;
}

.post-content a:hover {
    color: #ffffff;
    background-color: rgba(163, 184, 255, 0.2);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.post-content blockquote {
    border-left: 3px solid #555;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #a0a0a0;
}

/* Mobil için responsive ayarlar */
@media (max-width: 768px) {
    .post-header {
        height: 50vh;
        padding: 2rem 1rem;
    }
    .post-title {
        font-size: 2.2rem;
    }
    .post-content {
        margin: 3rem auto;
        font-size: 1rem;
    }
    .post-content h2 {
        font-size: 1.8rem;
    }
}