.article-page {
    padding-top: 90px;
    background-color: #fff;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.article-header {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    line-height: 1.2;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin: 0;
    color: var(--primary-black);
}

.author-info p {
    margin: 0;
    color: var(--text-gray);
}

.article-featured-image {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.article-body h2 {
    color: var(--primary-black);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    text-align: left;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-buttons {
    margin-bottom: 2rem;
}

.share-buttons h4 {
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    margin-right: 1rem;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.share-button:hover {
    transform: translateY(-3px);
}

.share-button.linkedin {
    background-color: #0077b5;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.facebook {
    background-color: #1877f2;
}

.related-articles h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-article {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
}

.related-article img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-article h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-black);
}

.related-article .read-more {
    display: block;
    padding: 0 1rem 1rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-article .read-more:hover {
    color: darkred;
}

/* Responsive düzenlemeler */
@media screen and (max-width: 992px) {
    .article-content {
        padding: 1.5rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .article-content {
        padding: 1rem;
    }
    
    .article-header h1 {
        font-size: 1.7rem;
    }
    
    .article-meta {
        flex-wrap: wrap;
    }
    
    .article-author {
        margin: 1.5rem 0;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .article-body h2 {
        font-size: 1.3rem;
    }
    
    .article-body {
        font-size: 0.95rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
} 