/* ============================================
   TITANTOP ROOFING — BLOG POST STYLES
   ============================================ */

.post-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
}
.post-hero__blobs { position: absolute; inset: 0; pointer-events: none; }
.post-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.post-hero__breadcrumb a { color: var(--acid); transition: opacity 0.2s; }
.post-hero__breadcrumb a:hover { opacity: 0.7; }
.post-hero__category {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--acid);
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(223,225,4,0.1);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  border: 1px solid rgba(223,225,4,0.3);
}
.post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  max-width: 900px;
  margin-bottom: 3rem;
}
.post-hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-hero__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.post-hero__avatar {
  width: 48px; height: 48px;
  background: var(--indigo-dim);
  border: 1px solid var(--indigo-glow);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--indigo-glow);
  flex-shrink: 0;
}
.post-hero__author-name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.post-hero__author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.post-hero__stats {
  display: flex;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ── POST BODY ── */
.post-body-section {
  background: var(--bg-0);
  padding: 5rem 0 7rem;
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

.post-article {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
}
.post-article__lead {
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1.75;
  padding: 2rem;
  border-left: 3px solid var(--acid);
  background: rgba(223,225,4,0.04);
  border-radius: 0 4px 4px 0;
  margin-bottom: 2.5rem;
}
.post-article p {
  margin-bottom: 1.5rem;
}
.post-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 3rem 0 1.5rem;
  line-height: 1;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.post-article h3 {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--acid);
  margin: 2.5rem 0 0.8rem;
  text-transform: uppercase;
}

/* Callout Box */
.post-callout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem;
  background: rgba(79,70,229,0.1);
  border: 1px solid var(--indigo-glow);
  border-radius: 4px;
  margin: 2rem 0;
}
.post-callout__icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.post-callout__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--indigo-glow);
  margin-bottom: 0.5rem;
}
.post-callout p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* Steps */
.post-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.post-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  transition: all 0.25s ease;
}
.post-step:hover {
  border-color: var(--acid);
  background: rgba(223,225,4,0.03);
}
.post-step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--acid);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.post-step__content h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.post-step__content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* CTA Box */
.post-cta-box {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(223,225,4,0.06));
  border: 1px solid var(--acid);
  border-radius: 4px;
  margin-top: 3rem;
}
.post-cta-box__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}
.post-cta-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.post-cta-box p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* SIDEBAR */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6rem;
}

@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .post-sidebar { position: static; }
}
@media (max-width: 640px) {
  .post-hero { padding: 8rem 0 3rem; }
  .post-hero__title { font-size: 2.2rem; }
  .post-hero__meta { flex-direction: column; gap: 1.5rem; }
  .post-callout { flex-direction: column; gap: 1rem; }
}

