/* Arabic News CMS - Custom Styles */

body {
    font-family: 'IBM Plex Sans Arabic', Tahoma, Arial, sans-serif;
}

/* Article content typography */
.article-content {
    line-height: 1.9;
    font-size: 1.125rem;
}
.article-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}
.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
}
.article-content p {
    margin-bottom: 1.25rem;
}
.article-content blockquote {
    border-right: 4px solid #9ca3af;
    padding-right: 1rem;
    margin: 1.5rem 0;
    color: #6b7280;
    font-style: italic;
}
.article-content ul, .article-content ol {
    margin: 1rem 0;
    padding-right: 1.5rem;
}
.article-content li {
    margin-bottom: 0.5rem;
}
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}
.article-content a {
    color: #374151;
    text-decoration: underline;
}
.dark .article-content a {
    color: #d1d5db;
}
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.article-content th, .article-content td {
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0.75rem;
    text-align: right;
}
.dark .article-content th, .dark .article-content td {
    border-color: #374151;
}

/* Video embeds */
.video-embed {
    position: relative;
    width: 100%;
}
.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Line clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Smooth transitions */
* {
    scrollbar-width: thin;
    scrollbar-color: #9ca3af transparent;
}

/* Focus styles */
input:focus, textarea:focus, select:focus, button:focus {
    outline: none;
}

/* Print */
@media print {
    header, footer, .no-print { display: none !important; }
    body { background: white; color: black; }
}
