/* File: /assets/css/pages/help-centre.css
   Uses tokens from /assets/css/layout/main.css (gold + glass) */

.rt-page-hero {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 221, 102, 0.18);
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.rt-page-hero-inner {
  max-width: 880px;
}

.rt-page-kicker {
  margin: 0 0 0.35rem;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.rt-page-slogan {
  color: var(--gold-light);
}

.rt-page-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 850;
  color: var(--text-strong);
}

.rt-page-subtitle {
  margin: 0.55rem 0 0;
  color: var(--text);
  line-height: 1.6;
  max-width: 680px;
}

.rt-page-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.rt-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.rt-page-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.rt-page-btn i {
  width: 18px;
  height: 18px;
}

.rt-page-btn-ghost {
  background: transparent;
  border: 1px solid rgba(245, 221, 102, 0.35);
  color: var(--gold-light);
}

.rt-page-btn-ghost:hover {
  background: rgba(245, 221, 102, 0.12);
  box-shadow: none;
}

.rt-page-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.rt-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 221, 102, 0.14);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.rt-card-wide {
  grid-column: 1 / -1;
}

.rt-card-head {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.rt-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(245, 221, 102, 0.12);
  border: 1px solid rgba(245, 221, 102, 0.22);
  flex: 0 0 auto;
}

.rt-card-icon i {
  width: 22px;
  height: 22px;
  color: var(--gold-light);
}

.rt-card-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--text-strong);
}

.rt-card-subtitle {
  margin: 0.15rem 0 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.rt-card-body {
  margin-top: 0.9rem;
}

.rt-kv {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.rt-kv span:first-child {
  color: var(--text-dim);
}

.rt-link {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 800;
}

.rt-link:hover {
  text-shadow: 0 0 6px rgba(245, 221, 102, 0.45);
}

.rt-divider {
  height: 1px;
  background: rgba(245, 221, 102, 0.12);
  margin: 0.85rem 0;
}

.rt-muted {
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

.rt-faq {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.7rem;
}

.rt-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  color: var(--text-strong);
  font-weight: 850;
}

.rt-faq-q i {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  transition: transform 0.2s ease;
}

.rt-faq[open] .rt-faq-q i {
  transform: rotate(180deg);
}

.rt-faq-a {
  margin-top: 0.6rem;
  color: var(--text);
  line-height: 1.6;
}

.rt-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.rt-link-tile {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 221, 102, 0.12);
  text-decoration: none;
  transition: 0.2s ease;
}

.rt-link-tile:hover {
  border-color: rgba(245, 221, 102, 0.28);
  background: rgba(245, 221, 102, 0.08);
  transform: translateY(-1px);
}

.rt-link-tile i {
  width: 22px;
  height: 22px;
  color: var(--gold-light);
}

.rt-link-tile-title {
  color: var(--text-strong);
  font-weight: 900;
}

.rt-link-tile-sub {
  color: var(--text-dim);
  font-size: 0.93rem;
  margin-top: 0.12rem;
}

@media (min-width: 821px) {
  .rt-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rt-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rt-page-title {
    font-size: 2.3rem;
  }
}
