/* =========================
   NAVIGATION
========================= */
.ark-test-header{
  display:flex;
  justify-content:flex-end;
  margin-bottom:25px;
}

.ark-prev,
.ark-next{
  width:48px;
  height:48px;
  border-radius:12px;
  border:0;
  background:#FBDD97;
  margin-left:10px;
  cursor:pointer;
  position:relative;
}

.ark-prev::before,
.ark-next::before{
  content:'';
  position:absolute;
  inset:0;
  margin:auto;
  width:22px;
  height:22px;
  background:#000;
  mask-size:22px;
  mask-repeat:no-repeat;
  mask-position:center;
}

.ark-prev::before{
  mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="black" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M15 19l-7-7 7-7"/></svg>');
}

.ark-next::before{
  mask-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="black" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M9 5l7 7-7 7"/></svg>');
}

/* =========================
   TESTIMONIAL CARD
========================= */
.ark-card{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:clamp(20px, 3vw, 40px);
  background:#fff;
  padding:22px;
  border-radius:24px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  max-width:1100px;
  margin-inline:auto;
  align-items:stretch;
  overflow:hidden;
}

/* =========================
   MEDIA
========================= */
.ark-media{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:#000;
  aspect-ratio:3 / 4;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ark-thumb{
  width:100%;
  height:100%;
  object-fit:cover;
}

.ark-inline{
  position:absolute;
  inset:0;
  width:100% !important;
  height:100% !important;
}

/* =========================
   PLAY BUTTON
========================= */
.ark-play{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  border:none;
  background:transparent;
  cursor:pointer;
}

.ark-play-icon{
  width:76px;
  height:76px;
  border-radius:999px;
  background:rgba(255,255,255,0.95);
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  position:relative;
}

.ark-play-icon::before{
  content:'';
  position:absolute;
  left:30px;
  top:22px;
  border-style:solid;
  border-width:16px 0 16px 22px;
  border-color:transparent transparent transparent #111;
}

.ark-close{
  position:absolute;
  top:10px;
  left:10px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:rgba(0,0,0,0.6);
  color:#fff;
  z-index:9;
  cursor:pointer;
}

/* =========================
   CONTENT
========================= */
.ark-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.ark-text{
  font-size:16px;
  line-height:1.6;
  margin-bottom:18px;
}

.ark-name{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
}

.ark-country{
  color:#6b7280;
  font-size:14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px){
  .ark-card{
    grid-template-columns:1fr;
    gap:24px;
  }

  .ark-media{
    aspect-ratio:4 / 5;
  }
}