/* ============================================
   guide-index.css — Guides Hub Page Styles
   ============================================ */

:root {
  --text-primary: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-soft: #f8fafc;
  --bg-white: #ffffff;
  --brand: #2563eb;
  --brand-hover: #1d4ed8;
  --brand-light: #3b82f6;
  --border: #e2e8f0;
}

/* ── HERO ── */
.guides-hero {
  background: linear-gradient(135deg, #0d2f4e 0%, #163d61 50%, #1a4a73 100%);
  padding: 80px 5% 72px;
  text-align: center;
}
.guides-hero-inner { max-width: 720px; margin: 0 auto; }
.guides-hero .hero-eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-light, #3b82f6);
  margin-bottom: 16px;
}
.guides-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.guides-hero .hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.guides-hero .hero-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.guides-hero .btn-primary,
.guides-hero .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.guides-hero .btn-primary {
  background: var(--brand, #2563eb);
  color: #ffffff;
}
.guides-hero .btn-primary:hover { background: var(--brand-hover, #1d4ed8); }
.guides-hero .btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
}
.guides-hero .btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #ffffff;
}

/* ── GUIDE CARDS SECTION ── */
.guide-cards-section {
  background: var(--bg-soft, #f8fafc);
  padding: 60px 5%;
}
.guide-cards-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.guide-card {
  background: var(--bg-white, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.guide-card:hover {
  box-shadow: 0 8px 28px rgba(15,23,42,0.08);
  transform: translateY(-2px);
}
.guide-service-tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand, #2563eb);
  background: rgba(37,99,235,0.08);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.guide-card h2 {
  margin: 0 0 8px;
}
.guide-card h2 a {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary, #0f172a);
  text-decoration: none;
  transition: color 0.2s;
}
.guide-card h2 a:hover { color: var(--brand, #2563eb); }
.guide-card p {
  font-size: 0.92rem;
  color: var(--text-body, #334155);
  line-height: 1.6;
  margin: 0 0 14px;
}
.guide-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.guide-card-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--text-muted, #64748b);
}
.guide-card-meta .meta-item .material-symbols-outlined {
  font-size: 0.95rem;
}
.guide-read-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand, #2563eb);
  text-decoration: none;
  transition: gap 0.2s;
}
.guide-read-link:hover { gap: 8px; }
.guide-read-link .material-symbols-outlined {
  font-size: 1rem;
}

/* ── CTA ── */
.guides-cta {
  background: #0d2f4e;
  padding: 64px 5%;
  text-align: center;
}
.guides-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.guides-cta h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}
.guides-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0 0 24px;
}
.guides-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand, #2563eb);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.guides-cta .btn-primary:hover { background: var(--brand-hover, #1d4ed8); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .guides-hero { padding: 56px 5% 48px; }
  .guides-hero h1 { font-size: 1.8rem; }
  .guides-hero .hero-desc { font-size: 0.95rem; }
  .guide-cards-section { padding: 40px 5%; }
  .guide-card { padding: 24px; }
  .guide-card h2 a { font-size: 1.05rem; }
}
@media (max-width: 480px) {
  .guides-hero { padding: 40px 5% 36px; }
  .guides-hero h1 { font-size: 1.4rem; }
  .guides-hero .hero-cta-row { flex-direction: column; align-items: center; }
  .guides-hero .btn-primary,
  .guides-hero .btn-outline { width: 100%; justify-content: center; }
  .guide-card { padding: 20px; }
  .guides-cta { padding: 44px 5%; }
  .guides-cta h2 { font-size: 1.3rem; }
}
