/* =====================================================
   PASHELM – FEATURES
   ===================================================== */

/* Wrapper binnen product content */
.pashelm-features-wrapper {
  width: 100%;
  max-width: 100%;
  margin-top: 48px;
}

/* Feature blok */
.product-feature {
  margin-bottom: 36px;
}

/* Titel altijd bovenaan */
.product-feature .feature-title {
  margin-bottom: 24px;
}

/* Rij-layout */
.product-feature .feature-inner {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* Kolommen */
.product-feature .feature-image,
.product-feature .feature-text {
  flex: 1;
}

/* Afbeeldingen */
.product-feature .feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Afbeelding rechts */
.product-feature.layout-image-right .feature-inner {
  flex-direction: row-reverse;
}

/* Mobiel: altijd stacked
   1. titel
   2. afbeelding
   3. tekst */
@media (max-width: 768px) {
  .product-feature .feature-inner {
    flex-direction: column;
    gap: 24px;
  }
}