/* Dispatch components */

.dispatches {
  display: inherit;
  flex-direction: inherit;
  align-items: inherit;
  gap: 1rem;
  width: 50vw;
  max-width: 720px;
}

.post-list { 
  list-style: none; 
  padding: 0; 
  margin: 0;
}

.post {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
.post:first-child { border-top: none; }
.post-title { opacity: 1; }
.post time { opacity: 0.7; margin-left: 16px; white-space: nowrap; }

/* Article */
article {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  max-width: 720px;
}
article header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
article header h1 { margin: 0 0 8px 0; }
article header time { opacity: 0.7; }
article .article-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}
article .article-content p { margin: 0; }

@media screen and (max-width: 768px) {
  .dispatches {
    width: unset;
    max-width: unset;
  }
}
