/* =============================================
   NEWS STRIP
   Compact scrollable news list at hero bottom
   ============================================= */

.news-strip {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.news-strip-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.news-strip-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.3); }
}

.news-strip-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.news-ticker {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.news-ticker::-webkit-scrollbar { width: 3px; }
.news-ticker::-webkit-scrollbar-track { background: transparent; }
.news-ticker::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 3px; }

.news-row {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.45rem 0.5rem;
}

.news-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  white-space: nowrap;
  min-width: 44px;
  flex-shrink: 0;
}

.news-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.news-text strong { color: var(--text-primary); font-weight: 600; }
.news-highlight  { color: var(--accent); font-weight: 500; }
