.new-coach-experience {
  width: min(1120px, calc(100vw - 48px));
  margin: 28px auto;
  padding: 28px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(20, 184, 166, 0.08)),
    rgba(9, 11, 17, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  color: #f8fafc;
}

.new-coach-experience__copy {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.new-coach-experience__eyebrow,
.new-coach-experience__preview-head span {
  color: #7dd3fc;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.new-coach-experience h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.new-coach-experience p {
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.new-coach-experience__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.new-coach-experience__primary,
.new-coach-experience__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.new-coach-experience__primary {
  color: #08111f;
  background: #67e8f9;
}

.new-coach-experience__secondary {
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.58);
}

.new-coach-experience__preview {
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(2, 6, 23, 0.42);
}

.new-coach-experience__preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.new-coach-experience__preview-head strong {
  color: #c4b5fd;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.new-coach-experience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.new-coach-experience__panel {
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.62);
}

.new-coach-experience__panel h3 {
  margin: 0 0 12px;
  color: #f8fafc;
  font-size: 0.95rem;
}

.new-coach-experience__panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.new-coach-experience__panel li {
  display: flex;
  gap: 8px;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
}

.new-coach-experience__panel li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.45em;
  border-radius: 999px;
  background: #7dd3fc;
  flex: 0 0 auto;
}

@media (max-width: 860px) {
  .new-coach-experience {
    width: min(100% - 24px, 680px);
    padding: 20px;
  }

  .new-coach-experience__grid {
    grid-template-columns: 1fr;
  }
}
