.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}

.feature-image {
  flex-shrink: 0;
  width: 40%;
  aspect-ratio: 3/2;
  border-radius: var(--rounded);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-text {
  flex-grow: 1;
}

.feature-title {
  font-size: var(--xxl);
  text-align: center;
  font-family: var(--heading);
  font-weight: var(--semi-bold);
}

.feature[data-flip] {
  flex-direction: row-reverse;
}

@media (max-width: 800px) {
  .feature {
    flex-direction: column !important;
  }
  .feature-image {
    width: 100%;
    max-width: 400px;
    object-position: center;
  }
}
.tall-feature-image {
  aspect-ratio: unset;
  height: auto;
  width: auto;
  max-height: 400px;
  max-width: 400px;
}

.tall-feature-image img {
  object-fit: contain;
  height: auto;
  width: 100%;
}

/*# sourceMappingURL=feature.css.map */