.single-post-content {
  color: var(--color-white);
}

.single-post-content h2 {
  font-size: var(--text-2xl);
  font-weight: 300;
  text-transform: uppercase;
  font-family: var(--font-montserrat);
}

.single-post-content p {
  margin-top: 16px;
}

.single-post-content .plain-content h2 {
  margin-top: 16px;
}

.single-post-content .featured-image::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  max-height: 680px;
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 1372px;
  background: rgba(147, 75, 13, 0.6);
  filter: blur(152px);
}

@media only screen and (min-width: 768px) {
  .single-post-content .featured-image::after {
    bottom: -30%;
  }
}

@media only screen and (min-width: 1024px) {
  .single-post-content {
    font-size: var(--text-xl);
  }

  .single-post-content h2 {
    font-size: var(--text-4xl);
  }

  .single-post-content p {
    margin-top: 32px;
  }

  .single-post-content .plain-content h2 {
    margin-top: 32px;
  }
}
