.research-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 20px 0 40px;
}

.research-hero-text {
  flex: 1;
  min-width: 0;
}

.research-hero-figure {
  flex: 0 0 42%;
  max-width: 420px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.research-hero-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
}

.research-hero-figure figcaption {
  font-style: italic;
  text-align: center;
}

@media (max-width: 750px) {
  .research-hero {
    flex-direction: column;
    gap: 20px;
  }
  .research-hero-figure {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }
}

/*# sourceMappingURL=research-hero.css.map */