/* Las ventanas casi cuadradas conservan la portada móvil de una sola columna. */
@media (min-width: 761px) and (max-width: 1020px) and (max-aspect-ratio: 6/5) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(700px, 100svh) auto auto auto;
    min-height: 0;
  }

  .hero-copy {
    display: contents;
  }

  .hero-art {
    grid-column: 1;
    grid-row: 1;
    min-height: max(700px, 100svh);
    background-position: 50% center;
  }

  .hero-copy .kicker,
  .hero-copy .chinese-name,
  .hero-copy h1 {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    z-index: 7;
    width: calc(100% - 48px);
    max-width: calc(100% - 48px);
    margin-right: 24px;
    margin-left: 24px;
    padding: 0;
    text-align: center;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.58);
  }

  .hero-copy .kicker {
    margin-top: 106px;
  }

  .hero-copy .chinese-name {
    margin-top: 164px;
  }

  .hero-copy h1 {
    margin-top: 204px;
    font-size: clamp(4.1rem, 9.2vw, 6rem);
    line-height: 0.78;
  }

  .hero-copy h1 span {
    margin-left: 0;
  }

  .international-name {
    display: none;
  }

  .master-portrait {
    top: 266px;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(82vw, 680px);
    height: auto;
    max-height: none;
    object-position: center top;
    transform: translateX(-50%);
  }

  .hero-lead {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    padding: 36px clamp(40px, 9vw, 86px) 0;
  }

  .hero-actions {
    grid-column: 1;
    grid-row: 3;
    margin: 0;
    padding: 28px clamp(40px, 9vw, 86px) 0;
  }

  .hero-position {
    grid-column: 1;
    grid-row: 4;
    margin: 34px clamp(40px, 9vw, 86px) 52px;
  }
}

/* En pantallas anchas el retrato sube y ocupa mejor el panel izquierdo. */
@media (min-width: 1021px) {
  .master-portrait {
    top: auto;
    right: auto;
    bottom: 1%;
    left: 50%;
    width: min(140%, 1040px);
    height: 112%;
    object-position: center bottom;
    transform: translateX(-50%);
  }
}
