
/* iPhone 18 release card — compact/mobile optimized */
.home-release{
  position:relative;
  width:100%;
  max-width:920px;
  margin:4px auto 14px;
  border:1px solid rgba(240,98,150,.25);
  border-radius:20px;
  overflow:hidden;
  background:var(--card);
  box-shadow:0 10px 28px rgba(0,0,0,.11),0 0 22px rgba(240,98,150,.06);
}
.home-release__media{
  display:block;
  width:100%;
  aspect-ratio:16/8.2;
  object-fit:cover;
  object-position:center;
  background:#000;
}
.home-release__body{padding:14px 16px 15px}
.home-release__eyebrow{
  margin:0 0 4px;
  color:var(--pink2);
  font-size:10px;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase
}
.home-release__title{
  margin:0;
  font-size:clamp(20px,4.5vw,26px);
  line-height:1.08;
  letter-spacing:-.025em
}
.home-release__text{
  margin:7px 0 12px;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.4;
  max-width:58ch
}
.home-release__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:13px;
  text-decoration:none;
  color:#fff;
  font-size:13.5px;
  font-weight:700;
  background:var(--grad);
  box-shadow:0 7px 18px rgba(180,35,85,.17);
  -webkit-tap-highlight-color:transparent
}
.home-release__cta:active{transform:translateY(1px)}

@media(max-width:719px){
  .home-release{
    max-width:100%;
    margin:2px 0 10px;
    border-radius:17px;
  }
  .home-release__media{
    aspect-ratio:16/8.7;
  }
  .home-release__body{
    padding:11px 12px 12px;
  }
  .home-release__eyebrow{
    font-size:9px;
    margin-bottom:3px;
  }
  .home-release__title{
    font-size:20px;
  }
  .home-release__text{
    margin:6px 0 10px;
    font-size:12.5px;
    line-height:1.38;
  }
  .home-release__cta{
    width:100%;
    min-height:42px;
    padding:0 12px;
    font-size:12.5px;
    border-radius:12px;
  }
}

@media(max-width:390px){
  .home-release{
    margin-bottom:8px;
    border-radius:15px;
  }
  .home-release__media{
    aspect-ratio:16/9;
  }
  .home-release__body{
    padding:10px 11px 11px;
  }
  .home-release__title{
    font-size:18px;
  }
  .home-release__text{
    font-size:12px;
    margin:5px 0 9px;
  }
  .home-release__cta{
    min-height:40px;
    font-size:12px;
  }
}
