/* ============================================
   SIMPLE ARTICLE LAYOUT - TEMİZ & ÇALIŞIR
   ============================================ */

/* Article Content */
.article-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.article-container {
    width: 100%;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
    padding: 20px 0;
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 20px 0;
}

/* Featured Image */
.article-featured-image {
    max-width: 800px;
    margin: 2rem auto;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Article Body */
.article-body {
    max-width: 800px;
    margin: 3rem auto;
    font-size: 1.125rem;
    line-height: 1.75;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.25rem;
}

/* Gallery Images in Content */
.article-body .content-gallery-image {
    margin: 2.5rem 0;
    text-align: center;
}

.article-body .content-gallery-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.article-body .content-gallery-image figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Author Card, Comments, Related - Full Width */
.author-card,
.comments-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

/* Related Articles Section */
.related-articles {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.related-articles h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.related-article-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-article-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 229, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.3);
}

.related-article-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-article-content {
    padding: 1.5rem;
}

.related-article-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.related-article-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile */
@media (max-width: 768px) {
    .article-content {
        padding: 10px;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
}

