.single-post-page {
  background-color: #f9fafb;
  min-height: 80vh;
}

.post-hero {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 3rem 1.5rem 2rem; /* Reduced bottom padding */
  text-align: center;
}

.post-hero-inner {
  max-width: 800px;
  margin: 0 auto; /* Removed bottom margin */
}

.post-meta-top {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.75rem; /* Slightly reduced */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.post-category {
  color: #bd134f;
}

.post-title {
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0; /* Removed bottom margin since inner wrapper handles spacing */
}

/* Removed .post-excerpt since it's no longer used */

/* Removed .post-thumbnail since it's no longer used */

.post-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem; /* Reduced top padding from 4rem to 2.5rem */
}

.entry-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
}

.entry-content p {
  margin-bottom: 1.5rem;
}

.entry-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.entry-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.entry-content ul, 
.entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content blockquote {
  border-left: 4px solid #bd134f;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #111827;
  font-size: 1.25rem;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

/* Post Navigation */
.post-navigation {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav-previous, 
.nav-next {
  display: flex;
  flex-direction: column;
}

.nav-next {
  text-align: right;
}

.nav-subtitle {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.nav-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  transition: color 0.2s;
}

.nav-previous a,
.nav-next a {
  text-decoration: none;
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title {
  color: #bd134f;
}

@media (max-width: 768px) {
  .post-title {
    font-size: 2rem;
  }
  
  .post-hero {
    padding: 3rem 1rem;
  }
  
  .post-content-wrapper {
    padding: 2rem 1rem;
  }
  
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .nav-next {
    text-align: left;
    margin-top: 1rem;
  }
}
