/* ============================================================
   Just Pitch — Entertainment slide + form editor styles
   ============================================================ */

/* ===== Slide: entertainment ===== */
.slide.entertainment {
  background: linear-gradient(135deg, #FAFCFE 0%, #F1F6FA 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.slide.entertainment::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(141, 177, 203, .22), transparent 65%);
  pointer-events: none;
}
.slide.entertainment .ent-pad {
  flex: 1;
  padding: 56px 64px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  min-height: 0;
}
.slide.entertainment .ent-head { margin-bottom: 28px; }
.slide.entertainment .ent-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--jr-blue);
  margin-bottom: 6px;
}
.slide.entertainment .ent-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 46px;
  letter-spacing: -.015em;
  color: var(--jr-blue-900);
  margin: 0 0 10px;
  line-height: 1.05;
}
.slide.entertainment .ent-intro {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--jr-gray-700);
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
}

.slide.entertainment .ent-grid {
  flex: 1;
  display: grid;
  gap: 18px;
  min-height: 0;
}
.slide.entertainment .ent-grid.cols-1 { grid-template-columns: 1fr; }
.slide.entertainment .ent-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.slide.entertainment .ent-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

/* Entertainer card */
.entertainer {
  background: #fff;
  border: 1px solid var(--jr-gray-200);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(15, 40, 80, .04);
  margin: 0;
}
.entertainer .ent-photo {
  background: linear-gradient(135deg, var(--jr-blue-100) 0%, var(--jr-gray-200) 100%);
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  position: relative;
}
.entertainer .ent-photo-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--jr-gray-400);
}
.entertainer .ent-card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.entertainer .ent-namebar {
  background: linear-gradient(90deg, var(--jr-blue-900) 0%, var(--jr-gray-600) 50%, transparent 100%);
  color: #fff;
  padding: 10px 14px;
  margin: -10px -8px 14px;
  border-radius: 99px 0 0 99px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  width: fit-content;
  max-width: calc(100% + 16px);
  position: relative;
  z-index: 1;
}
.entertainer .ent-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.005em;
  line-height: 1.1;
  color: #fff;
}
.entertainer .ent-kind {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  line-height: 1.2;
}
.entertainer .ent-desc {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--jr-gray-800);
  margin: 0 0 14px;
  flex: 1;
}
.entertainer .ent-listen {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 14px 6px 12px;
  background: var(--jr-blue-50);
  color: var(--jr-blue-700);
  border: 1px solid var(--jr-blue-100);
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all .15s var(--ease-std);
}
.entertainer .ent-listen:hover {
  background: var(--jr-blue-700);
  color: #fff;
  border-color: var(--jr-blue-700);
}
.entertainer .ent-listen-spotify    { color: #1DB954; border-color: rgba(29, 185, 84, .25); background: rgba(29, 185, 84, .08); }
.entertainer .ent-listen-spotify:hover { background: #1DB954; color: #fff; border-color: #1DB954; }
.entertainer .ent-listen-youtube    { color: #FF0033; border-color: rgba(255, 0, 51, .22); background: rgba(255, 0, 51, .06); }
.entertainer .ent-listen-youtube:hover { background: #FF0033; color: #fff; border-color: #FF0033; }
.entertainer .ent-listen-soundcloud { color: #FF5500; border-color: rgba(255, 85, 0, .22); background: rgba(255, 85, 0, .06); }
.entertainer .ent-listen-soundcloud:hover { background: #FF5500; color: #fff; border-color: #FF5500; }
.entertainer .ent-listen-apple      { color: #FA243C; border-color: rgba(250, 36, 60, .22); background: rgba(250, 36, 60, .06); }
.entertainer .ent-listen-apple:hover { background: #FA243C; color: #fff; border-color: #FA243C; }

/* Single-entertainer layout: photo and copy side-by-side */
.slide.entertainment.count-1 .entertainer.is-single {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  border-radius: 14px;
  height: 100%;
}
.slide.entertainment.count-1 .entertainer.is-single .ent-photo {
  aspect-ratio: auto;
  height: 100%;
}
.slide.entertainment.count-1 .entertainer.is-single .ent-card-body {
  padding: 32px 36px 36px;
  justify-content: center;
}
.slide.entertainment.count-1 .entertainer.is-single .ent-name { font-size: 26px; }
.slide.entertainment.count-1 .entertainer.is-single .ent-kind { font-size: 14px; }
.slide.entertainment.count-1 .entertainer.is-single .ent-desc { font-size: 15px; max-width: 480px; }
.slide.entertainment.count-1 .entertainer.is-single .ent-namebar {
  padding: 12px 18px;
  margin: 0 0 18px;
  border-radius: 99px;
  width: fit-content;
  max-width: 100%;
}

.slide.entertainment .ent-empty {
  display: grid;
  place-items: center;
  color: var(--jr-gray-500);
  font-style: italic;
  background: var(--jr-gray-50);
  border: 1px dashed var(--jr-gray-300);
  border-radius: 8px;
  padding: 40px 20px;
}

/* ===== Form: add-entertainment button ===== */
.lv-card.is-entertainment .lv-card-type {
  background: rgba(217, 119, 87, 0.92);
}
.lv-type-entertainment { background: rgba(217, 119, 87, 0.92); }
.lv-chip.is-active { background: var(--jr-blue); color: #fff; border-color: var(--jr-blue); }

  background: rgba(217, 119, 87, 0.1);
  color: #B0473D;
  border: 1px solid rgba(217, 119, 87, 0.25);
}
.btn-add.btn-add-ent:hover { background: rgba(217, 119, 87, 0.18); border-color: rgba(217, 119, 87, 0.45); }

.venue-editor.is-entertainment .type-pill.entertainment {
  background: rgba(217, 119, 87, 0.12);
  color: #B0473D;
  border-color: rgba(217, 119, 87, 0.3);
}

/* ===== Form: entertainer editor ===== */
.entertainer-editor {
  background: var(--jr-gray-50);
  border: 1px solid var(--jr-gray-200);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.ent-ed-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--jr-gray-200);
}
.ent-ed-photo {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--jr-blue-100);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
}
.ent-ed-photo-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: var(--jr-gray-500);
  font-weight: 600;
}
.ent-ed-meta { flex: 1; min-width: 0; }
.ent-ed-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--jr-blue-900);
  letter-spacing: -.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ent-ed-kind {
  font-size: 11.5px;
  color: var(--jr-gray-600);
  font-weight: 500;
}
.ent-ed-remove {
  width: 28px; height: 28px;
  background: transparent;
  border: 1px solid var(--jr-gray-300);
  border-radius: 6px;
  color: #B0473D;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.ent-ed-remove:hover { background: #FFE9E5; border-color: #FCA5A5; }
.ent-ed-photo-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
