/* Blog Detay Genel Yapı */
.blog-detail-page {
    padding-top: 80px; /* Header payı */
    padding-bottom: 80px;
    background-color: #f9f9f9;
}

.blog-detail-page .container{
    max-width: 1400px;
}

.blog-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* Sol Taraf - İçerik Alanı */
.blog-main-content {
    flex: 2;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    min-width: 0; /* Flexbox taşma sorunu için */
}

/* Sağ Taraf - Sidebar */
.blog-sidebar {
    flex: 1;
    min-width: 300px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3,.sidebar-widget .h3 {
    font-size: 1.2rem;
    color: #134923;
    border-bottom: 2px solid #134923;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.sidebar-links li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    font-size: 0.95rem;
    line-height: 1.4;
}

.sidebar-links a:hover {
    color: #134923;
}

.sidebar-links span {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

/* Blog İçerik Stilleri */
.blog-header {
    margin-bottom: 30px;
}

.blog-header h1 {
    font-size: 2.2rem;
    color: #134923;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-meta {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    gap: 15px;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
    max-height: 500px;
}

.text-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.text-content p {
    margin-bottom: 20px;
}

.text-content h2 {
    font-size: 1.6rem;
    color: #134923;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.text-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.text-content li {
    margin-bottom: 10px;
}

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

/* Responsive */
@media (max-width: 992px) {
    .blog-layout {
        flex-direction: column;
    }
    
    .blog-sidebar {
        order: 2;
    }
    
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-detail-page {
        padding-top: 100px;
    }
}