
.iv-hero-image{
  position: relative;
  height: 380px;

  background: url('//ueeshop.ly200-cdn.com/u_file/UPBF/UPBF225/2511/25/photo/DSC01809.jpg')
              center 55% / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0 20px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

/* Subtle center darkening */
.iv-hero-image::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.18) 35%,
    rgba(0,0,0,0.08) 55%,
    rgba(0,0,0,0) 75%
  );
}

.iv-hero-inner{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  z-index: 2;
}

.iv-hero-title{
  font-size: clamp(52px, 4.2vw, 68px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  text-shadow: 0 4px 12px rgba(0,0,0,.35);
}

/* ✅ Desktop force one line */
.iv-hero-sub{
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 400;
  line-height: 1.55;

  max-width: none;          /* remove width limit */
  white-space: nowrap;      /* force single line */
  
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* ===== Mobile ===== */
@media (max-width:768px){

  .iv-hero-image{
    height: 210px;
    background-position: center 62%;
    padding: 0 16px;
  }

  .iv-hero-title{
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  /* Mobile normal wrapping */
  .iv-hero-sub{
    font-size: 14px;
    line-height: 1.45;
    max-width: 90%;
    white-space: normal;   /* allow wrapping */
  }
}
