/* News Article */

.article-hero { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; padding: 80px 20px; color: #fff; overflow: hidden; }
.article-hero-bg { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35)), url('../images/test.webp') center/cover no-repeat; z-index: 0; }
.article-hero-content { position: relative; z-index: 1; text-align: center; }
.article-hero h1 { font-family: 'Inter','Cairo',sans-serif; font-weight: 800; font-size: 40px; margin-bottom: 10px; }
.article-meta { color: #e5e7eb; }

.article { padding: 60px 16px; background: #f7f8fa; }
.article-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; }
.article-body { background: #fff; border: 1px solid #edf0f5; border-radius: 14px; padding: 22px; }
.article-body img.article-image { width: 100%; border-radius: 12px; margin: 16px 0; }
.article-aside .aside-card { background: #fff; border: 1px solid #edf0f5; border-radius: 14px; padding: 16px; position: sticky; top: 24px; }
.related { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.related a { text-decoration: none; color: #0ea5e9; }



@media (max-width: 992px) { .article-wrap { grid-template-columns: 1fr; } .article-aside .aside-card { position: static; } }
@media (max-width: 640px) { .article-hero { min-height: 70vh; padding: 60px 16px; } .article-hero h1 { font-size: 32px; } }


