.hotel-partners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 52px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.hotel-partner {
  min-width: 0;
  min-height: 166px;
  padding: 27px 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  transition: background .3s ease;
}
.hotel-partner:hover { background: #edf0e7; }
.hotel-partner-mark {
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hotel-partner-mark img {
  width: auto;
  height: auto;
  max-width: min(180px, 100%);
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .78;
  mix-blend-mode: multiply;
}
.hotel-partner-mark.josun-mark img { max-width: min(250px, 100%); max-height: 65px; }
.hotel-partner-mark.compact-mark img { max-width: 130px; max-height: 62px; }
.hotel-partner-mark.wide-mark img { max-width: min(205px, 100%); }
.hotel-partner-mark.symbol-mark img { height: 54px; }
.hotel-partner-mark.light-mark img { filter: brightness(0); }
.hotel-partner-mark.dragon-mark img { max-width: min(235px, 100%); max-height: 80px; }
.hotel-partner-name { font-size: 11px; line-height: 1.65; letter-spacing: -.02em; color: #687366; word-break: keep-all; }
.hotel-dm-wordmark { font-size: 26px; font-weight: 600; letter-spacing: .1em; color: #54604f; }
@media (max-width: 850px) {
  .hotel-partners { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 34px; }
}
@media (max-width: 520px) {
  .hotel-partner { padding: 20px 12px; gap: 14px; min-height: 144px; }
  .hotel-partner-mark { height: 58px; }
  .hotel-partner-mark img { max-width: 100%; max-height: 50px; }
  .hotel-partner-mark.compact-mark img { max-width: 105px; max-height: 56px; }
  .hotel-partner-name { min-height: 32px; font-size: 10px; display: grid; place-items: center; }
  .hotel-dm-wordmark { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) { .hotel-partner { transition: none; } }
