/* Event Operations layout corrections. Operational data and actions are unchanged. */
.admin-page .event-operations,
.admin-page .event-operations > *,
.admin-page .operations-layout,
.admin-page .operations-event-list,
.admin-page .operations-event-cards,
.admin-page .operations-detail-panel,
.admin-page .operations-toolbar {
  min-width: 0;
  max-width: 100%;
}

.admin-page .operations-layout {
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.admin-page .operations-event-list {
  align-self: start;
}

.admin-page .operations-list-heading {
  align-items: center;
  gap: 12px;
}

.admin-page .operations-list-heading span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.admin-page .operations-event-cards {
  align-content: start;
  gap: 10px;
  max-height: 720px;
  padding-right: 5px;
  overflow-y: auto;
  overflow-x: hidden;
}

.admin-page .operations-event-cards > button {
  height: auto !important;
  min-height: 148px;
  align-content: start;
  gap: 6px;
  padding: 12px 14px;
  overflow: hidden;
}

.admin-page .operations-event-cards > button > span,
.admin-page .operations-event-cards > button > strong,
.admin-page .operations-event-cards > button > small {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.admin-page .operations-event-cards > button > span {
  color: #53667a;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.4;
}

.admin-page .operations-event-cards > button > strong {
  color: #102844;
  line-height: 1.35;
}

.admin-page .operations-event-cards > button > small {
  color: #68778a;
  line-height: 1.4;
}

.admin-page .operations-event-cards > button > div {
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}

.admin-page .operations-event-cards > button > div b,
.admin-page .operations-event-cards > button > div em {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .admin-page .operations-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-page .operations-event-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 520px;
  }

  .admin-page .operations-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-page .operations-toolbar > label:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .admin-page .operations-event-cards,
  .admin-page .operations-toolbar,
  .admin-page .operations-overview-grid,
  .admin-page .operations-brief {
    grid-template-columns: minmax(0, 1fr);
  }

  .admin-page .operations-toolbar > label:first-child {
    grid-column: auto;
  }

  .admin-page .operations-event-cards {
    max-height: 600px;
  }
}
