.acw-editor-placeholder {
  border: 2px dashed #ef4136;
  padding: 24px;
  font-family: "IBM Plex Mono", monospace;
  background: #f6f2ef;
}
.acw-editor-placeholder strong { font-size: 20px; }

.acw-events-explorer,
.acw-host-flow,
.acw-tools-coming-soon,
.acw-host-preview {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  width: 100%;
  max-width: none;
}

/* Calendar toolbar */
.acw-events-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  gap: 1rem;
  align-items: end;
  margin: 0 0 1.5rem;
}
.acw-event-search input,
.acw-event-sort select {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #231f20;
  border-radius: 0;
  background: #fff;
  padding: .82rem .95rem;
  font: inherit;
}
.acw-event-sort {
  display: grid;
  gap: .35rem;
  min-width: 180px;
}
.acw-event-sort > span {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.acw-add-event-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .72rem 1rem;
  background: #000;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  transform: rotate(-1deg);
  white-space: nowrap;
}
.acw-add-event-button:hover { background: #ef4136; }

/* Calendar layout */
.acw-events-layout {
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  gap: clamp(1.5rem, 2.6vw, 3rem);
  align-items: start;
}
.acw-event-filters {
  position: static;
  border-top: 8px solid #ef4136;
  background: #f5f1ee;
  padding: 1.15rem 1.2rem 1.35rem;
  overflow: visible;
  max-height: none;
}
.acw-filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.15rem;
  margin-bottom: .6rem;
}
.acw-clear-filters {
  background: none;
  border: 0;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  font-size: .72rem;
}
.acw-filter {
  display: grid;
  gap: .55rem;
  border-top: 1px solid rgba(35,31,32,.55);
  padding: .9rem 0;
  margin: 0;
  min-inline-size: 0;
}
.acw-filter > span,
.acw-filter legend {
  padding: 0;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.acw-filter select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #231f20;
  border-radius: 0;
  background: #fff;
  padding: .68rem;
  font: inherit;
}
.acw-filter-options {
  display: grid;
  gap: .42rem;
}
.acw-filter-options--inline {
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .5rem 1rem;
}
.acw-filter label,
.acw-filter-options label {
  display: flex;
  gap: .45rem;
  align-items: flex-start;
  margin: 0;
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.35;
}
.acw-topic-filter {
  max-height: none !important;
  overflow: visible !important;
}
.acw-filter--featured {
  display: flex;
  gap: .45rem;
  align-items: center;
  font-weight: 700;
}
.acw-events-explorer.is-closed .acw-event-filters { opacity: .58; }

.acw-results-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-bottom: 2px solid #231f20;
  padding: .25rem 0 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.acw-active-filter-count {
  font-size: .72rem;
  color: #ef4136;
  text-transform: uppercase;
}
.acw-events-grid,
.acw-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.acw-featured-wrap { margin-bottom: 1.75rem; }
.acw-featured-wrap > h2 {
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  margin: .25rem 0 .9rem;
  color: #ef4136;
}

/* Compact horizontal event cards */
.acw-event-card {
  background: #ebe5e0;
  border: 1px solid rgba(35,31,32,.2);
  min-height: 168px;
  display: grid;
  grid-template-columns: 148px minmax(0,1fr);
  overflow: hidden;
  clip-path: polygon(0 1.5%,100% 0,99% 97%,1% 100%);
}
.acw-event-card:not(.has-image) { grid-template-columns: 1fr; }
.acw-event-card.is-featured {
  background: #ef4136;
  color: #fff;
}
.acw-event-card__image {
  min-height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #fff;
  padding: .7rem;
  box-sizing: border-box;
}
.acw-event-card__image img {
  width: 100%;
  height: 100%;
  max-height: 145px;
  object-fit: contain;
  display: block;
}
.acw-event-card__body {
  padding: 1rem 1rem 1.15rem;
  min-width: 0;
}
.acw-event-card__eyebrow {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.acw-event-card h3 {
  font-family: "Chunky Cuts", "Arial Black", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  line-height: .83;
  margin: .55rem 0 .7rem;
}
.acw-event-card h3 a { color: inherit; text-decoration: none; }
.acw-event-card__body > p {
  margin: 0 0 .7rem;
  font-size: .78rem;
  line-height: 1.45;
}
.acw-event-card__location {
  font-size: .7rem;
  line-height: 1.4;
  opacity: .78;
  margin: .45rem 0;
}
.acw-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .7rem;
}
.acw-event-card__meta span {
  border: 1px solid currentColor;
  padding: .2rem .38rem;
  font-size: .62rem;
  text-transform: uppercase;
}

