/* About page styles */

/* Story section */
.story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

.story-text p {
  margin-bottom: 1.25rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-photo {
  width: 100%;
  max-width: 350px;
  height: 450px;
  background-color: var(--color-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-mid-grey);
  font-size: var(--font-size-small);
  justify-self: center;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-photo {
    max-width: 280px;
    height: 360px;
    margin: 0 auto;
    position: static;
  }
}

/* Methodology section */
.method-blocks {
  display: grid;
  gap: 3rem;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.method-block h3 {
  margin-bottom: 1rem;
}

.method-block p {
  line-height: var(--line-height-body);
}
