:root{
  --accent:#0037ff; --muted:#666; --card:#fff; --radius:12px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}
.container-max{ max-width:5000px; margin:0px auto; padding:12px; }
.card{ background:var(--card); border-radius:var(--radius); padding:14px; box-shadow:0 10px 30px rgba(0,0,0,0.06); margin-bottom:14px; }
.hero{ display:flex; justify-content:space-between; align-items:center; gap:12px; }
.hero-left h1{ margin:0 }
.hero-right img{ width:120px; height:80px; object-fit:cover; border-radius:8px; }

.section-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.section-head h2{ margin:0 }
.section-view-all{ background:transparent;border:0;color:var(--accent);cursor:pointer }

.news-list{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.news-card{ background:#fff;border-radius:10px;overflow:hidden; box-shadow:0 8px 20px rgba(0,0,0,0.05); cursor:pointer; display:flex; flex-direction:column; }
.news-thumb{ width:100%; height:160px; object-fit:cover; background:#000; display:block; }
.news-body{ padding:10px; display:flex; flex-direction:column; gap:6px }
.news-title{ margin:0; font-size:1rem; color:#110f01 }
.news-excerpt{ margin:0; color:var(--muted); font-size:.95rem; line-height:1.3 }
.section-controls{ text-align:center; margin-top:12px }
.load-more{ padding:10px 14px; border-radius:10px; border:0; background:linear-gradient(90deg,var(--accent),#0037ff); color:#fff; cursor:pointer }

.news-modal{ position:fixed; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,0.6); z-index:200; }
.news-modal-inner{ width:min(900px,96%); max-height:90vh; overflow:auto; background:#fff; border-radius:10px; padding:16px; position:relative; }
.news-modal .close{ position:absolute; right:12px; top:12px; background:transparent;border:0;font-size:20px;cursor:pointer; }
.news-modal img{ max-width:100%; display:block; margin:8px 0 }

@media(max-width:900px){ .news-list{ grid-template-columns:repeat(2,1fr) } .hero-right img{ width:96px;height:64px } }
@media(max-width:600px){ .news-list{ grid-template-columns:1fr } .news-thumb{ height:140px } }