/* =========================================================
   COMPASS Blog Post Styles
   ========================================================= */

.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}

.post-head {
  text-align: center;
  padding-bottom: 50px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.post-head::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -1px;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--gold);
}
.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 0.25em;
}
.post-meta .date {
  font-family: var(--font-en); font-style: italic;
  color: var(--text-muted);
}
.post-meta .cat {
  background: var(--ivory);
  color: var(--navy);
  padding: 6px 16px;
  border-left: 2px solid var(--gold);
  font-weight: 500;
}
.post-head h1 {
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin-bottom: 24px;
}
.post-head .lead {
  color: var(--gold);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  max-width: 540px;
  margin: 0 auto;
  font-style: italic;
}

.post-body {
  font-size: 15.5px;
  line-height: 2.3;
  color: var(--text);
}
.post-body p {
  margin-bottom: 28px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.post-body strong {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding: 0 2px;
}
.post-body h2 {
  color: var(--navy);
  font-size: 20px;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin: 56px 0 28px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  line-height: 1.7;
}
.post-body h3 {
  color: var(--navy);
  font-size: 16px;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin: 40px 0 18px;
}
.post-body blockquote.quote {
  margin: 40px 0;
  padding: 26px 32px;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.05em;
  position: relative;
}
.post-body blockquote.quote::before {
  content: "“";
  position: absolute;
  left: 14px; top: -8px;
  font-family: var(--font-en);
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
}
.post-body ul, .post-body ol {
  margin: 20px 0 28px 24px;
  line-height: 2.1;
}
.post-body li { margin-bottom: 6px; }
.post-body ul li { list-style: none; position: relative; padding-left: 18px; }
.post-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 1em;
  width: 8px; height: 1px;
  background: var(--gold);
}

.post-body .book-list {
  margin: 28px 0;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--border);
}
.post-body .book-list h4 {
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
}
.post-body .book-list ul { margin: 0; }
.post-body .book-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
}

.post-foot {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (max-width: 768px) {
  .post { padding: 60px 20px 30px; }
  .post-body { font-size: 14.5px; line-height: 2.1; }
  .post-body blockquote.quote { padding: 20px 24px; font-size: 14.5px; }
  .post-body h2 { font-size: 17px; margin: 40px 0 20px; }
}
