/* ============================================
   JumpInPitt — Blog Styles
   ============================================ */

/* ============ BLOG INDEX ============ */
.blog-hero {
  padding: 140px 0 48px;
  text-align: center;
}
.blog-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.blog-hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.blog-hero-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  padding: 32px 0 80px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.blog-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.blog-card-body {
  padding: 24px;
}
.blog-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-3);
}
.blog-card-date { font-weight: 600; }
.blog-card-read {
  color: var(--gold);
  font-weight: 700;
  transition: opacity 0.2s;
}
.blog-card:hover .blog-card-read { opacity: 0.8; }

/* ============ BLOG POST ============ */
.post-hero {
  padding: 140px 0 40px;
  max-width: 760px;
  margin: 0 auto;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-3);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.post-back:hover { color: var(--gold); }

.post-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 12px;
}
.post-hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-3);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.post-meta-author { font-weight: 600; color: var(--text-2); }

.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}
.post-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.post-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 10px;
}
.post-content p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.post-content li {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 8px;
}
.post-content strong {
  color: var(--text);
  font-weight: 600;
}
.post-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-content a:hover { opacity: 0.8; }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-content blockquote p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text);
}

/* CTA box inside posts */
.post-cta {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.post-cta h3 {
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 8px;
}
.post-cta p {
  font-size: 14px;
  margin-bottom: 16px;
}
.post-cta .btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}
.post-cta .btn:hover {
  box-shadow: 0 0 24px var(--gold-glow-strong);
  transform: translateY(-1px);
  opacity: 1;
}

/* Share row */
.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.post-share-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
}
.post-share a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  transition: all 0.2s;
}
.post-share a:hover { border-color: var(--gold); color: var(--gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .blog-hero h1 { font-size: 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-hero h1 { font-size: 26px; }
  .post-hero { padding: 120px 28px 32px; }
  .post-content { padding: 32px 28px 64px; }
  .post-content h2 { font-size: 20px; }
}
