.editorial .grid3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.editorial .grid3col > div {
  display: flex;
  flex-direction: column;
}
.editorial .grid3col img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  max-width: none;
}
.editorial .grid3col h2 {
  flex: none;
  font-size: 1.625rem;
  max-width: none;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.editorial .grid3col p {
  font-size: 0.9375rem;
  line-height: 1.65;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .editorial .grid3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .editorial .grid3col {
    grid-template-columns: 1fr;
  }
}
