/* ============================================
   RJP HOSPITALITY — BLOG POST STYLESHEET
   Shared styling for all individual blog posts.
   ============================================ */

.post-header {
  padding: 180px 56px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.post-cat {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 32px;
}

.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}

.post-title em { font-style: italic; color: var(--olive); }

.post-meta {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

.post-hero-image {
  max-width: 1200px;
  margin: 0 auto 80px;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 140px;
}

.post-body p,
.post-body h2,
.post-body h3,
.post-body blockquote,
.post-body ul {
  margin-bottom: 28px;
}

.post-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 300;
}

.post-body p.lead {
  font-size: 26px;
  color: var(--olive-deep);
  font-style: italic;
  margin-bottom: 40px;
}

.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.15;
  margin-top: 48px;
  color: var(--ink);
}

.post-body h2 em { font-style: italic; color: var(--olive); }

.post-body blockquote {
  border-left: 2px solid var(--olive);
  padding-left: 32px;
  margin: 48px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--olive-deep);
  line-height: 1.4;
}

.post-body ul {
  list-style: none;
  padding-left: 0;
}

.post-body ul li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 16px;
}

.post-body ul li::before {
  content: '—';
  color: var(--taupe);
  flex-shrink: 0;
}

.post-sig {
  margin-top: 60px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--taupe);
}

.post-back {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 60px;
  text-align: center;
}

.post-back a {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  text-decoration: none;
}

.post-back a:hover { color: var(--ink); }

@media (max-width: 880px) {
  .post-header { padding: 130px 24px 40px; }
  .post-hero-image { margin-bottom: 40px; }
  .post-body { padding: 0 24px 80px; }
  .post-body p { font-size: 19px; }
  .post-body h2 { font-size: 30px; }
  .post-body blockquote { font-size: 22px; padding-left: 20px; }
  .post-body ul li { font-size: 19px; }
}
