/* EN: Announcement bar — uses design tokens from design_tokens.blade.php
   AR: شريط الإعلان — يعتمد على متغيرات التصميم الموحدة */
.announcement-bar {
    background: var(--accent);
    color: #ffffff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}
.announcement-bar__link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
}
.announcement-bar__link:hover {
    opacity: 0.85;
}
/* EN: Morning theme override / AR: تعديلات الثيم النهاري */
body.theme-morning .announcement-bar {
    background: var(--premium-accent);
    color: #ffffff;
}
/* EN: Mobile responsive / AR: استجابة الجوال */
@media (max-width: 480px) {
    .announcement-bar { font-size: 12px; padding: 6px 12px; gap: 8px; }
}
