/* تنسيقات قسم الصحفيين */

/* تنسيق ملف الصحفي */
.journalist-profile,
.journalist-single-profile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* رأس ملف الصحفي */
.journalist-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.journalist-image {
    width: 150px;
    height: 150px;
    margin-left: 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
}

.journalist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journalist-info {
    flex: 1;
}

.journalist-name {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
}

.journalist-specialty {
    margin: 0;
    color: #666;
    font-size: 16px;
    font-style: italic;
}

/* السيرة الذاتية */
.journalist-bio {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.journalist-bio h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* وسائل التواصل الاجتماعي */
.journalist-social {
    margin-bottom: 30px;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.social-links li {
    margin-left: 15px;
    margin-bottom: 10px;
}

.social-links a {
    display: inline-block;
    padding: 8px 15px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #2980b9;
}

/* قائمة المقالات */
.journalist-articles {
    margin-bottom: 30px;
}

.articles-list {
    list-style: none;
    padding: 0;
}

.articles-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.articles-list a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.articles-list a:hover {
    text-decoration: underline;
}

.article-date {
    display: block;
    color: #999;
    font-size: 14px;
    margin-top: 5px;
}

/* شبكة المقالات في صفحة الصحفي الفردية */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.article-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-details {
    padding: 15px;
}

.article-title {
    margin-top: 0;
    margin-bottom: 10px;
}

.article-title a {
    color: #333;
    text-decoration: none;
}

.article-title a:hover {
    color: #3498db;
}

.article-meta {
    margin-bottom: 10px;
    color: #999;
    font-size: 14px;
}

.article-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    padding: 5px 15px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #2980b9;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .journalist-header {
        flex-direction: column;
        text-align: center;
    }
    
    .journalist-image {
        margin: 0 auto 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}