.production {
  background: var(--bg-navy);
}

.glow--production-warm {
  width: 620px;
  height: 620px;
  left: 46%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.22), transparent 70%);
  mix-blend-mode: screen;
}

.glow--brand {
  width: 540px;
  height: 540px;
  left: 58%;
  top: 12%;
  background: radial-gradient(circle, rgba(240, 0, 117, 0.16), transparent 70%);
}

.production__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.production__lead {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-muted-dark);
  max-width: 530px;
}

.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px 13px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.16);
  position: relative;
}

.feature-item__light {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  border-radius: 2px;
  flex-shrink: 0;
}

.feature-index {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  min-width: 18px;
}

.feature-item--blue .feature-item__light { background: var(--brand-blue); box-shadow: 0 0 10px rgba(18, 92, 235, 0.5); }
.feature-item--pink .feature-item__light { background: var(--brand-pink); box-shadow: 0 0 10px rgba(240, 0, 117, 0.5); }
.feature-item--orange .feature-item__light { background: var(--brand-orange); box-shadow: 0 0 10px rgba(255, 122, 0, 0.5); }

.production__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 14px;
  background: linear-gradient(105deg, rgba(33, 61, 133, 0.28) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(242, 13, 107, 0.18) 100%);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
}

.production__image {
  width: 100%;
  aspect-ratio: 580 / 720;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 8px);
}

.production__caption {
  position: absolute;
  left: 6.69%;
  top: 87.76%;
  width: 52.23%;
  height: 4.43%;
  min-height: 28px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  background: rgba(5, 10, 26, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
  overflow: hidden;
}

.production__caption span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.3px;
  color: var(--white);
}
