/* SP: Style riêng cho ô quảng cáo trang chủ. */
.homeAdBanner{
  /* SP: khoảng cách trên/dưới khung quảng cáo */
  margin:8px 0;
  position:relative;
  display:block;
  width:100%;
  box-sizing:border-box;
  padding:10px 12px 8px;
  border:4.5px solid rgba(255,45,117,.72);
  border-radius:18px;
  background:#fff;
  color:#111;
  cursor:pointer;
  overflow:hidden;
  -webkit-tap-highlight-color:rgba(255,45,117,.12);
  box-shadow:0 4px 14px rgba(255,45,117,.06);
  touch-action:pan-y;
}
.homeAdBanner:active{transform:scale(.995);}
.homeAdBanner__viewport{overflow:hidden;}
.homeAdBanner__slide{display:flex;align-items:center;gap:10px;min-height:46px;will-change:transform,opacity;}
.homeAdBanner__slide.is-slide-left{animation:homeAdSlideLeft .38s ease both;}
.homeAdBanner__slide.is-slide-right{animation:homeAdSlideRight .38s ease both;}
.homeAdBanner__icon{flex:0 0 34px;width:34px;height:34px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(255,45,117,.08);font-size:20px;line-height:1;}
.homeAdBanner__text{min-width:0;flex:1;display:flex;flex-direction:column;gap:3px;}
.homeAdBanner__title{font-size:16px;font-weight:588;line-height:1.18;color:#111;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.homeAdBanner__subtitle{font-size:13px;font-weight:500;line-height:1.18;color:rgba(0,0,0,.62);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.homeAdBanner__cta{flex:0 0 32px;width:32px;height:32px;border-radius:999px;display:flex;align-items:center;justify-content:center;background:var(--pink,#ff2d75);color:#fff;font-size:26px;font-weight:588;line-height:1;box-shadow:0 3px 10px rgba(255,45,117,.22);}
.homeAdBanner__dots{display:flex;align-items:center;justify-content:center;gap:5px;margin-top:5px;min-height:6px;}
.homeAdBanner__dot{width:5px;height:5px;border-radius:999px;background:rgba(255,45,117,.24);transition:width .2s ease,background .2s ease;}
.homeAdBanner__dot.is-active{width:14px;background:var(--pink,#ff2d75);}
@keyframes homeAdSlideLeft{from{opacity:.35;transform:translateX(22px);}to{opacity:1;transform:translateX(0);}}
@keyframes homeAdSlideRight{from{opacity:.35;transform:translateX(-22px);}to{opacity:1;transform:translateX(0);}}

/* SP: Trang xem thêm quảng cáo. */
.adDetailPage{padding:0 0 18px;background:#fff;}
.adDetailCard{margin:8px 0 0;padding:18px 14px;border:1.5px solid rgba(255,45,117,.32);border-radius:22px;background:#fff;box-shadow:0 6px 18px rgba(255,45,117,.06);}
.adDetailCard__icon{width:46px;height:46px;border-radius:16px;display:flex;align-items:center;justify-content:center;background:rgba(255,45,117,.08);font-size:26px;margin-bottom:12px;}
.adDetailCard__title{margin:0 0 8px;font-size:20px;line-height:1.22;font-weight:588;color:#111;}
.adDetailCard__subtitle{margin:0 0 14px;font-size:16px;line-height:1.35;font-weight:500;color:var(--pink,#ff2d75);}
.adDetailCard__text{margin:0;font-size:16px;line-height:1.5;font-weight:400;color:rgba(0,0,0,.75);}
.adDetailActions{display:flex;gap:10px;margin-top:16px;}
.adDetailActions__btn{height:44px;border-radius:999px;border:1.5px solid rgba(0,0,0,.12);background:#fff;color:#111;font-size:16px;font-weight:588;padding:0 16px;display:inline-flex;align-items:center;justify-content:center;}
.adDetailActions__btn--primary{background:var(--pink,#ff2d75);border-color:var(--pink,#ff2d75);color:#fff;flex:1;}
