/* =========================
   WWEB Album Pro - Frontend
   ========================= */

.wwa-wrap{
  width: 100%;
  margin: 18px 0;
}

/* ===== CARD ===== */
.wwa-card{
  position: relative;
  display: block;
  border-radius: var(--wwa-radius, 18px);
  overflow: hidden;
  background: #0b1220;
  transform: translateZ(0);
  box-shadow:
    0 18px 45px rgba(0,0,0,.18),
    0 2px 10px rgba(0,0,0,.12);
  transition: transform .28s ease, box-shadow .28s ease;
}

.wwa-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.00) 40%,
    rgba(0,0,0,.18) 100%
  );
  opacity: .9;
  pointer-events:none;
}

.wwa-card img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .7s ease, filter .7s ease;
  filter: saturate(1.06) contrast(1.04);
  will-change: transform;
}

.wwa-card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 26px 70px rgba(0,0,0,.22),
    0 8px 16px rgba(0,0,0,.12);
}

.wwa-card:hover img{
  transform: scale(1.07);
  filter: saturate(1.16) contrast(1.06);
}

/* glow highlight */
.wwa-glow{
  position:absolute;
  inset:-35%;
  background: radial-gradient(circle at 28% 28%, rgba(255,255,255,.20), transparent 62%);
  opacity:.7;
  transform: rotate(12deg);
  pointer-events:none;
  mix-blend-mode: screen;
}

/* =========================
   Slider (Swiper)
   ========================= */
.wwa-swiper{
  position: relative;
  padding: 18px 10px 34px;
}

.wwa-swiper .swiper-wrapper{
  align-items: stretch;
}

.wwa-swiper .swiper-slide{
  height: auto;
}

/* nav overlay */
.wwa-nav{
  position:absolute;
  inset: 0;
  pointer-events:none;
}

.wwa-btn{
  pointer-events:auto;
  position:absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.18);
  background: rgba(15, 23, 42, .62);
  backdrop-filter: blur(10px);

  color: #fff;
  font-size: 28px;
  line-height: 42px;
  cursor: pointer;

  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.wwa-btn:hover{
  transform: translateY(-55%) scale(1.06);
  background: rgba(15, 23, 42, .86);
  border-color: rgba(255,255,255,.28);
}

.wwa-btn:active{
  transform: translateY(-55%) scale(0.98);
}

.wwa-prev{ left: 8px; }
.wwa-next{ right: 8px; }

/* pagination */
.wwa-swiper .swiper-pagination{
  bottom: 8px !important;
}

.wwa-swiper .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  opacity: .35;
  transform: scale(.95);
}

.wwa-swiper .swiper-pagination-bullet-active{
  opacity: 1;
  transform: scale(1.12);
}

/* =========================
   Marquee (băng chuyền)
   ========================= */
.wwa-marquee{
  overflow:hidden;
  padding: 12px 0;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.wwa-marquee-track{
  display:flex;
  gap: var(--wwa-gap, 18px);
  width:max-content;
  will-change: transform;
  animation: wwa-marquee var(--wwa-marquee-seconds, 26s) linear infinite;
}

.wwa-marquee .wwa-card{
  flex: 0 0 auto;
}

.wwa-marquee .wwa-card img{
  height: 220px;
  width: 360px;
}

.wwa-marquee:hover .wwa-marquee-track{
  animation-play-state: paused;
}

@keyframes wwa-marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* =========================
   Lightbox
   ========================= */
.wwa-lb{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}

.wwa-lb.is-open{
  display:block;
}

.wwa-lb__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.86);
  opacity: 0;
  animation: wwa-fade-in .18s ease forwards;
}

.wwa-lb[data-style="glass"] .wwa-lb__backdrop{
  background: rgba(10, 15, 25, .55);
  backdrop-filter: blur(16px);
}

.wwa-lb__stage{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 22px;
}

.wwa-lb__img{
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width:auto;
  height:auto;

  border-radius: 16px;
  background: rgba(0,0,0,.22);

  box-shadow:
    0 30px 90px rgba(0,0,0,.50),
    0 12px 24px rgba(0,0,0,.25);

  opacity: 0;
  transform: translateY(8px) scale(.98);
  animation: wwa-pop-in .20s ease forwards;
}

