/* Blog Styles */

/* تنسيق الروابط والعناوين */
a { 
    text-decoration: none; 
    color: inherit; 
    transition: 0.3s; 
}
a:hover { 
    color: #dc3545; /* اللون الأحمر الخاص بـ CaptchaAI */
}

/* تنسيق محتوى المقال */
.blog-content { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: #333; 
}
.blog-content h2, .blog-content h3 { 
    margin-top: 2rem;  
    font-weight: bold; 
}
.blog-content p { 
    margin-bottom: 1.5rem; 
}

/* تنسيق بلوكات الكود لتكون احترافية */
.blog-content pre {
    background: #282c34; /* خلفية غامقة */
    color: #abb2bf;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    overflow-x: auto;
    font-family: 'Fira Code', 'Courier New', monospace;
    margin: 2rem 0;
}

/* شريط علوي للكود ليعطي شكل محرر نصوص */
.blog-content pre::before {
    content: "Code";
    display: block;
    background: #21252b;
    color: #aaa;
    font-size: 0.8rem;
    padding: 5px 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.blog-content pre code {
    padding-top: 30px;
    display: block;
}

/* تنسيق الكروت في صفحة الأرشيف */
.blog-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s;
}
.blog-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.blog-card .card-title {
    color: #212529;
    font-weight: 600;
    font-size: 1.25rem;
}
.blog-card .card-title:hover {
    color: #dc3545;
}
.blog-card .card-text {
    color: #6c757d;
    font-size: 0.95rem;
}
.blog-card .text-muted {
    font-size: 0.85rem;
}
