/* VRT NWS overrides */
[data-theme="vrtnws"] .masthead {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

[data-theme="vrtnws"] .masthead-brand a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}

[data-theme="vrtnws"] .navbar {
  border-bottom: 1px solid var(--border);
}

/* Hero: image-first with text overlay */
[data-theme="vrtnws"] .hero-block {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-8);
}

[data-theme="vrtnws"] .hero-link {
  display: block;
  position: relative;
  min-height: 400px;
  background: var(--surface);
}

[data-theme="vrtnws"] .hero-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  pointer-events: none;
}

[data-theme="vrtnws"] .hero-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: white;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  z-index: 2;
}

[data-theme="vrtnws"] .hero-title {
  position: absolute;
  bottom: 60px;
  left: 20px;
  right: 20px;
  color: #ffffff;
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  z-index: 2;
}

[data-theme="vrtnws"] .hero-deck {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  z-index: 2;
}

[data-theme="vrtnws"] .hero-time {
  display: none;
}

/* News sections */
[data-theme="vrtnws"] .news-section {
  margin-bottom: var(--space-8);
}

[data-theme="vrtnws"] .news-section-title {
  font-size: var(--text-lg);
  font-weight: 700;
  padding-left: 12px;
  border-left: 4px solid var(--accent);
  margin-bottom: var(--space-4);
}

[data-theme="vrtnws"] .news-section-more {
  font-size: var(--text-sm);
  color: var(--accent);
}

/* News items — clean list */
[data-theme="vrtnws"] .news-item {
  border-bottom: 1px solid var(--border);
}

[data-theme="vrtnws"] .news-item a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

[data-theme="vrtnws"] .news-item a:hover {
  background: var(--surface);
  padding-left: 12px;
  margin-left: -12px;
  padding-right: 12px;
  border-radius: var(--radius-sm);
}

[data-theme="vrtnws"] .news-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

[data-theme="vrtnws"] .news-title {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
}

[data-theme="vrtnws"] .news-excerpt {
  font-size: var(--text-base);
  color: var(--fg-2);
  line-height: 1.5;
}

[data-theme="vrtnws"] .news-time {
  font-size: var(--text-sm);
  color: var(--muted);
}

/* Feature section: card with subtle shadow */
[data-theme="vrtnws"] .feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: box-shadow 0.2s;
}

[data-theme="vrtnws"] .feature-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Type badge */
[data-theme="vrtnws"] .type-badge {
  background: var(--accent);
  color: white;
  padding: 3px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 2px;
  text-transform: uppercase;
}

/* Footer */
[data-theme="vrtnws"] .site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
