/* ============================================================
   screens-2-4-feature.css — feature carousel screens (2, 3, 4).
   Clean image-placeholder design with no text overlay.
   ============================================================ */

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 18px 26px;
  background: var(--bg);
}

.feature-image-wrap {
  flex: 1;
  width: 100%;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 4px 0;
  min-height: 0;
}
.feature-image-frame {
  width: 100%;
  height: 100%;
  max-height: 580px;
  border-radius: 32px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

.feature-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 18px;
}
