.explore-detail-post-header {
  text-align: center;
  margin-top: var(--space-8);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-3);
}

.explore-detail-post-header > h1 {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 600;
  background: linear-gradient(135deg, var(--text-light) 30%, var(--pink-primary) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.022em;
  max-width: 1200px;
  margin: 0 auto;
}

.explore-detail-post-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.explore-detail-post-content img {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: 100%;
  object-fit: cover;
}

.explore-detail-post-content p {
  font-size: 1.25rem;
  margin: 1rem auto;
}

@media (max-width: 480px) {
    .explore-detail-post-header h1 {
        font-size: 32px;
    }

    .explore-detail-post-content img {
      max-width: 100% !important;
      width: auto !important;
      height: auto !important;
    }
}