/* News banner + list */
.news-banner {
  display: flex; gap: 12px; align-items: stretch; width: 100%; text-align: left; border: none; border-radius: 16px; padding: 0;
  background: linear-gradient(135deg, #1a1a1a, #3a2a2e); color: #fff; overflow: hidden; margin: 4px 0 10px; font: inherit; cursor: pointer;
}
.news-banner-img { width: 96px; object-fit: cover; flex: 0 0 96px; }
.news-banner-body { display: flex; flex-direction: column; gap: 3px; padding: 12px 14px 12px 12px; min-width: 0; }
.news-kicker { font-size: 11px; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; color: var(--yellow); }
.news-banner strong { font-size: 16px; }
.news-snippet { font-size: 13px; opacity: 0.9; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-item { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px 12px 28px; margin-bottom: 10px; cursor: pointer; }
.news-item h3 { margin: 0 0 4px; font-size: 16px; }
.news-item .news-body { margin: 0 0 6px; font-size: 14px; white-space: pre-line; }
.news-item .meta { font-size: 12px; color: var(--muted); }
.news-item.is-offer { border: 2px solid var(--yellow); background: #fffbe8; }
.news-img { width: 100%; border-radius: 10px; margin-bottom: 8px; max-height: 180px; object-fit: cover; }
.news-dot { position: absolute; left: 10px; top: 18px; width: 10px; height: 10px; border-radius: 50%; background: var(--pink); }
.link-btn { border: none; background: none; color: var(--pink); font-weight: 700; font-size: 14px; padding: 8px 0; min-height: 40px; cursor: pointer; }
