.feature {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
  padding: 30px;
  border-radius: var(--rounded);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--overlay);
}

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

.feature:hover .feature-image {
  transform: scale(1.03);
}

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

.feature-image img[src*=code-to-clinic-logo] {
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.feature-image img[src*=elshad-hasanov] {
  object-position: 50% 22%;
}

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

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

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

@media (max-width: 800px) {
  .feature {
    flex-direction: column !important;
  }
  .feature-image {
    width: 100%;
    max-width: 400px;
  }
}

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