.mx-project-index {
  padding-bottom: 112px;
}

.mx-other-practice {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding-bottom: 180px;
}

.mx-other-practice__title {
  margin: 0 0 52px;
  color: #252525;
  font: 400 clamp(36px, 2.8vw, 48px)/1.15 "Barlow", Arial, sans-serif;
  letter-spacing: -0.025em;
  text-align: center;
}

.mx-other-practice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mx-other-practice__card {
  position: relative;
  min-width: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 38px rgba(0, 0, 0, 0.055);
}

.mx-other-practice__card::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  height: 48%;
  border-radius: 12px;
  background: #f6f6f6;
  content: "";
}

@media (max-width: 960px) {
  .mx-other-practice {
    width: min(760px, calc(100% - 48px));
    padding-bottom: 140px;
  }

  .mx-other-practice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 600px) {
  .mx-project-index {
    padding-bottom: 96px;
  }

  .mx-other-practice {
    width: calc(100% - 32px);
    padding-bottom: 120px;
  }

  .mx-other-practice__title {
    margin-bottom: 32px;
    font-size: 36px;
  }

  .mx-other-practice__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .mx-other-practice__card {
    min-height: 280px;
  }
}

/* Album Gallery reuses the same white frame as the project's framed media cards. */
.mx-other-practice__card--album {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #121212;
  box-shadow: 0 4.6px 27.6px rgba(0, 0, 0, 0.08), 0 0 2.3px rgba(0, 0, 0, 0.25);
  color: #252525;
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.mx-other-practice__card--album::after { display: none; }
.mx-other-practice__album-stage {
  --album-preview-scale: 1;
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: #121212;
  pointer-events: none;
}
.mx-other-practice__album-live {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #121212;
  object-fit: contain;
  pointer-events: none;
}
.mx-other-practice__card--album:focus,
.mx-other-practice__card--album:focus-visible {
  outline: none;
}
