.create-event-panel {
  margin: 28px 0;
  padding: clamp(28px, 5vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 40px;
  align-items: start;
  border: 1px solid var(--line);
  border-top: 6px solid #8f1f25;
  background: rgba(255, 252, 245, .96);
  box-shadow: var(--shadow);
}

.create-event-copy h2 {
  margin: 8px 0 16px;
  max-width: 580px;
  font-size: clamp(2.1rem, 4.5vw, 4.1rem);
  font-weight: 500;
  line-height: 1.02;
}

.create-event-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.68;
}

.create-event-copy > a {
  display: inline-block;
  margin-top: 8px;
  color: #7d171d;
  font-weight: 800;
}

.create-event-form {
  padding: 25px;
  display: grid;
  gap: 17px;
  border: 1px solid var(--line);
  background: #fffaf0;
}

.create-event-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.create-event-form label small {
  color: var(--muted);
  font-weight: 500;
}

.create-event-form input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: inherit;
}

.create-event-form input:focus {
  outline: 2px solid rgba(143, 31, 37, .25);
  border-color: #8f1f25;
}

.create-event-form button {
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid #7d171d;
  background: #8f1f25;
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.create-event-form button:hover,
.create-event-form button:focus-visible { background: #71171c; }
.create-event-form button:disabled { cursor: wait; opacity: .62; }

.create-event-security {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.create-event-form .form-status { margin: 0; min-height: 1.4em; }
.create-event-form .form-status.error { color: #8f1f25; }
.create-event-form .form-status.success { color: #2f6c4c; }

@media (max-width: 820px) {
  .create-event-panel { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  .create-event-panel { padding: 24px 20px; }
  .create-event-form { padding: 20px 16px; }
}
