.np-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-top: 80px;
}

.np-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.np-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  text-align: center;
  text-decoration: none;
  z-index: 2;
}

.np-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 5px 4px 2px #252325;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  max-width: 90%;
  transition: font-size 120ms ease-out;
  white-space: normal;
  word-break: normal;
}

.np-overlay:hover .np-title {
  color: #ffe900;
}

.np-line {
  display: block;
}

/* Desktop muy grande */
@media (min-width: 1600px) {
  .np-wrapper {
    aspect-ratio: 18 / 9;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .np-wrapper {
    aspect-ratio: 16 / 10;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .np-wrapper {
    aspect-ratio: 4 / 3;
  }
}