.seo-page-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.editorial-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 4.5rem);
}

.editorial-covers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(.45rem, 1.4vw, .85rem);
  padding: clamp(.75rem, 2vw, 1.2rem);
  background: linear-gradient(145deg, #f1eadf, #dfd2bf);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 45px rgb(49 37 22 / 12%);
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
}

.editorial-covers img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 18px rgb(24 17 10 / 28%);
  transition: transform .25s ease, box-shadow .25s ease;
}

.editorial-covers img:nth-child(2),
.editorial-covers img:nth-child(5) {
  transform: translateY(-.55rem);
}

.editorial-covers img:hover {
  transform: translateY(-.35rem) scale(1.025);
  box-shadow: 0 13px 25px rgb(24 17 10 / 34%);
}

.editorial-covers img:nth-child(2):hover,
.editorial-covers img:nth-child(5):hover {
  transform: translateY(-.9rem) scale(1.025);
}

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

  .editorial-covers {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
    order: -1;
  }
}