@keyframes wwa-fade-in{
  to { opacity: 1; }
}
@keyframes wwa-pop-in{
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* top bar */
.wwa-lb__top{
  position:absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  pointer-events:none;
}

.wwa-lb__counter{
  pointer-events:none;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.wwa-lb__close{
  pointer-events:auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.18);
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(10px);

  color:#fff;
  font-size: 22px;
  cursor:pointer;

  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.wwa-lb__close:hover{
  transform: scale(1.06);
  background: rgba(15, 23, 42, .82);
  border-color: rgba(255,255,255,.28);
}

.wwa-lb__close:active{ transform: scale(.98); }

/* nav */
.wwa-lb__nav{
  position:absolute;
  inset: 0;
  pointer-events:none;
}

.wwa-lb__btn{
  pointer-events:auto;
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.18);
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(10px);

  color:#fff;
  font-size: 30px;
  line-height: 46px;
  cursor:pointer;

  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.wwa-lb__btn:hover{
  transform: translateY(-50%) scale(1.06);
  background: rgba(15, 23, 42, .82);
  border-color: rgba(255,255,255,.28);
}

.wwa-lb__btn:active{
  transform: translateY(-50%) scale(.98);
}

.wwa-lb__prev{ left: 12px; }
.wwa-lb__next{ right: 12px; }

/* disable body scroll when open */
body.wwa-lb-lock{ overflow:hidden; }

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px){
  .wwa-card img{ height: 240px; }
  .wwa-marquee .wwa-card img{ width: 320px; height: 200px; }
}

@media (max-width: 640px){
  .wwa-card img{ height: 210px; }
  .wwa-btn{ display:none; }

  .wwa-marquee .wwa-card img{ width: 260px; height: 180px; }

  .wwa-lb__btn{ display:none; }
  .wwa-lb__img{ max-height: 82vh; border-radius: 14px; }
}
.wwa-wrap{ width:100%; margin:18px 0; }

/* ===== CARD ===== */
.wwa-card{
  position: relative;
  display: block;
  border-radius: var(--wwa-radius, 18px);
  overflow: hidden;
  background: #0b1220;
  transform: translateZ(0);
  box-shadow: 0 18px 45px rgba(0,0,0,.18), 0 2px 10px rgba(0,0,0,.12);
  transition: transform .28s ease, box-shadow .28s ease;
}
.wwa-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transition: transform .7s ease, filter .7s ease;
  filter: saturate(1.06) contrast(1.04);
  will-change: transform;
}
.wwa-card:hover{ transform: translateY(-2px); box-shadow:0 26px 70px rgba(0,0,0,.22), 0 8px 16px rgba(0,0,0,.12); }
.wwa-card:hover img{ transform: scale(1.07); filter:saturate(1.16) contrast(1.06); }

.wwa-glow{
  position:absolute;
  inset:-35%;
  background: radial-gradient(circle at 28% 28%, rgba(255,255,255,.20), transparent 62%);
  opacity:.7;
  transform: rotate(12deg);
  pointer-events:none;
  mix-blend-mode: screen;
}

/* zoom button (để mở lightbox khi ảnh có URL) */
.wwa-zoom{
  position:absolute;
  right:10px;
  top:10px;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(10px);
  color:#fff;
  font-size:18px;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  opacity:0;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, background .2s ease;
}
.wwa-card:hover .wwa-zoom{
  opacity:1;
  transform: translateY(0);
}
.wwa-zoom:hover{ background: rgba(15, 23, 42, .85); }
.wwa-zoom:active{ transform: scale(.98); }

/* ===== Slider ===== */
.wwa-swiper{ position:relative; padding:18px 10px 34px; }
.wwa-swiper .swiper-wrapper{ align-items:stretch; }
.wwa-swiper .swiper-slide{ height:auto; }

