/* ── BLOG SHARED STYLES ─────────────────────────────────────────────────── */

.blog-hero {
  background: linear-gradient(135deg, var(--black) 0%, #0f0f0f 60%, #120f05 100%);
  padding: 80px 24px 64px;
  text-align: center;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 800px;
  margin: 16px auto 20px;
}

.blog-hero .meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.blog-hero .meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-hero .meta .tag {
  background: rgba(212,160,18,0.12);
  border: 1px solid rgba(212,160,18,0.2);
  color: var(--gold);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.blog-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.blog-content h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin: 32px 0 12px;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #2e2e2e;
  margin-bottom: 20px;
}

.blog-content ul, .blog-content ol {
  margin: 0 0 20px 24px;
}

.blog-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #2e2e2e;
  margin-bottom: 8px;
}

.blog-content strong { color: var(--black); font-weight: 700; }

.blog-content .intro-box {
  background: linear-gradient(135deg, #0A0A0A, #1a1508);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 0 0 36px;
}

.blog-content .intro-box p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}

.blog-content .step-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  padding-left: 68px;
}

.blog-content .step-box .step-num {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.blog-content .step-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.blog-content .step-box p { font-size: 14px; margin: 0; color: #444; }

.blog-content .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-content .info-table th {
  background: var(--black);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
}

.blog-content .info-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: #2e2e2e;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.blog-content .info-table tr:last-child td { border-bottom: none; }
.blog-content .info-table tr:nth-child(even) td { background: #fafafa; }

.blog-content .warning-box {
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.blog-content .warning-box p {
  font-size: 14px;
  color: #92400e;
  margin: 0;
  line-height: 1.6;
}

.blog-content .tip-box {
  background: rgba(26,107,58,0.05);
  border: 1px solid rgba(26,107,58,0.2);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}

.blog-content .tip-box p {
  font-size: 14px;
  color: #14532d;
  margin: 0;
  line-height: 1.6;
}

/* ── APP CTA BLOCK ─────────────────────────────────────────────────────── */
.app-cta-block {
  background: linear-gradient(135deg, var(--black), #1a1405);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  margin: 48px 0;
  border: 1px solid rgba(212,160,18,0.2);
  text-align: center;
}

.app-cta-block .cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.app-cta-block h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.app-cta-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.6;
}

.app-cta-block .cta-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.app-cta-block .cta-feature {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-cta-block .cta-feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ── BLOG INDEX ────────────────────────────────────────────────────────── */
.blog-index {
  padding: 72px 24px 96px;
  background: var(--warm);
}

.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--black), #1a1405);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}

.blog-card-img .card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(212,160,18,0.12);
  border: 1px solid rgba(212,160,18,0.2);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.blog-card-body .read-more { font-size: 13px; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 4px; }
.blog-card-body .read-more:hover { gap: 8px; }

.blog-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.blog-sidebar h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
}

.related-post {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.related-post:last-child { border-bottom: none; padding-bottom: 0; }
.related-post-icon { font-size: 20px; flex-shrink: 0; }
.related-post-title { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.4; }
.related-post-title:hover { color: var(--gold); }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
