.article-page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.article-header {
    position: relative;
    margin-bottom: 2rem;
}

.article-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.article-info {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 2rem;
    color: white;
    border-radius: 0 0 15px 15px;
}

.article-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-content section {
    margin-bottom: 2rem;
}

.article-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-content p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.article-content ul {
    padding-right: 1.5rem;
    margin-bottom: 1rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.related-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
}

.related-link i {
    font-size: 1.5rem;
}

.related-link span {
    font-weight: bold;
}

.back-button {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.back-button:hover {
    background: var(--secondary-color);
    transform: translateX(-5px);
}

.back-button i {
    font-size: 1.2rem;
}

.author-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.author-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.author-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.author-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.author-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* حذف الأنماط المتعلقة بالروابط الاجتماعية */
