/* ==========================================================================
   Support page — styles for patterns not covered by site.9aedc938.css or the shared
   .page-hero pattern (see site.9aedc938.css).
   Reuses .hero / .hero__bg / .hero__blob / .section / .section--alt /
   .section__header / .section__title as a base; overrides/extends below
   are sourced from _crawl/support.html (values differ slightly from the
   home page's hero/section rhythm — kept exact per SPEC fidelity rule).
   ========================================================================== */

/* ---- Contact card (Email Support) ---- */
.contact-grid {
  max-width: 48rem;
  margin-inline: auto;
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(0, 128, 128, 0.15);
}

.contact-card__icon-tile {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  background: var(--teal-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-card__icon-tile {
  transform: scale(1.1);
}

.contact-card__icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--teal);
}

.contact-card__title {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card__body {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.contact-card__email {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  background: #f9fafb;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.contact-card__email:hover {
  background: var(--teal-tint);
}

.contact-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: box-shadow 0.2s ease;
}

.contact-card__btn:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.contact-card__btn svg {
  width: 1rem;
  height: 1rem;
}

/* ---- Info cards strip (Response Time / Languages / Privacy) ---- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Three across only from 1024px. These cards are icon-beside-text, so a full
   width single column reads fine on tablets — three narrow columns at 640px
   squeezed them to ~170px wide and 584px tall. */
@media (min-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}

.info-card__icon-tile {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--teal-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card__icon-tile svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--teal);
}

.info-card__title {
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-card__body {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ---- Troubleshooting steps (section 2) ---- */
.support-subheading {
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  max-width: 44rem;
  margin: 0 auto 1rem;
}

.support-steps + .support-subheading {
  margin-top: 2.5rem;
}

.support-steps {
  list-style: disc;
  padding-left: 1.25rem;
  max-width: 44rem;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.support-steps li + li {
  margin-top: 0.75rem;
}

/* The three info cards follow the email card inside one section. */
.contact-grid + .info-grid {
  margin-top: 3rem;
}
