.case-study-page {
  min-width: 100vw;
  min-height: 100vh;
  background: var(--color-bg);
}

.study-prev {
  display: flex;
  padding: 1em;
  gap: 5em;
  margin-bottom: 2em;
}

.study-prev > div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.study-prev-img {
  width: 100px;
  height: 200px;
}

.study-prev .fact {
  width: 140px;
  height: 200px;
  background: var(--color-accent-bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75em;
}

.study-prev .fact h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
}

.study-prev .fact p {
  font-size: 14px;
  margin-top: 0.4em;
}

.study-subhero {
  padding: 1em;
}

.study-subhero h2 {
  width: 75%;
}

.study-shots-2 {
  width: 100%;
  padding: 1em;
  height: 200vh;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.study-shots-2 > div {
  flex: 1;
}

.shot-row {
  display: flex;
  flex-direction: column;
  gap: 1em;
  height: 90vh;
}

.show-row-row {
  display: flex;
  gap: 1em;
  flex: 1;
  height: 50vh;
}

@media (max-width: 900px) {
  .study-prev {
    flex-direction: column;
    gap: 1em;
  }

  .study-prev > div:empty {
    display: none;
  }

  .study-prev .fact {
    width: 100%;
    height: 120px;
  }

  .study-subhero h2 {
    width: 100%;
  }

  .show-row-row {
    flex-direction: column;
  }

  .study-shots-2 {
    height: max-content;
  }
}
