.hero-title-col {
  padding-right: 200px;
}

.hero-heading {
  position: relative;
  display: inline-block;
}

.print-with {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}

.seriously {
  position: absolute;
  left: 240px; /* replaces margin-left:-90px */
  bottom: -20px; /* ✅ controls vertical placement */

  font-size: 6rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
}

@media (max-width: 1400px) {
  .hero-title-col {
    padding-right: 0;
  }

  .hero-heading {
    display: flex;
    flex-direction: column;
  }

  .print-with {
    text-align: center;
  }

  .seriously {
    position: relative;
    left: unset;
    bottom: unset;
    text-align: center;
  }
}

.hover-view {
  overflow: hidden;
}
.hover-view.bg-image {
  transition: background-size 700ms ease;
}
.hover-view.bg-image:hover {
}
.hover-view p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 700ms ease;
}
.hover-view:hover p {
  max-height: 600px;
}
