/* EventDetails v57 AI asset builder and media format styles */

.ed-media-format-grid,
.ed-ai-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ed-media-format-card,
.ed-ai-builder-card {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--ed-line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(15,47,89,.07);
}

.ed-media-format-card h3,
.ed-ai-builder-card h3 {
  margin: 0 0 8px;
  color: var(--ed-navy);
}

.ed-format-size {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  background: rgba(29,95,168,.08);
  color: var(--ed-blue);
  font-weight: 900;
  padding: 7px 11px;
  margin: 6px 0 10px;
}

.ed-ai-form-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 16px;
}

.ed-ai-form-grid .ed-full {
  grid-column: 1 / -1;
}

.ed-ai-form-grid label {
  font-weight: 900;
  color: var(--ed-navy);
  display: block;
  margin-bottom: 6px;
}

.ed-ai-form-grid input[type=text],
.ed-ai-form-grid select,
.ed-ai-form-grid textarea {
  width: 100%;
  border: 1px solid var(--ed-line);
  border-radius: 14px;
  padding: 11px 12px;
  font: inherit;
  box-sizing: border-box;
  background: #fff;
}

.ed-ai-form-grid textarea {
  min-height: 105px;
}

.ed-ai-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px 12px;
}

.ed-ai-checks label {
  background: #f8fbff;
  border: 1px solid var(--ed-line);
  border-radius: 12px;
  padding: 9px 10px;
  color: var(--ed-muted);
  font-weight: 800;
}

.ed-ai-credit-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(29,95,168,.12), rgba(29,166,154,.12));
  color: var(--ed-navy);
  font-weight: 950;
  padding: 8px 13px;
  margin: 6px 8px 6px 0;
}

.ed-ai-info-strip {
  background: linear-gradient(135deg, rgba(131,191,53,.12), rgba(29,166,154,.12));
  border: 1px solid var(--ed-line);
  border-radius: 22px;
  padding: 18px;
  margin: 18px 0;
}

.ed-media-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--ed-line);
  border-radius: 16px;
  overflow: hidden;
}

.ed-media-table th,
.ed-media-table td {
  padding: 12px;
  border-bottom: 1px solid var(--ed-line);
  text-align: left;
  vertical-align: top;
}

.ed-media-table th {
  background: #f8fbff;
  color: var(--ed-navy);
}

@media (max-width: 900px) {
  .ed-media-format-grid,
  .ed-ai-card-grid,
  .ed-ai-form-grid,
  .ed-ai-checks {
    grid-template-columns: 1fr;
  }
}

/* v64 reusable custom artwork reminder */
.ed-custom-artwork-reminder {
  background:
    linear-gradient(135deg, rgba(240,185,79,.18), rgba(131,191,53,.13));
  border: 1px solid rgba(240,185,79,.38);
  border-radius: 22px;
  padding: 18px 20px;
  margin: 18px 0;
  box-shadow: 0 14px 30px rgba(15,47,89,.06);
}

.ed-custom-artwork-reminder h3 {
  margin: 0 0 7px;
  color: var(--ed-navy);
  font-size: 1.12rem;
  letter-spacing: -.025em;
}

.ed-custom-artwork-reminder p {
  margin: 0;
  color: #5f4b19;
  line-height: 1.58;
  font-weight: 750;
}

.ed-custom-artwork-reminder strong {
  color: var(--ed-navy);
}

