/* Líneas simétricas alrededor del cargo en todas las resoluciones. */
.hero-copy .kicker {
  justify-content: center;
  text-align: center;
}

.hero-copy .kicker::after {
  content: "";
  flex: 0 0 auto;
  width: 44px;
  height: 1px;
  background: var(--red);
}

/* Solo existen dos estados: portada móvil o composición de escritorio. */
@media (min-width: 761px) and (max-width: 1020px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    grid-template-rows: auto;
    min-height: 720px;
  }

  .hero-art {
    grid-column: auto;
    grid-row: auto;
    min-height: 720px;
    background-position: 48% center;
  }

  .hero-art::after {
    background:
      linear-gradient(180deg, rgba(15, 10, 7, 0.58), transparent 24%),
      linear-gradient(0deg, rgba(15, 10, 7, 0.42), transparent 32%);
  }

  .hero-copy {
    display: flex;
    order: 0;
    min-height: 720px;
    padding: 116px 34px 58px;
  }

  .hero-copy .kicker,
  .hero-copy .chinese-name,
  .hero-copy h1 {
    z-index: auto;
    width: auto;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    text-shadow: none;
  }

  .hero-copy .kicker {
    margin-top: 0;
    font-size: 0.62rem;
  }

  .hero-copy .kicker::after,
  .hero-copy .kicker span {
    width: 30px;
  }

  .hero-copy .chinese-name {
    margin-top: 24px;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  }

  .hero-copy h1 {
    margin-top: 0;
    font-size: clamp(3.25rem, 6.5vw, 5.4rem);
    text-align: left;
  }

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

  .international-name {
    display: block;
    margin: 28px 0 0;
    padding: 0;
  }

  .hero-lead {
    margin: 20px 0 0;
    padding: 0;
  }

  .hero-actions {
    margin: 28px 0 0;
    padding: 0;
  }

  .hero-position {
    margin: 34px 0 0;
    padding-top: 22px;
  }

  .master-portrait {
    top: auto;
    right: auto;
    bottom: 4%;
    left: 50%;
    width: min(108%, 720px);
    height: 94%;
    object-position: center bottom;
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .hero {
    grid-template-rows: minmax(600px, 100svh) auto auto auto;
  }

  .hero-art {
    min-height: max(600px, 100svh);
  }

  .hero-copy .kicker {
    margin-top: 78px;
    line-height: 1.25;
  }

  .hero-copy .kicker::after,
  .hero-copy .kicker span {
    width: clamp(18px, 7vw, 30px);
  }

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

  .hero-copy h1 {
    margin-top: 156px;
  }

  .master-portrait {
    top: 230px;
    right: auto;
    bottom: auto;
    left: 50%;
    width: clamp(420px, 150vw, 610px);
    height: auto;
    max-height: none;
    object-position: center top;
    transform: translateX(-50%);
  }
}

@media (max-width: 320px) {
  .hero-copy .kicker {
    margin-top: 72px;
  }

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

  .hero-copy h1 {
    margin-top: 144px;
  }

  .master-portrait {
    top: 210px;
    width: clamp(420px, 175vw, 560px);
  }
}

@media (min-width: 1021px) {
  .master-portrait {
    bottom: 4%;
    height: 96%;
  }
}
