
:root{
  --bg:#0a0a0a; --fg:#f2f2f2; --muted:#9da3a8; --card:#121212;
  --border:#232323; --link:#e2e2ff; --accent:#ffffff;
}
*{box-sizing:border-box}
html{background:var(--bg);color:var(--fg);font:16px/1.65 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans";}
body{margin:0}
a{color:var(--link);text-decoration:none} a:hover{text-decoration:underline}

.container{max-width:1120px;margin:0 auto;padding:28px}
.banner{display:flex;align-items:baseline;justify-content:space-between;padding:22px 28px;border-bottom:1px solid var(--border);}
.brand{font-family:"Georgia","Times New Roman",serif;font-weight:700;font-size:1.8rem;letter-spacing:.4px}
.lang-btn{background:transparent;color:var(--fg);border:1px solid var(--border);border-radius:10px;padding:.4rem .6rem;cursor:pointer}
.lang-btn:hover{border-color:var(--fg)}

.grid{display:grid;grid-template-columns: 1fr 1fr;gap:28px}
@media (max-width:900px){ .grid{grid-template-columns:1fr} }
.card{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:18px}
.card img{width:100%;height:360px;object-fit:cover;border-radius:12px;border:1px solid var(--border)}
.meta{color:var(--muted);font-size:.92rem;margin-top:.3rem}
h1,h2,h3{font-family:"Georgia","Times New Roman",serif;margin:.6em 0 .35em;line-height:1.2}
h1{font-size:2.2rem} h2{font-size:1.4rem} h3{font-size:1.25rem}
.lead{font-size:1.02rem;color:var(--muted);margin:.5rem 0 0}

.footer{border-top:1px solid var(--border);color:var(--muted);padding:22px 28px}

.prose h1,.prose h2{font-family:"Georgia","Times New Roman",serif}
.prose p{margin:.9em 0}
.prose img{max-width:100%;border-radius:12px;border:1px solid var(--border)}

.rtl{direction:rtl}
