/* =========================================================================
   SINGLE.CSS — Single blog post template
   (CTA band uses shared component.css styles.)
   ========================================================================= */

/* ---- Post header ------------------------------------------------------ */
.post-hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  padding: clamp(56px, 7vw, 92px) 0 clamp(48px, 6vw, 72px);
}

.post-hero-inner {
  max-width: 820px;
  text-align: center;
}

.post-hero-cat {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.post-hero-cat:hover {
  color: var(--gold-light);
}

.post-hero-title {
  color: #fff;
  margin-bottom: 18px;
}

.post-hero-meta {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 12px;
  justify-content: center;
}

.post-hero-sep {
  opacity: 0.5;
}

/* ---- Post body -------------------------------------------------------- */
.socal-article {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.single-inner {
  max-width: 780px;
}

.post-feature {
  margin: 0 0 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-feature img {
  width: 100%;
  height: auto;
  display: block;
}

/* Prose */
.post-content {
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.8;
}

.post-content > * + * {
  margin-top: 1.25em;
}

.post-content h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  margin-top: 1.6em;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-top: 1.4em;
}

.post-content a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content ul,
.post-content ol {
  padding-left: 1.4em;
}

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.post-content li + li {
  margin-top: 0.5em;
}

.post-content img {
  border-radius: var(--radius);
}

.post-content blockquote {
  margin: 1.5em 0;
  padding: 6px 24px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-style: italic;
}

.post-page-links {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.post-footer {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
