.info-wrap {
  padding: 0 0 4rem;
}

.info-section {
  padding: 3rem 0;
}

.info-wrap > .info-section:first-of-type .info-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: stretch;
  margin-left: 0;
  margin-right: 0;
}

.info-wrap > .info-section:first-of-type .info-image-col,
.info-wrap > .info-section:first-of-type .info-copy-col,
.info-wrap > .info-section:first-of-type .info-reveal,
.info-wrap > .info-section:first-of-type .info-card,
.info-wrap > .info-section:first-of-type .illustration-wrapper {
  height: 100%;
}

.info-wrap > .info-section:first-of-type .info-image-col,
.info-wrap > .info-section:first-of-type .info-copy-col {
  min-width: 0;
  max-width: none;
  height: auto;
  padding-left: 0;
  padding-right: 0;
}

.info-wrap > .info-section:first-of-type .info-reveal,
.info-wrap > .info-section:first-of-type .info-card,
.info-wrap > .info-section:first-of-type .illustration-wrapper {
  min-height: 450px;
}

.section-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 2rem;
}

.info-row {
  display: flex;
  gap: 3rem;
  align-items: stretch;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.info-row-reverse {
  flex-direction: row-reverse;
}

.info-copy-col,
.info-image-col {
  min-width: 0;
}

.info-image-col {
  display: flex;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.info-copy-col {
  display: flex;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.info-reveal {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 auto;
}

.info-image-col > .info-reveal {
  display: flex;
  width: 100%;
}

.info-card {
  height: 100%;
  padding: 3rem;
}

.info-heading {
  margin: 0 0 2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--foreground);
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
}

.info-card hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 2rem;
}

.info-text {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.illustration-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 450px;
  height: 100%;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(29, 187, 209, 0.05) 0%, rgba(185, 105, 220, 0.05) 100%);
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.largeIllustration {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.largeIllustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 992px) {
  .info-wrap > .info-section:first-of-type .info-row {
    display: flex;
    min-height: 0;
  }

  .info-row,
  .info-row-reverse {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .info-image-col,
  .info-copy-col {
    flex: 1 1 auto;
    max-width: 100%;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .info-card {
    padding: 2rem;
  }

  .info-reveal {
    height: 100%;
  }

  .illustration-wrapper {
    min-height: 450px;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .info-wrap {
    padding-bottom: 2rem;
  }
}
