/**
 * @file
 * Visual styles for nodes.
 */

.node__meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--gray-700);
  font-family: var(--font-sans-serif);
  font-size: 0.875rem;
}
.node__author-image img {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  object-fit: cover;
  border-radius: 50%;
}
.node__links {
  text-align: right;
}

.node--view-mode-teaser {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gray-500);
}
.node--view-mode-teaser .node__title {
  margin-bottom: 1rem;
}
.node--view-mode-teaser .node__title a {
  color: var(--heading-color);
  text-decoration: none;
}

.node--unpublished {
  background-color: #fff4f4;
}
