/**
 * @file
 * Node / article teaser and full display.
 */

.node {
  margin-bottom: 2rem;
}

.node__title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.node__title a {
  color: inherit;
}

.node__title a:hover {
  color: var(--accent);
}

.node__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.node__content {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.node__content p + p {
  margin-top: 1rem;
}

.node--teaser {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.node--teaser .node__title {
  font-size: 1.25rem;
}

.node--teaser .node__content {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
