/* MAIN: #29322e  #364037 #96b298 #bbd8bd #fafafa */
/* ACCENT: #312315 #65472c | #986c43 | #be8753 #ffb56f */

.post-background {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-image: url('/img/bg_fallbacks/single-page-fallback.webp');
  background-size: cover;
  background-position: center;

  z-index: -999;
}

.post-divider {
  margin-bottom: 60vh;
}

.post-divider-gallery {
  margin-bottom: 100vh;
}

.post-container {
  display: flex;
  position: relative;
  flex-direction: column;
  max-width: 100rem;
  margin: 10vh auto;
  margin-left: 5vw;
  background-color: #29322e;
  color: #fafafa;
  padding: 4rem 8rem;
}

.post-header {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.post-line-divider {
  margin: 3rem 0;
  border-color: #986c43;
}

.post-meta {
  font-size: 1.4rem;
  color: #ffb56f;
}

.post-header a:link,
.post-header a:visited {
  color: #fafafa;
  text-decoration: none;
  transition: all 200ms;
}

.post-header a:hover,
.post-header a:active {
  color: #ffb56f;
  text-decoration: underline solid #ffb56f;
}

.post-title {
  font-size: 6.2rem;
}

.post-subtitle {
  font-size: 2rem;
  color: #ddd;
}

.post-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 1.8rem;
  margin-top: 6rem;
}

.post-footer {
  margin-top: 10rem;
}

.post-related {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  justify-content: space-around;
}

.post-related-title {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
  font-size: 3.6rem;
  color: #bbd8bd;
}

.article-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 50rem;
  font-size: 1.8rem;
  gap: 1rem;
  border: 0.1rem solid #96b298;
  background-color: #fafafa;
  color: #0a0a0a;
  padding: 1rem;
  transition: 200ms;
}

.article-card:hover {
  transform: scale(1.02);
}

.article-post-image {
  width: 100%;
  height: 25rem;
  background-image: url('/img/bg_fallbacks/homepage-article-fallback.webp');
  background-position: center;
  background-size: cover;
  justify-self: center;
  align-self: center;
}

.article-post-date {
  display: block;
  font-size: 1.4rem;
  margin-top: auto;
  color: #29322e;
  align-self: flex-end;
  justify-self: flex-end;
}

.article-post-title {
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
}

.article-card a:link,
.article-card a:visited {
  color: #29322e;
  text-decoration: none;
  transition: all 200ms;
}
.article-card a:hover,
.article-card a:active {
  color: #5f7760;
  text-decoration: underline solid #5f7760;
}
