/* RuntimeAI industry news / signals page */

.rai-news-page {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto 3rem;
  padding: 0 1.25rem 2rem;
  box-sizing: border-box;
}

.rai-news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
}

.rai-news-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--v-border, #e2e8f0) 90%, transparent);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-muted, var(--v-muted));
  text-decoration: none;
  background: transparent;
}

.rai-news-chip:hover {
  color: var(--v-brand-teal, #1375d9);
  border-color: color-mix(in srgb, var(--v-brand-teal, #1375d9) 40%, transparent);
}

.rai-news-chip.is-active {
  color: #fff;
  background: var(--v-brand-teal, #1375d9);
  border-color: var(--v-brand-teal, #1375d9);
}

.rai-news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rai-news-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--v-border, #e2e8f0) 85%, transparent);
  text-align: left;
}

.rai-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rai-news-item__meta {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--lp-muted, var(--v-muted));
}

.rai-news-item__title {
  margin: 0 0 0.55rem;
  font-family: Spectral, Georgia, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.rai-news-item__title-link {
  color: var(--lp-heading, var(--v-ink));
  text-decoration: none;
}

.rai-news-item__title-link:hover {
  color: var(--v-brand-teal, #1375d9);
  text-decoration: underline;
}

.rai-news-item__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  padding: 0;
}

.rai-news-item__tags li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--v-brand-teal, #1375d9);
  opacity: 0.9;
}

.rai-news-item__summary {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--lp-muted, var(--v-muted));
}

.rai-news-item__why {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--lp-heading, var(--v-ink));
}

.rai-news-item__why-label {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--v-brand-teal, #1375d9);
}

.rai-news-empty {
  margin: 0;
  font-size: 0.98rem;
  color: var(--lp-muted, var(--v-muted));
}

.rai-news-cta {
  margin: 2.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--v-border, #e2e8f0) 85%, transparent);
  font-size: 0.92rem;
  color: var(--lp-muted, var(--v-muted));
  text-align: center;
}

.rai-news-cta a {
  color: var(--v-brand-teal, #1375d9);
  font-weight: 600;
  text-decoration: none;
}

.rai-news-cta a:hover {
  text-decoration: underline;
}

body.landing-page[data-theme="dark"] .rai-news-item,
body.rai-models-page[data-theme="dark"] .rai-news-item {
  border-bottom-color: color-mix(in srgb, #334155 70%, transparent);
}
