/* ── Wrapper ── */
.cm-grid-wrapper {
  position: relative;
  overflow: hidden;
}

/* ── Grid ── */
.cm-grid {
  display: grid;
  gap: 10px;
}

.cm-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
  will-change: transform, filter;
  border-radius: 10px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── Custom Cursor ── */
.cm-cursor {
  position: fixed;
  width: 200px;
  height: 200px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.25s ease;
}
