/* ── GUIDES PAGE ─────────────────────────────────────────────────────────────── */

/* FEATURED GUIDE BANNER */
.guide-featured-wrap {
  margin-bottom: 40px;
}
.guide-featured-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  gap: 40px;
  align-items: center;
  transition: border-color .2s;
}
.guide-featured-card:hover { border-color: var(--border-y); }

.gf-icon {
  width: 100px; height: 100px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a0533, #0a2440);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  flex-shrink: 0;
}
.gf-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.gf-body { flex: 1; min-width: 0; }
.gf-meta { display: flex; gap: 8px; margin-bottom: 12px; }
.gf-title {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.gf-excerpt {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gf-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gf-author { font-size: 12px; color: var(--text-muted); }

/* GUIDES GRID — card layout */
.guides-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.guide-pg-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all .2s;
}
.guide-pg-card:hover {
  border-color: var(--border-y);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.guide-pg-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a0533, #0a2440);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.guide-pg-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.guide-pg-body { flex: 1; min-width: 0; }
.guide-pg-title {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.guide-pg-meta {
  font-size: 11px;
  color: var(--text-dim);
}
.guide-pg-arrow {
  font-size: 20px;
  color: var(--text-dim);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .guide-featured-card { flex-direction: column; }
  .gf-icon { width: 64px; height: 64px; font-size: 28px; }
}
