.mon-row {
  grid-template-columns: 46px minmax(0, 1fr) 66px 118px 118px 134px 16px;
}

.mon-row__ico {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mon-row__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  image-rendering: auto;
}

.mon-row__lvl,
.mon-row__hp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dms-navy-900, #0e1b4d);
}

.mon-row__lvl small,
.mon-row__hp small,
.mon-row__exp small {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dms-muted, #6b7280);
}

.mon-row__region {
  justify-self: center;
  text-align: center;
}

.mon-row__exp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--dms-navy-900, #0e1b4d);
}

.mon-badge--boss {
  background: linear-gradient(135deg, #7b1fa2, #b23bd6) !important;
}

.mon-badge--quest {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--dms-accent, #f82249), var(--dms-accent-2, #ff5b7b));
}

.mon-hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
}

.quest-hero__npc.mon-hero__art {
  max-width: 360px;
}

.mon-hero__img {
  max-width: 340px;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(14, 27, 77, .28));
}

@media (max-width: 767px) {
  .quest-hero__npc.mon-hero__art { max-width: 100%; }
  .mon-hero__img { max-width: 100%; }
}

.mon-hero .quest-hero__eyebrow em { margin-left: 0; }

.mon-hero .quest-hpill { padding: 6px 13px 4px; }

.mon-elpill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mon-elpill.is-weak { background: rgba(31, 157, 87, .16); color: #fff; }
.mon-elpill.is-resist { background: rgba(199, 125, 10, .16); color: #fff; }
.mon-elpill.is-immune { background: rgba(209, 59, 59, .16); color: #fff; }

.mon-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.mon-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--dms-paper-2, #f7f8fc);
  border: 1px solid var(--dms-border, rgba(14, 27, 77, .10));
}

.mon-stat--key {
  background: linear-gradient(135deg, rgba(248, 34, 73, .08), rgba(255, 91, 123, .08));
  border-color: rgba(248, 34, 73, .22);
}

.mon-stat__l {
  font-size: 12px;
  font-weight: 600;
  color: var(--dms-muted, #6b7280);
}

.mon-stat__v {
  font-size: 15px;
  font-weight: 700;
  color: var(--dms-navy-900, #0e1b4d);
}

.mon-res {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mon-reschip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 11px;
  border: 1px solid var(--dms-border, rgba(14, 27, 77, .10));
  background: var(--dms-paper-2, #f7f8fc);
}

.mon-reschip i { font-size: 15px; }
.mon-reschip__el { font-weight: 700; font-size: 13.5px; color: var(--dms-navy-900, #0e1b4d); }
.mon-reschip__ef { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

.mon-reschip.is-weak { background: rgba(31, 157, 87, .12); border-color: rgba(31, 157, 87, .3); }
.mon-reschip.is-weak i, .mon-reschip.is-weak .mon-reschip__ef { color: #12703d; }
.mon-reschip.is-resist { background: rgba(199, 125, 10, .12); border-color: rgba(199, 125, 10, .3); }
.mon-reschip.is-resist i, .mon-reschip.is-resist .mon-reschip__ef { color: #8a5606; }
.mon-reschip.is-immune { background: rgba(209, 59, 59, .12); border-color: rgba(209, 59, 59, .3); }
.mon-reschip.is-immune i, .mon-reschip.is-immune .mon-reschip__ef { color: #a52020; }

.mon-res__none,
.mon-loc__none {
  color: var(--dms-muted, #6b7280);
  font-size: 14px;
  margin: 0;
}

.mon-res__key {
  margin: 12px 0 0;
  font-size: 11.5px;
  color: var(--dms-muted, #6b7280);
}

.mon-res__key b { color: var(--dms-navy-700, #1d2f6b); }

.mon-locgroup { margin-bottom: 12px; }
.mon-locgroup:last-child { margin-bottom: 0; }

.mon-locgroup__h {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--dms-muted, #6b7280);
  margin-bottom: 6px;
}

.mon-locgroup__maps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mon-locmap {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border-radius: 10px;
  background: var(--dms-paper-2, #f7f8fc);
  border: 1px solid var(--dms-border, rgba(14, 27, 77, .10));
  color: var(--dms-navy-900, #0e1b4d);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.mon-locmap:hover {
  transform: translateY(-1px);
  box-shadow: var(--dms-shadow, 0 6px 16px rgba(14, 27, 77, .12));
}

.mon-locmap i { color: var(--dms-accent, #f82249); font-size: 13px; }
.mon-locmap span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.mon-locmap__tag {
  margin-left: auto;
  flex: none;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #8a5606;
  background: rgba(199, 125, 10, .16);
}

.mon-locmap__tag--boss {
  color: #7b1fa2;
  background: rgba(123, 31, 162, .14);
}

.mon-summonlist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mon-summon {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 13px 6px 8px;
  border-radius: 999px;
  background: var(--dms-paper-2, #f7f8fc);
  border: 1px solid var(--dms-border, rgba(14, 27, 77, .10));
  color: var(--dms-navy-900, #0e1b4d);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.mon-summon:hover {
  transform: translateY(-1px);
  box-shadow: var(--dms-shadow, 0 6px 16px rgba(14, 27, 77, .12));
}

.mon-summon__ico {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mon-summon__img { max-width: 100%; max-height: 100%; object-fit: contain; }

.mon-drops__cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--dms-muted, #6b7280);
  margin: 14px 0 6px;
}

.mon-drops__cat:first-child { margin-top: 0; }

.mon-droplist {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mon-drop {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--dms-paper-2, #f7f8fc);
  border: 1px solid var(--dms-border, rgba(14, 27, 77, .10));
}

.mon-drop__ico {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mon-drop__ico img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mon-drop__ico i { color: #d9a406; font-size: 18px; }

.mon-drop__name {
  min-width: 0;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--dms-navy-900, #0e1b4d);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mon-drop__qty {
  font-size: 12px;
  font-weight: 600;
  color: var(--dms-muted, #6b7280);
  white-space: nowrap;
}

.mon-drop__rate {
  font-size: 13px;
  font-weight: 700;
  color: var(--dms-accent, #f82249);
  white-space: nowrap;
  min-width: 52px;
  text-align: right;
}

.mon-cardbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mon-cardbox img { width: 44px; height: 44px; object-fit: contain; }
.mon-cardbox b { display: block; font-size: 14px; color: var(--dms-navy-900, #0e1b4d); }
.mon-cardbox span { font-size: 12px; color: var(--dms-muted, #6b7280); }

@media (max-width: 760px) {
  .mon-row {
    grid-template-columns: 44px minmax(0, 1fr) 54px 92px 16px;
  }
  .mon-row__hp,
  .mon-row__region {
    display: none;
  }
}
