/* Portada izquierda inspirada en la estructura editorial del catalogo impreso. */
.hero-copy {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(153deg, transparent 0 32%, rgba(8, 104, 190, .018) 32.2% 48%, transparent 48.2%),
    radial-gradient(circle at 2px 2px, rgba(10, 90, 155, .12) 1.5px, transparent 1.7px) 24px 28px / 38px 38px,
    linear-gradient(120deg, #f6f8fa 0%, #fff 48%, #f7f9fb 100%);
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -12% -22% auto 16%;
  height: 68%;
  background:
    linear-gradient(145deg, transparent 44%, rgba(120, 133, 146, .045) 44.2% 60%, transparent 60.2%),
    linear-gradient(28deg, transparent 40%, rgba(0, 123, 196, .035) 40.2% 59%, transparent 59.2%);
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero-editorial-content {
  position: relative;
  z-index: 3;
  width: min(100%, 780px);
}

.hero-editorial-content > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-folio {
  position: absolute;
  z-index: 4;
  top: 26px;
  left: 28px;
  color: rgba(8, 43, 76, .42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.hero-contact-block {
  width: min(100%, 690px);
  margin-top: 34px;
}

.hero-contact-title {
  display: block;
  margin: 0 0 10px 12px;
  color: #173da3;
  font-size: 14px;
  font-weight: 800;
}

.hero-copy .hero-proof {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1.35fr;
  gap: 8px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.hero-copy .hero-proof a {
  min-width: 0;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid rgba(7, 104, 190, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 24px rgba(13, 55, 91, .07);
  backdrop-filter: blur(8px);
}

.hero-copy .hero-proof a.featured-contact {
  padding-left: 44px;
  background: linear-gradient(100deg, rgba(255, 255, 255, .94), rgba(225, 230, 235, .94));
  box-shadow: 11px 8px 0 rgba(18, 49, 87, .09);
  position: relative;
}

.hero-copy .hero-proof a.featured-contact::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #13b936;
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px rgba(1, 106, 31, .18);
}

.hero-copy .hero-proof small {
  overflow: hidden;
  color: #60758a;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-copy .hero-proof b {
  overflow: hidden;
  margin-top: 3px;
  color: #243f9f;
  font-size: clamp(11px, 1.05vw, 15px);
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.magazine-ribbons {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(96px, 15vh, 150px);
  filter: drop-shadow(0 -8px 12px rgba(5, 40, 77, .08));
  pointer-events: none;
}

main.split-main .content-column .hero-copy {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(72px, 10vh, 110px) 6vw clamp(142px, 19vh, 190px);
}

main.split-main .content-column .hero h1 {
  max-width: 850px;
  font-size: clamp(49px, 5.1vw, 77px);
}

main.split-main .content-column .hero-copy > p,
main.split-main .content-column .hero-editorial-content > p {
  max-width: 650px;
}

@media (min-width: 1021px) and (max-height: 820px) {
  main.split-main .content-column .hero-copy {
    padding-top: 44px;
    padding-bottom: 120px;
  }

  main.split-main .content-column .hero h1 {
    margin: 14px 0;
    font-size: clamp(43px, 4.4vw, 65px);
  }

  main.split-main .content-column .hero-editorial-content > p {
    margin: 12px 0;
    font-size: 14px;
  }

  main.split-main .hero-contact-block {
    margin-top: 22px;
  }
}

@media (max-width: 1020px) {
  .hero-copy {
    min-height: 720px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 70px 7vw 150px;
  }

  .hero-copy .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .hero-copy {
    min-height: 760px;
    padding: 54px 24px 126px;
  }

  .hero-copy::before,
  .hero-folio {
    display: none;
  }

  .hero h1 {
    margin: 17px 0;
    font-size: 43px;
  }

  .hero-copy > p,
  .hero-editorial-content > p {
    font-size: 14px;
  }

  .hero-contact-block {
    margin-top: 25px;
  }

  .hero-copy .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy .hero-proof a:last-child {
    grid-column: 1 / -1;
  }

  .hero-copy .hero-proof b {
    font-size: 11px;
  }

  .magazine-ribbons {
    height: 105px;
  }
}

@media (max-width: 410px) {
  .hero-copy {
    min-height: 820px;
  }

  .actions .btn {
    width: 100%;
  }
}
