/* Blog Article SEO Optimizasyonları */

/* Post Meta Styling */
.post-meta {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
}

.post-meta .separator {
    color: #ddd;
    margin: 0 5px;
}

.post-meta .category a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.post-meta .category a:hover {
    text-decoration: underline;
}

.post-meta i {
    color: #999;
    font-size: 0.85rem;
}

/* Author Box */
.author-box {
    border-left: 4px solid #007bff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.author-box img {
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-height: 150px;
    object-fit: cover;
}

.author-box h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.author-box .btn-primary {
    transition: all 0.3s ease;
}

.author-box .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Post Author in Header */
.post-author {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.post-author img {
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section .accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 500;
    font-size: 1.05rem;
    background: #f8f9fa;
    color: #333;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #007bff;
    color: #fff;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: #007bff;
}

.faq-section .accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Section Titles */
.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    border-left: 4px solid #007bff;
    padding-left: 15px;
    margin-bottom: 1.5rem;
}

.section-title i {
    color: #007bff;
}

/* Related Posts Cards */
.related-post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.related-post-card .card-img img {
    transition: transform 0.5s ease;
}

.related-post-card:hover .card-img img {
    transform: scale(1.05);
}

.related-post-card h3 a {
    transition: color 0.3s ease;
}

.related-post-card h3 a:hover {
    color: #007bff !important;
}

/* Image Caption Styling */
.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

/* Post Content SEO Optimizations */
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #222;
    border-left: 4px solid #007bff;
    padding-left: 15px;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.post-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: #444;
}

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

.post-content ul, .post-content ol {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    border-left: 4px solid #007bff;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #f8f9fa;
    font-style: italic;
    color: #555;
}

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

.post-content a {
    color: #007bff;
    text-decoration: underline;
}

.post-content a:hover {
    color: #0056b3;
}

/* Reading Progress Bar */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    z-index: 9999;
    transition: width 0.2s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .post-meta {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .post-meta .separator {
        display: none;
    }
    
    .post-author {
        padding: 10px 15px;
    }
    
    .author-box {
        padding: 1.5rem !important;
    }
    
    .author-box img {
        max-width: 100px;
        max-height: 120px;
    }
    
    .author-box h5 {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-content h2 {
        font-size: 1.4rem;
    }
    
    .post-content h3 {
        font-size: 1.2rem;
    }
    
    .social-share .share-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Platform Badge - Sosyal Medya için */
.platform-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    background-color: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.platform-badge i {
    margin-right: 0.25rem;
}

/* Filter Buttons - Sosyal Medya Listing için */
.filter-buttons {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-buttons .btn {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-buttons .btn-primary {
    background-color: #343a40;
    border-color: #343a40;
}

.filter-buttons .btn-outline-primary {
    color: #343a40;
    border-color: #343a40;
}

.filter-buttons .btn-outline-primary:hover {
    background-color: #343a40;
    border-color: #343a40;
    color: #fff;
}