.wwa-nav{ position:absolute; inset:0; pointer-events:none; }
.wwa-btn{
  pointer-events:auto;
  position:absolute;
  top:50%;
  transform: translateY(-55%);
  width:44px; height:44px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(15, 23, 42, .62);
  backdrop-filter: blur(10px);
  color:#fff; font-size:28px; line-height:42px;
  cursor:pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.wwa-btn:hover{ transform: translateY(-55%) scale(1.06); background: rgba(15,23,42,.86); border-color:rgba(255,255,255,.28); }
.wwa-prev{ left:8px; } .wwa-next{ right:8px; }

.wwa-swiper .swiper-pagination{ bottom:8px !important; }
.wwa-swiper .swiper-pagination-bullet{ width:8px; height:8px; opacity:.35; }
.wwa-swiper .swiper-pagination-bullet-active{ opacity:1; transform:scale(1.12); }

/* ===== Marquee ===== */
.wwa-marquee{
  overflow:hidden;
  padding:12px 0;
}
.wwa-marquee--h{
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.wwa-marquee--v{
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  height: 520px; /* bạn có thể chỉnh cao/thấp */
}

.wwa-marquee-track{
  display:flex;
  gap: var(--wwa-gap, 18px);
  width:max-content;
  will-change: transform;
}

.wwa-marquee--h .wwa-marquee-track{
  flex-direction: row;
  animation: wwa-marquee-h var(--wwa-marquee-seconds, 26s) linear infinite;
}
.wwa-marquee--v .wwa-marquee-track{
  flex-direction: column;
  animation: wwa-marquee-v var(--wwa-marquee-seconds, 26s) linear infinite;
}

.wwa-marquee .wwa-card{ flex:0 0 auto; }
.wwa-marquee--h .wwa-card img{ height:220px; width:360px; }
.wwa-marquee--v .wwa-card img{ height:220px; width:520px; } /* dọc thường cần rộng hơn */

.wwa-marquee:hover .wwa-marquee-track{ animation-play-state: paused; }

@keyframes wwa-marquee-h{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
@keyframes wwa-marquee-v{
  0%{ transform: translateY(0); }
  100%{ transform: translateY(-50%); }
}

/* ===== Lightbox (giữ nguyên phần bạn đang có) ===== */
.wwa-lb{ position:fixed; inset:0; z-index:999999; display:none; }
.wwa-lb.is-open{ display:block; }
.wwa-lb__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.86); }
.wwa-lb[data-style="glass"] .wwa-lb__backdrop{ background: rgba(10,15,25,.55); backdrop-filter: blur(16px); }
.wwa-lb__stage{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; padding:22px; }
.wwa-lb__img{
  max-width:min(1100px, 92vw);
  max-height:86vh;
  width:auto; height:auto;
  border-radius:16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.50), 0 12px 24px rgba(0,0,0,.25);
  background: rgba(0,0,0,.22);
}
.wwa-lb__top{ position:absolute; top:12px; left:12px; right:12px; display:flex; justify-content:space-between; align-items:center; gap:12px; pointer-events:none; }
.wwa-lb__counter{ pointer-events:none; color:rgba(255,255,255,.86); font-size:14px; text-shadow:0 2px 10px rgba(0,0,0,.35); }
.wwa-lb__close{
  pointer-events:auto;
  width:42px; height:42px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  color:#fff; font-size:22px; cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}
.wwa-lb__nav{ position:absolute; inset:0; pointer-events:none; }
.wwa-lb__btn{
  pointer-events:auto;
  position:absolute; top:50%; transform: translateY(-50%);
  width:48px; height:48px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  color:#fff; font-size:30px; line-height:46px; cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}
.wwa-lb__btn:hover{ transform: translateY(-50%) scale(1.06); }
.wwa-lb__prev{ left:12px; } .wwa-lb__next{ right:12px; }
body.wwa-lb-lock{ overflow:hidden; }

@media (max-width: 1024px){
  .wwa-card img{ height:240px; }
  .wwa-marquee--h .wwa-card img{ width:320px; height:200px; }
  .wwa-marquee--v .wwa-card img{ width:420px; height:200px; }
  .wwa-marquee--v{ height: 460px; }
}
@media (max-width: 640px){
  .wwa-card img{ height:210px; }
  .wwa-btn{ display:none; }
  .wwa-marquee--h .wwa-card img{ width:260px; height:180px; }
  .wwa-marquee--v .wwa-card img{ width:320px; height:180px; }
  .wwa-marquee--v{ height: 380px; }
  .wwa-lb__btn{ display:none; }
  .wwa-lb__img{ max-height:82vh; border-radius:14px; }
}
.wwa-wrap{ width:100%; margin:18px 0; }

/* ===== CARD ===== */
.wwa-card{
  position: relative;
  display:block;
  border-radius: var(--wwa-radius, 18px);
  overflow:hidden;
  background:#0b1220;
  transform: translateZ(0);
  box-shadow: 0 18px 45px rgba(0,0,0,.18), 0 2px 10px rgba(0,0,0,.12);
  transition: transform .28s ease, box-shadow .28s ease;
}
.wwa-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  transition: transform .7s ease, filter .7s ease;
  filter:saturate(1.06) contrast(1.04);
  will-change: transform;
}
.wwa-card:hover{ transform: translateY(-2px); box-shadow:0 26px 70px rgba(0,0,0,.22), 0 8px 16px rgba(0,0,0,.12); }
.wwa-card:hover img{ transform: scale(1.07); filter:saturate(1.16) contrast(1.06); }

.wwa-glow{
  position:absolute;
  inset:-35%;
  background: radial-gradient(circle at 28% 28%, rgba(255,255,255,.20), transparent 62%);
  opacity:.7;
  transform: rotate(12deg);
  pointer-events:none;
  mix-blend-mode: screen;
}

/* ===== A: Caption + CTA ===== */
.wwa-cap{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 14px 14px 12px;
  color: rgba(255,255,255,.92);
  pointer-events:none;
  opacity:0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
  background: linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,0));
}
.wwa-card:hover .wwa-cap{
  opacity:1;
  transform: translateY(0);
}

