@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400;600;700&family=Inter:wght@400;600;700&display=swap');

:root {
    --red: #b30000;
    --dark: #151515;
    --muted: #666;
    --line: #e7e2dc;
    --paper: #fffdf9;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    background: #f6f2eb;
    color: var(--dark);
    font-family: 'Noto Nastaliq Urdu', serif;
    line-height: 2;
}
a { color: inherit; text-decoration: none; }
.top { background: white; border-bottom: 1px solid var(--line); }
.datebar, .brand, .nav, .container, .footer {
    max-width: 1160px;
    margin: auto;
    padding-left: 16px;
    padding-right: 16px;
}
.datebar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
    border-bottom: 1px solid var(--line);
}
.brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}
.logo {
    font-family: Inter, sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: .2px;
}
.search { display: flex; gap: 8px; }
.search input, input, select, textarea {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 9px 12px;
    font: inherit;
    background: white;
}
button, .btn {
    border: 0;
    border-radius: 6px;
    background: var(--red);
    color: white;
    padding: 9px 14px;
    font: inherit;
    cursor: pointer;
}
.nav {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid var(--line);
    font-weight: 700;
}
.container { padding-top: 22px; padding-bottom: 30px; }
.hero {
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 24px;
    background: white;
    border-top: 4px solid var(--red);
    padding: 22px;
    margin-bottom: 24px;
}
.hero h1 { font-size: 34px; margin: 8px 0; line-height: 1.9; }
.hero img, .news-card img, .article-img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.badge { color: white; background: var(--red); padding: 4px 10px; border-radius: 999px; font-size: 13px; }
.grid { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 24px; }
.main-list, .sidebar, .article { background: white; padding: 18px; border: 1px solid var(--line); }
.news-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.news-card img { aspect-ratio: 16 / 10; }
.news-card h2, .news-card h3 { margin: 2px 0; line-height: 1.8; }
.meta, .english { color: var(--muted); font-family: Inter, 'Noto Nastaliq Urdu', sans-serif; font-size: 13px; line-height: 1.6; }
.side-link { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.section-title { background: white; margin: 0 0 18px; padding: 14px 18px; border-right: 4px solid var(--red); }
.article { max-width: 860px; margin: auto; }
.article h1 { font-size: 36px; line-height: 1.9; margin: 10px 0; }
.article-img { max-height: 460px; margin: 12px 0; }
.content { font-size: 18px; }
.slug-line { direction: ltr; text-align: left; color: var(--muted); font-family: Inter, sans-serif; border-top: 1px solid var(--line); padding-top: 12px; }
.footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid var(--line);
    color: #555;
}
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px) {
    .brand, .datebar, .footer { flex-direction: column; align-items: stretch; }
    .hero, .grid, .news-card { grid-template-columns: 1fr; }
    .hero h1, .article h1 { font-size: 25px; }
    .search { width: 100%; }
    .search input { flex: 1; min-width: 0; }
}

