
/* checkxl-6 vo-g-mtx2929a */
.vo-g-mtx2929a {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, clamp(150px, 16.6vw, 260px));
  grid-template-areas: "a a b b" "a a c c" "d d e e" "f f e e";
  gap: clamp(8px, 1.1vw, 16px);
}
.vo-g-mtx2929a figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}
.vo-g-mtx2929a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.vo-g-mtx2929a figure:hover img { transform: scale(1.04); }
.vo-g-mtx2929a figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #10C5A7;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.vo-g-mtx2929a figure:hover::after { opacity: 0.85; }
.vo-g-mtx2929a .vo-s-a { grid-area: a; }
.vo-g-mtx2929a .vo-s-b { grid-area: b; }
.vo-g-mtx2929a .vo-s-c { grid-area: c; }
.vo-g-mtx2929a .vo-s-d { grid-area: d; }
.vo-g-mtx2929a .vo-s-e { grid-area: e; }
.vo-g-mtx2929a .vo-s-f { grid-area: f; }
.vo-g-mtx2929a .vo-s-a img { object-position: 50% 40%; }
.vo-g-mtx2929a .vo-s-d img { object-position: 35% 50%; }
.vo-g-mtx2929a .vo-s-e img { object-position: 30% 50%; }
@media (max-width: 768px) {
  .vo-g-mtx2929a {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(12, clamp(140px, 24vw, 210px));
    grid-template-areas: "a a" "a a" "b b" "b b" "c c" "c c" "d d" "d d" "e e" "e e" "f f" "f f";
  }
}
@media (max-width: 480px) {
  .vo-g-mtx2929a { grid-template-rows: repeat(12, clamp(110px, 30vw, 170px)); }
}
@media (prefers-reduced-motion: reduce) {
  .vo-g-mtx2929a img, .vo-g-mtx2929a figure::after { transition: none; }
  .vo-g-mtx2929a figure:hover img { transform: none; }
}