.acw-tools-coming-soon {
  background: #000;
  color: #fff;
  padding: clamp(1.5rem,4vw,3rem);
  margin-bottom: 2rem;
  clip-path: polygon(0 5%,100% 0,98% 92%,3% 100%);
}
.acw-tools-coming-soon > span {
  display: block;
  color: #ef4136;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.acw-tools-coming-soon > strong {
  display: block;
  font-family: "Chunky Cuts", "Arial Black", sans-serif;
  font-size: clamp(2.4rem,5vw,5rem);
  line-height: .78;
  margin: .75rem 0;
}
.acw-ghost-card {
  background: #d9d1cb;
  min-height: 190px;
  padding: 1.4rem;
  clip-path: polygon(0 2%,100% 0,98% 96%,3% 100%);
}
.acw-ghost-card span { color: #ef4136; font-size: .72rem; font-weight: 700; }
.acw-ghost-card strong { display: block; font-size: 1.6rem; margin: 1rem 0; }
.acw-no-events { grid-column: 1/-1; padding: 2rem; border: 2px dashed #999; }
.acw-events-explorer.is-loading .acw-event-results { cursor: progress; }

/* Multi-step host event flow */
.acw-host-preview {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: #231f20;
}
.acw-host-preview__step { background: #d9d1cb; padding: 1.25rem; font-weight: 700; min-height: 100px; }
.acw-host-flow { max-width: 1240px; }
.acw-form-progress {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 2px;
  margin-bottom: 1rem;
  background: #231f20;
}
.acw-form-progress button {
  border: 0;
  border-radius: 0;
  background: #ebe5e0;
  color: #231f20;
  padding: .8rem .9rem;
  text-align: left;
  font: 700 .76rem "IBM Plex Mono", monospace;
  cursor: pointer;
}
.acw-form-progress button span { color: #ef4136; margin-right: .35rem; }
.acw-form-progress button[aria-current="step"] { background: #ef4136; color: #fff; }
.acw-form-progress button[aria-current="step"] span { color: #fff; }
.acw-form-progress button:disabled { cursor: default; opacity: .45; }
.acw-host-form { display: block; }
.acw-form-section {
  position: relative;
  background: #f5f1ee;
  padding: clamp(1.4rem,3vw,2.6rem);
  border-top: 10px solid #ef4136;
  min-height: 420px;
  box-sizing: border-box;
}
.acw-form-section[hidden] { display: none !important; }
.acw-form-index {
  position: absolute;
  right: 1rem;
  top: .7rem;
  color: #ef4136;
  font-size: .78rem;
  font-weight: 700;
}
.acw-form-section h2 {
  font-family: "Chunky Cuts", "Arial Black", sans-serif;
  font-size: clamp(2.2rem,4vw,4.2rem);
  line-height: .78;
  margin: 0 0 1.5rem;
}
.acw-host-form label,
.acw-host-form fieldset {
  display: grid;
  gap: .45rem;
  margin: .85rem 0;
  font-weight: 700;
}
.acw-host-form label small,
.acw-host-form legend small {
  font-size: .68rem;
  font-weight: 400;
  opacity: .7;
}
.acw-host-form input[type="text"],
.acw-host-form input[type="email"],
.acw-host-form input[type="url"],
.acw-host-form input[type="number"],
.acw-host-form input[type="datetime-local"],
.acw-host-form input[type="file"],
.acw-host-form textarea,
.acw-host-form select {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #231f20;
  border-radius: 0;
  background: #fff;
  padding: .78rem;
  font: inherit;
  font-weight: 400;
}
.acw-host-form textarea { resize: vertical; }
.acw-form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1rem;
}
.acw-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: .35rem 1rem;
}
.acw-checkbox-grid label,
.acw-consent {
  display: flex !important;
  gap: .45rem !important;
  align-items: flex-start;
  font-weight: 400 !important;
}
.acw-upload-field {
  display: grid;
  grid-template-columns: minmax(0,1fr) 150px;
  gap: 1rem;
  align-items: end;
}
.acw-upload-preview {
  width: 150px;
  height: 110px;
  border: 2px solid #231f20;
  background: #fff;
  padding: .5rem;
  box-sizing: border-box;
}
.acw-upload-preview img { width: 100%; height: 100%; object-fit: contain; display: block; }
.acw-form-review-note {
  display: grid;
  grid-template-columns: auto repeat(4,1fr);
  gap: .55rem 1rem;
  align-items: center;
  background: #fff;
  border-left: 8px solid #ef4136;
  padding: 1rem;
  margin: 1rem 0;
  font-size: .74rem;
}
.acw-form-review-note strong { font-size: .8rem; }
.acw-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.acw-next-button,
.acw-submit-button,
.acw-back-button {
  border: 0;
  border-radius: 0;
  padding: .9rem 1.2rem;
  font: 700 .9rem "IBM Plex Mono", monospace;
  cursor: pointer;
}
.acw-next-button,
.acw-submit-button {
  margin-left: auto;
  background: #ef4136;
  color: #fff;
  clip-path: polygon(0 7%,100% 0,97% 90%,2% 100%);
}
.acw-back-button { background: #000; color: #fff; }
.acw-submit-button[disabled] { opacity: .55; cursor: wait; }
.acw-form-success,
.acw-host-response.is-success {
  background: #087b42;
  color: #fff;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.acw-form-error,
.acw-host-response.is-error {
  background: #231f20;
  color: #fff;
  border-left: 10px solid #ef4136;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.acw-host-response strong { display: block; font-size: 1.15rem; margin-bottom: .5rem; }
.acw-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Event detail */
.acw-event-detail {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1px;
  background: #231f20;
  margin: 0 0 3rem;
}
.acw-event-detail > div { background: #d9d1cb; padding: 1.25rem; }
.acw-event-detail > div > span { display: block; color: #ef4136; font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.acw-event-detail > div > strong { display: block; margin-top: .45rem; }
.acw-event-detail__logo { grid-column: 1/-1; background: #fff !important; }
.acw-event-detail__logo img { display: block; max-width: 260px; max-height: 170px; object-fit: contain; }
.acw-event-detail__primary { background: #ef4136 !important; color: #fff; }
.acw-event-detail__primary > span { color: #fff !important; }
.acw-event-detail__wide { grid-column: 1/-1; }
.acw-register-button { display: inline-block; background: #000; color: #fff !important; text-decoration: none; padding: .85rem 1.1rem; font-weight: 700; clip-path: polygon(0 7%,100% 0,97% 90%,2% 100%); }

/* Announcements */
.acw-announcements-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.25rem; }
.acw-announcement-card { background: #d9d1cb; padding: 1.5rem; clip-path: polygon(0 3%,100% 0,98% 94%,3% 100%); }
.acw-announcement-card:nth-child(3n+2) { background: #ef4136; color: #fff; transform: rotate(.3deg); }
.acw-announcement-card__date { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.acw-announcement-card h2 { font-family: "Chunky Cuts","Arial Black",sans-serif; font-size: clamp(2rem,4vw,4rem); line-height: .8; margin: .8rem 0; }
.acw-announcement-card h2 a { color: inherit; text-decoration: none; }
.acw-no-announcements { background: #000; color: #fff; padding: clamp(2rem,4vw,4rem); clip-path: polygon(0 4%,100% 0,98% 92%,3% 100%); }
.acw-no-announcements strong { display: block; font-family: "Chunky Cuts","Arial Black",sans-serif; font-size: clamp(2.5rem,5vw,5rem); line-height: .78; }
.acw-no-announcements p { max-width: 60ch; }
.acw-load-more { display: block; margin: 2rem auto 0; border: 2px solid #231f20; background: #fff; color: #231f20; padding: .8rem 1.2rem; font: 700 .9rem "IBM Plex Mono",monospace; cursor: pointer; }
.acw-load-more:hover { background: #231f20; color: #fff; }
.acw-load-more[hidden] { display: none; }

@media (max-width: 1180px) {
  .acw-events-grid,
  .acw-featured-grid { grid-template-columns: 1fr; }
  .acw-checkbox-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .acw-form-review-note { grid-template-columns: 1fr 1fr; }
  .acw-form-review-note strong { grid-column: 1/-1; }
}

@media (max-width: 900px) {
  .acw-events-toolbar { grid-template-columns: 1fr 160px; }
  .acw-add-event-button { grid-column: 1/-1; justify-self: start; }
  .acw-events-layout { grid-template-columns: 1fr; }
  .acw-event-filters { position: static; }
  .acw-filter-options { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .acw-host-preview { grid-template-columns: repeat(2,1fr); }
  .acw-form-progress { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .acw-events-toolbar,
  .acw-form-grid,
  .acw-checkbox-grid,
  .acw-filter-options,
  .acw-host-preview,
  .acw-form-progress,
  .acw-upload-field { grid-template-columns: 1fr; }
  .acw-event-sort { min-width: 0; }
  .acw-event-card { grid-template-columns: 110px minmax(0,1fr); }
  .acw-event-card__image { padding: .45rem; }
  .acw-event-card h3 { font-size: 1.55rem; }
  .acw-upload-preview { width: 100%; height: 140px; }
  .acw-form-section { min-height: 0; }
  .acw-event-detail { grid-template-columns: 1fr; }
  .acw-event-detail__wide,
  .acw-event-detail__logo { grid-column: auto; }
  .acw-announcements-grid { grid-template-columns: 1fr; }
}

/* v2.0.1 — narrower public tools and clean launch state */
.acw-events-explorer,
.acw-host-flow {
  width: min(100%, 1240px) !important;
  max-width: 1240px !important;
  margin-inline: auto !important;
}
.acw-simple-coming-soon {
  box-sizing: border-box;
  width: 100%;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: #d9d1cb;
  border-top: 8px solid #ef4136;
  font-family: "Chunky Cuts", "Arial Black", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: .82;
  color: #ef4136;
  clip-path: polygon(0 3%,100% 0,98% 94%,2% 100%);
}
