/* hausa/assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Arabic', system-ui, sans-serif;
    line-height: 1.75;
    color: #1f2937;
    background: #f8f9fa;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

header a {
    text-decoration: none;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Article Content */
.article-content {
    font-size: 1.12rem;
    line-height: 1.85;
}

.article-content iframe {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    margin: 25px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .news-card img {
        height: 180px;
    }
    h1 {
        font-size: 2.1rem;
    }
}

/* Utility */
.prose {
    max-width: none;
}