/* ─────────────────────────────────────────
   support.css
   Styles for the Support page (/support/)
   ───────────────────────────────────────── */
.container-support {
  background-color: rgba(219,218,200,.3);
  margin-top: -15vmin;
}

/* Page wrapper */
.support-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Header */
.support-header {
  text-align: center;
  margin-bottom: 48px;
}

.support-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.support-subtitle {
    font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.8rem;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Grid ─── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ─── Card ─── */
.support-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  text-decoration: none;
  color: inherit;
}

/* Coloured accent bar at top of each card */
.support-card__accent {
  height: 5px;
  flex-shrink: 0;
}

/* Card body */
.support-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
  gap: 10px;
}

/* SVG icon */
.support-card__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 4px;
}

/* Card title */
.support-card__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #1a1a1a;
}

/* Card description */
.support-card__desc {
  font-size: 13.5px;
  color: #777;
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

/* CTA button */
.support-card__cta {
  display: inline-block;
  margin-top: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  align-self: flex-start;
  letter-spacing: 0.02em;
  transition: opacity 0.15s;
}

.support-card:hover .support-card__cta {
  opacity: 0.85;
}

/* ─── Tan card override ───
   bg-tan is a very light tint — swap to dark text + bordered button */
.support-card--tan .support-card__cta {
  background-color: transparent !important;
  color: rgba(55, 62, 82, 1);
  border: 1.5px solid rgba(55, 62, 82, 0.35);
}

.support-card--tan .support-card__cta:hover {
  opacity: 1;
  border-color: rgba(55, 62, 82, 0.7);
}

/* ─── Footer (body content from .md) ─── */
.support-footer {
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  color: #999;
}

/* ─── Responsive ─── */
@media (max-width: 720px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .support-subtitle {font-family: 1.2rem;}
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-page {
    padding: 40px 16px 60px;
  }
}
