
  .section-wrap { display: flex; gap: 24px; max-width: 1100px; margin: 0 auto; }
.main-col { flex: 1 1 0; min-width: 0; }
.sidebar { width: 280px; flex-shrink: 0; }

/* Banner fix - yahi main change hai */
.banner { width: 100%; border-radius: 10px; overflow: hidden; margin-bottom: 16px; }
.banner img { width: 100%; height: auto; display: block; object-fit: cover; border-radius: 10px; }

.meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; font-size: 13px; color: #666; }
.article-title { font-size: 24px; font-weight: 800; color: #111; margin-bottom: 8px; }
.article-tagline { font-size: 14px; color: #444; margin-bottom: 14px; }
.bullet-list { list-style: none; padding: 0; margin-bottom: 14px; }
.bullet-list li { font-size: 14px; color: #333; padding: 4px 0; display: flex; gap: 8px; }
.dash { color: #1a3a6b; font-weight: 700; }
.cta-text { font-size: 14px; color: #333; margin-bottom: 8px; font-weight: 600; }
.doc-article { font-size: 14px; color: #333; margin-bottom: 8px; line-height: 1.6; }
.link-text { color: #1a6bbf; font-weight: 600; text-decoration: underline; }

.sidebar-title { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 14px; }
.news-card { display: flex; align-items: flex-start; gap: 10px; padding: 10px; border: 1px solid #e0e0e0; border-radius: 8px; background: #fff; margin-bottom: 8px; cursor: pointer; transition: border-color 0.15s; }
.news-card:hover { border-color: #999; }
.news-thumb { width: 65px; height: 52px; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #ddd; }
.thumb-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #c0392b 50%, #1a3a6b 50%); opacity: 0.75; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-headline { font-size: 13px; font-weight: 600; color: #111; margin-bottom: 6px; line-height: 1.35; }
.news-date { font-size: 11px; color: #777; display: flex; align-items: center; gap: 4px; }

@media (max-width: 700px) {
  .section-wrap { flex-direction: column; }
  .sidebar { width: 100%; }
}