.blog-post {
  background: #fffcf2;
}
@media (min-width: 1201px) {
  .blog-post .container {
    max-width: 65%;
  }
}
.blog-post .blog-post-content-wrapper {
  background: #ffffff;
  border-top: 1px solid #c0bfbf;
}
.blog-post .blog-post-thumbnail {
  width: 85%;
  height: auto;
  margin-bottom: 24px;
  display: block;
  margin: 0 auto;
  transform: translateY(-150px);
}
.blog-post .blog-post-title {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.4;
  color: #252422;
  margin-bottom: 200px;
  margin-top: 1em;
  text-align: center;
}
@media (max-width: 1200px) {
  .blog-post .blog-post-title {
    font-size: clamp(32px, 4vw + 1rem, 64px);
  }
}
.blog-post .blog-post-content {
  padding-bottom: 1px;
  transform: translateY(-100px);
}
.blog-post .blog-post-content p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 1em;
  line-height: 1.5;
  color: #252422;
}
.blog-post .blog-post-content h2, .blog-post .blog-post-content h3, .blog-post .blog-post-content h4, .blog-post .blog-post-content h5, .blog-post .blog-post-content h6 {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 0.75em;
  margin-top: 1.25em;
  color: #252422;
}
.blog-post .blog-post-content h2 {
  font-size: 32px;
}

.post-navigation {
  background: #fffcf2;
  padding: 68px 0;
  border-top: 1px solid #c0bfbf;
}
@media (max-width: 1200px) {
  .post-navigation {
    padding: 2em 0;
  }
}
.post-navigation .post-nav-links {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 768px) {
  .post-navigation .post-nav-links {
    flex-direction: column;
    gap: 0;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .post-navigation .post-nav-links {
    gap: 0;
  }
}

.post-nav-link {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: inherit;
  padding: 24px;
  transition: background 0.3s ease;
  flex: 1;
  max-width: 45%;
  border-radius: 8px;
}
.post-nav-link:hover {
  background: rgba(37, 36, 34, 0.05);
}
@media (max-width: 768px) {
  .post-nav-link {
    max-width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .post-nav-link {
    max-width: 50%;
  }
}

.post-nav-prev {
  justify-content: flex-start;
}

.post-nav-next {
  margin-left: auto;
}
@media (max-width: 1200px) {
  .post-nav-next {
    margin-left: 0;
  }
}

.post-nav-thumbnail {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.post-nav-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-nav-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post-nav-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #953a2c;
}

.post-nav-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 500;
  color: #252422;
  line-height: 1.3;
}
