/* ============ CONTACT PAGE SPECIFIC ============ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-form-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 50px);
}

.contact-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}