.wwa-cap__t{
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 4px;
  text-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.wwa-cap__n{
  font-size: 13px;
  opacity: .9;
  line-height: 1.35;
  margin-bottom: 10px;
  text-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.wwa-cap__btn{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

/* zoom button (mở lightbox khi ảnh có URL) */
.wwa-zoom{
  position:absolute;
  right:10px;
  top:10px;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(10px);
  color:#fff;
  font-size:18px;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  opacity:0;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, background .2s ease;
}
.wwa-card:hover .wwa-zoom{ opacity:1; transform: translateY(0); }
.wwa-zoom:hover{ background: rgba(15, 23, 42, .85); }
.wwa-zoom:active{ transform: scale(.98); }

/* ===== Slider ===== */
.wwa-swiper{ position:relative; padding:18px 10px 34px; }
.wwa-swiper .swiper-wrapper{ align-items:stretch; }
.wwa-swiper .swiper-slide{ height:auto; }

.wwa-nav{ position:absolute; inset:0; pointer-events:none; }
.wwa-btn{
  pointer-events:auto;
  position:absolute;
  top:50%;
  transform: translateY(-55%);
  width:44px; height:44px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(15, 23, 42, .62);
  backdrop-filter: blur(10px);
  color:#fff; font-size:28px; line-height:42px;
  cursor:pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.wwa-btn:hover{ transform: translateY(-55%) scale(1.06); background: rgba(15,23,42,.86); border-color:rgba(255,255,255,.28); }
.wwa-prev{ left:8px; } .wwa-next{ right:8px; }

.wwa-swiper .swiper-pagination{ bottom:8px !important; }
.wwa-swiper .swiper-pagination-bullet{ width:8px; height:8px; opacity:.35; }
.wwa-swiper .swiper-pagination-bullet-active{ opacity:1; transform:scale(1.12); }

/* ===== B: Ken Burns cho preset Fade =====
   (chỉ chạy ở slide active, không ảnh hưởng coverflow)
*/
.wwa-wrap[data-wwa-preset="fade"] .swiper-slide-active .wwa-card img{
  animation: wwa-kenburns 6.5s ease-in-out forwards;
  transform-origin: 40% 40%;
}
@keyframes wwa-kenburns{
  0%   { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.12) translate3d(-2%, -2%, 0); }
}

/* ===== Marquee ===== */
.wwa-marquee{ overflow:hidden; padding:12px 0; }
.wwa-marquee--h{
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.wwa-marquee--v{
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  height: 520px;
}
.wwa-marquee-track{
  display:flex;
  gap: var(--wwa-gap, 18px);
  width:max-content;
  will-change: transform;
}
.wwa-marquee--h .wwa-marquee-track{ flex-direction:row; animation: wwa-marquee-h var(--wwa-marquee-seconds, 26s) linear infinite; }
.wwa-marquee--v .wwa-marquee-track{ flex-direction:column; animation: wwa-marquee-v var(--wwa-marquee-seconds, 26s) linear infinite; }

.wwa-marquee .wwa-card{ flex:0 0 auto; }
.wwa-marquee--h .wwa-card img{ height:220px; width:360px; }
.wwa-marquee--v .wwa-card img{ height:220px; width:520px; }

.wwa-marquee:hover .wwa-marquee-track{ animation-play-state: paused; }

@keyframes wwa-marquee-h{ 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes wwa-marquee-v{ 0%{transform:translateY(0)} 100%{transform:translateY(-50%)} }

/* ===== Lightbox (giữ như cũ) ===== */
.wwa-lb{ position:fixed; inset:0; z-index:999999; display:none; }
.wwa-lb.is-open{ display:block; }
.wwa-lb__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.86); }
.wwa-lb[data-style="glass"] .wwa-lb__backdrop{ background: rgba(10,15,25,.55); backdrop-filter: blur(16px); }
.wwa-lb__stage{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; padding:22px; }
.wwa-lb__img{
  max-width:min(1100px, 92vw);
  max-height:86vh;
  width:auto; height:auto;
  border-radius:16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.50), 0 12px 24px rgba(0,0,0,.25);
  background: rgba(0,0,0,.22);
}
.wwa-lb__top{ position:absolute; top:12px; left:12px; right:12px; display:flex; justify-content:space-between; align-items:center; gap:12px; pointer-events:none; }
.wwa-lb__counter{ pointer-events:none; color:rgba(255,255,255,.86); font-size:14px; text-shadow:0 2px 10px rgba(0,0,0,.35); }
.wwa-lb__close{
  pointer-events:auto;
  width:42px; height:42px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  color:#fff; font-size:22px; cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}
.wwa-lb__nav{ position:absolute; inset:0; pointer-events:none; }
.wwa-lb__btn{
  pointer-events:auto;
  position:absolute; top:50%; transform: translateY(-50%);
  width:48px; height:48px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  color:#fff; font-size:30px; line-height:46px; cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}
.wwa-lb__btn:hover{ transform: translateY(-50%) scale(1.06); }
.wwa-lb__prev{ left:12px; } .wwa-lb__next{ right:12px; }
body.wwa-lb-lock{ overflow:hidden; }

@media (max-width: 1024px){
  .wwa-card img{ height:240px; }
  .wwa-marquee--h .wwa-card img{ width:320px; height:200px; }
  .wwa-marquee--v .wwa-card img{ width:420px; height:200px; }
  .wwa-marquee--v{ height: 460px; }
}
@media (max-width: 640px){
  .wwa-card img{ height:210px; }
  .wwa-btn{ display:none; }
  .wwa-marquee--h .wwa-card img{ width:260px; height:180px; }
  .wwa-marquee--v .wwa-card img{ width:320px; height:180px; }
  .wwa-marquee--v{ height: 380px; }
  .wwa-lb__btn{ display:none; }
  .wwa-lb__img{ max-height:82vh; border-radius:14px; }

  /* caption gọn hơn trên mobile */
  .wwa-cap{ padding: 12px; }
  .wwa-cap__t{ font-size:14px; }
  .wwa-cap__n{ font-size:12px; }
}
