.ak-gallery{
  display:flex;
  flex-direction:column;
  gap:10px;
  width:45%;
}

.ak-gallery-main{
  position:relative;
  overflow:hidden;
  border-radius:10px;
}

.ak-gallery-main-img{
  width:100%;
  height:auto;
  display:block;
  transform:scale(1);
  transition:transform .2s ease;
}

.ak-gallery-main:hover .ak-gallery-main-img{
  transform:scale(1.06);
}

.ak-gallery-thumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.ak-gallery-thumb{
  border:1px solid #ddd;
  background:#fff;
  padding:0;
  border-radius:8px;
  cursor:pointer;
  overflow:hidden;
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ak-gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ak-gallery-thumb.is-active{
  border-color:#2271b1;
  box-shadow:0 0 0 2px rgba(34,113,177,.15);
}
