.crafts-page {
  background: #222017;
  border-radius: 20px;
  max-width: 1200px;
  margin: 44px auto 38px auto;
  color: #f7ecd4;
  font-family: 'Merriweather', 'MedievalSharp', serif;
  font-size: 1.16em;
  padding: 30px 10px;
}

.craft-page-title {
  color: #ffe189;
  font-size: 2em;
  margin-bottom: 13px;
  letter-spacing: 1.5px;
  font-family: 'MedievalSharp', serif;
}

.craft-intro {
  font-size: 1.05em;
  margin-bottom: 32px;
  color: #e8dac3;
}

.custom-crafts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 32px;
  justify-content: center;
}

/* One craft "card" */
.custom-craft-mc {
  background: #c8c8c8;
  border-radius: 12px;
  box-shadow: 0 2px 16px #0002;
  padding: 22px 44px;
  min-width: 420px;
  max-width: 560px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Align grid, arrow, result horizontally */
.craft-mc-flexrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* 3x3 grid, LARGE version */
.craft-mc-grid.large {
  display: flex;
  flex-direction: column;
  margin-right: 26px;
  margin-left: 6px;
}

.craft-mc-row {
  display: flex;
}

.mc-slot.large {
  width: 64px;
  height: 64px;
  background: #969696;
  border: 3px solid #232323;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 2.5px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  user-select: none;
  transition: background 0.07s;
  overflow: hidden;
  position: relative;
}

.mc-slot.large img {
  width: 38px;
  height: 38px;
  image-rendering: pixelated;
  filter: drop-shadow(0 1px 2px #5556);
}

.mc-slot.large:empty {
  background: #bdbdbd;
  border: 3px solid #232323;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

/* Flèche grande */
.mc-arrow.large {
  width: 90px;
  height: 18px;
  margin: 0 15px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mc-arrow.large:before {
  content: "";
  display: inline-block;
  width: 70px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="70" height="18"><polygon points="0,8 56,8 56,3 70,9 56,15 56,10 0,10" fill="gray"/></svg>') no-repeat center center;
}

/* Case résultat grande */
.mc-result-slot.large {
  width: 72px;
  height: 72px;
  background: #969696;
  border: 3px solid #232323;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-left: 14px;
  user-select: none;
  overflow: hidden;
  position: relative;
}

.mc-result-slot.large img {
  width: 46px;
  height: 46px;
  image-rendering: pixelated;
  filter: drop-shadow(0 1px 2px #5556);
}

@media (max-width: 900px) {
  .custom-craft-mc {
    min-width: 220px;
    max-width: 99vw;
    padding: 10px 1vw;
  }
  .craft-mc-grid.large {
    margin-right: 10px;
  }
  .mc-arrow.large {
    margin: 0 5px;
  }
  .mc-result-slot.large {
    margin-left: 5px;
  }
}