/* ===== NEWSROOM PAGE ===== */

/* HERO */
.newsroom-hero {
  padding: calc(var(--space-20) + 80px) 0 var(--space-16);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.newsroom-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.newsroom-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.newsroom-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* FEATURED ANNOUNCEMENT */
.newsroom-featured {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.featured-card {
  display: flex;
  gap: var(--space-8);
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.featured-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

/* Date block — accent-colored date stamp */
.featured-date-block {
  flex-shrink: 0;
  width: 90px;
  height: 100px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.featured-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.featured-month {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.featured-year {
  font-size: var(--text-xs);
  font-weight: 500;
  opacity: 0.8;
}

/* Content */
.featured-content {
  flex: 1;
  min-width: 0;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.featured-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.featured-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

.featured-platform svg {
  opacity: 0.7;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.featured-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.featured-excerpt + .featured-read-more {
  margin-top: var(--space-4);
}

.featured-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  margin-top: var(--space-4);
  transition: gap 0.2s ease;
}

.featured-card:hover .featured-read-more {
  gap: var(--space-3);
}

/* INSIGHTS LIST */
.newsroom-insights {
  padding: var(--space-16) 0 var(--space-20);
  background: var(--color-surface);
}

.newsroom-section-heading {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.insights-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.insight-row {
  display: flex;
  gap: var(--space-8);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
}

.insight-row:first-child {
  padding-top: 0;
}

.insight-row:last-child {
  border-bottom: none;
}

/* Date column */
.insight-date-block {
  flex-shrink: 0;
  width: 90px;
  padding-top: var(--space-1);
}

.insight-month-year {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  text-transform: uppercase;
}

/* Content */
.insight-content {
  flex: 1;
  min-width: 0;
}

.insight-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.insight-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.insight-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .newsroom-hero {
    padding: calc(var(--space-16) + 80px) 0 var(--space-10);
  }

  .featured-card {
    flex-direction: column;
    gap: var(--space-5);
    padding: var(--space-6);
  }

  .featured-date-block {
    width: auto;
    height: auto;
    flex-direction: row;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    align-self: flex-start;
  }

  .featured-day {
    font-size: var(--text-base);
  }

  .featured-month,
  .featured-year {
    font-size: 0.65rem;
  }

  .insight-row {
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-6) 0;
  }

  .insight-date-block {
    width: auto;
  }
}
