/* EXPERIENCE SECTION */
.experience-section {
  padding: 15rem 0;   /* inside spacing for content */
  background: linear-gradient(to bottom, #000000, #232223);
  min-height: 100vh; /* use min-height so it can grow if content is taller */
  display: flex;
  flex-direction: column; /* allow kicker + features */
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Features container */
.features-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  width: 100%;
  padding: 2rem 5%;
}

/* Each feature block */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title */
.feature-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: Left;
  color: #fff;
}

/* Side-by-side layout */
.feature-content {
  display: flex;
  align-items: center; /* ✅ vertically centers video + text */
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap; /* stacks nicely on mobile */
}

/* Reversed layout */
.feature-item.reverse .feature-content {
  flex-direction: row-reverse;
}

/* Video */
.feature-video video {
  width: 550px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* Text (h2 + p grouped) */
.feature-text {
  max-width: 450px;
  text-align: left;
  color: #ddd;
}


/* Kicker */
.experience-section .kicker {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: #d4af37;
  text-align: center;
}
