/* News digest page styles */

.news__about {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  margin-bottom: var(--spacing-lg);
}

.news__date {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  margin-top: var(--spacing-xs);
}

.news-sections {
  width: 100%;
}

.news-section {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.news-section:first-child {
  border-top: 1px solid var(--color-gray-200);
}

.news-section--tech {
  border-bottom: none;
}

.news-section__heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: var(--spacing-sm);
}

.news-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.news-bullet {
  font-size: 0.9375rem;
  color: var(--color-foreground);
  line-height: 1.65;
  padding-left: 1rem;
  position: relative;
}

.news-bullet::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-gray-400);
}

.news-bullet__source {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  margin-left: 0.25rem;
  text-decoration: none;
}

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

.news-tech-link a {
  font-size: 0.9375rem;
  color: var(--color-foreground);
  text-decoration: none;
}

.news-tech-link a:hover {
  text-decoration: underline;
}

.news__updated {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  text-align: center;
  margin-top: var(--spacing-lg);
}

.news__empty {
  text-align: center;
  color: var(--color-gray-400);
  padding: var(--spacing-xl) 0;
}
