.feature-gallery {
  position: relative;
  background-color: #242424;
  transition: background-color 0.6s ease;
  min-height: 100vh;
}
.features-wrapper {
  display: flex;
  align-items: flex-start;
}

.feature-image {
  position: sticky;
  top: 0;
  height: 100vh;
  flex: 1;
  overflow: hidden;
}

.image-mask {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktopPhoto {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  
  clip-path: inset(0% 0% 0% 0%);
  opacity: 1;
  transition: clip-path 1s ease, opacity 0.5s ease;
}

.features-texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.desktopContentSection {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.feature-text {
  max-width: 600px;
  padding: 2rem;
  color: #fff;
}

.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.programs span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  font-weight: 400;
  font-size: 1rem;
  color: #f1f1f1;
  text-align: center;
  transition: all 0.3s ease;
}

.programs span:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
