
/* Sidebar list styling moved from inline styles so list blocks round-trip in the editor. */
.sidebar-box .list-cta{margin-top:6px}
.sidebar-box .list-cta a{font-size:.85rem;color:var(--col-blue)}
.sidebar-box .workshop-list li{font-size:.88rem;color:var(--muted);margin-bottom:6px}
.sidebar-box .workshop-list strong{color:var(--text)}

/* ============================================================
   Contact form — native markup (assets/js/hs-native-form.js posts it to
   HubSpot). Styled to match the site's dark form design; the blue submit
   button comes from the global .btn/.btn-primary. Loaded on the contact
   page only, so these generic selectors can't collide elsewhere.
   ============================================================ */
.contact-form { width: 100%; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .form-field { display: grid; gap: 6px; margin-bottom: 18px; }
.contact-form .form-field label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 11px 14px;
  font-family: var(--sans); font-size: .93rem; color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder { color: var(--dim); }
.contact-form .form-field textarea { min-height: 120px; resize: vertical; }
.contact-form .form-field select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 34px;
}
.contact-form .form-field select option { background: var(--bg); color: var(--text); }
.contact-form button[type="submit"] { margin-top: 6px; }
.contact-form .form-privacy { margin-top: 14px; font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* Submission states (shared class names with the landing form). */
.hs-native-success {
  background: rgba(132,195,66,.1); border: 1px solid rgba(132,195,66,.35);
  border-radius: var(--r-lg); padding: 22px 24px; color: var(--text); line-height: 1.6;
}
.hs-native-success p { margin: 0; }
.hs-native-error { margin-top: 12px; color: #ff9d9d; font-size: .85rem; }

@media (max-width: 640px) {
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
}
