/**
 * Post.
 *
 * Styles for 'Updates' posts.
 */
.post {
}
.post-title {
  font-weight: 700;
}
.post a {
  color: inherit;
  text-decoration: underline;
}
.post a:active,
.post a:focus,
.post a:hover {
  color: var(--color-button-secondary-background);
}
.post-summary {
  color: var(--color-button-secondary-background);
  font-size: 112.5%;
  line-height: 1.2;
}

/**
 * Mini post.
 */
.post-mini {
  margin-bottom: 1em;
}
.post-mini a {
  border-radius: var(--border-radius);
  color: inherit;
  display: block;
  padding: .5em;
  margin-left: -.5em;
  margin-right: -.5em;
  text-decoration: none;

  &:active,
  &:focus,
  &:hover {
    background-color: #dce4e7;
    color: inherit;
  }
}
.post-mini .post-title {
  font-size: 150%;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.post-mini .post-summary {
  margin-bottom: .75rem;
}
.post-mini .post-excerpt {
  margin-bottom: 0;
}
.post-mini .read-more {
  color: var(--color-button-secondary-background);
  text-decoration: underline;
}

/**
 * Macro post.
 */
.post-macro .post-title {
  font-size: 225%;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.post-macro .post-summary {
  margin-bottom: 2rem;
}
.post-macro .post-footer {
  margin-top: 2rem;
}
