.img-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 142%; /* giữ tỉ lệ khung ảnh */
  overflow: hidden;
}

.img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Spinner giữa khung, quay tại chỗ */
.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -15px;  /* bằng nửa chiều cao */
  margin-left: -15px; /* bằng nửa chiều rộng */
  width: 30px;
  height: 30px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 2;
}

/* Ẩn spinner khi ảnh load xong */
.img-wrapper img.lazyloaded ~ .spinner {
  display: none;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}