/* Parent equal height wrapper */
.flight-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
}

/* IMAGE column */
.flight-image {
  flex: 1;
  min-width: 40%;
  max-width: 50%;
  display: flex;
}

.flight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FORM column */
.flight-form {
  flex: 1;
  min-width: 50%;
  background: #eaffe7;
  display: flex;
  align-items: stretch;
}

.flight-form > div {
  height: 100%;
}

/* Responsive stacking */
@media (max-width: 992px) {
  .flight-wrapper {
    flex-direction: column;
  }

  .flight-image,
  .flight-form {
    max-width: 100%;
    min-width: 100%;
    height: auto;
  }

  .flight-image img {
    height: auto;
  }
}
