/* KMT Contact (Shortcode) — scoped helpers */
.kmt-contact * {
  box-sizing: border-box;
}

.kmt-contact {
  color: #212529;
  line-height: 1.55;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --border: #dee2e6;
  --alt: #f8f9fa;
}

/* Sections and containers */
.kmt-contact .section { padding: 56px 0; }
.kmt-contact .hero { padding-top: 56px; }
.kmt-contact .alt {
  background: var(--alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kmt-contact .container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.kmt-contact .narrow {
  max-width: 860px;
  margin: 0 auto;
}

/* Typography */
.kmt-contact .center { text-align: center; }
.kmt-contact h1, .kmt-contact h2 { margin: 0 0 8px 0; }
.kmt-contact h1 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.kmt-contact h2 {
  font-size: 1.2rem;
  font-weight: 700;
}
.kmt-contact p { margin: 8px 0 0 0; }
.kmt-contact .lead { color: #45515a; }
.kmt-contact .muted { color: #6b7280; }
.kmt-contact .note { color: #6b7280; font-size: 0.9rem; margin-top: 6px; }

/* Card */
.kmt-contact .card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 20px;
}

/* Lists */
.kmt-contact ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.kmt-contact li { margin: 4px 0; }

/* Buttons */
.kmt-contact .actions.center {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.kmt-contact .btn {
  display: inline-block;
  background: #0b3a5b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
}
.kmt-contact .btn:hover { filter: brightness(1.05); }
.kmt-contact .btn-outline {
  background: #fff;
  color: #0b3a5b;
  border-color: #0b3a5b;
}
.kmt-contact .btn-outline:hover {
  background: #0b3a5b;
  color: #fff;
}
