.contact-content {
  display: grid;
  gap: 18px;
}

.contact-card,
.contact-grid article,
.contact-note {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  justify-items: start;
}

.contact-email {
  display: inline-flex;
  margin-top: 8px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  padding: 12px 14px;
  color: var(--accent-strong);
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-info-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.contact-info-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.contact-info-list section,
.faq-list section {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.contact-info-list h3,
.faq-list h3 {
  margin-bottom: 4px;
}

.contact-info-list a,
.faq-list a,
.contact-note a {
  color: var(--accent-strong);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-content p,
.contact-note li {
  color: var(--muted);
}
