/* ============================================
   Contact Page Styles
   ============================================ */

.contact-header {
  text-align: center;
  padding: 5rem 1.5rem 2rem;
}

.contact-header p {
  max-width: 500px;
  margin: 0.5rem auto 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
}

.contact-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--colour-text-muted);
  margin-bottom: 0;
}
