.boss-card-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 900px) {
  .boss-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .boss-card-list {
    grid-template-columns: 1fr;
  }
}

.boss-card-list {
margin-top:10px;
}

.boss-card {
  border: 2px solid #af5f58;
  padding: 12px 14px;
  border-radius: 8px;
  color: #000;
  font-size: 14px;
}

.boss-card p {
color:#000;
font-size:14px;
}

.boss-card--hot {
  border-color: #cda235;
  box-shadow: 0 0 8px rgba(205,162,53,0.4);
}

.boss-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
  border-bottom: 1px solid #333;
  padding-bottom: 6px;
}

.boss-card__time {
  font-weight: 700;
  font-size: 16px;
  color: #b70000;
}

.boss-card__name {
  font-weight: 700;
  font-size: 18px;
}

.boss-card__map {
  font-size: 12px;
  color: #9ca3af;
  margin-left: 4px;
}

.boss-card__tag-hot {
  display: inline-block;
  margin-left: 4px;
  padding: 0 6px;
  font-size: 12px;
  border-radius: 999px;
  background: #7f1d1d;
  color: #fca5a5;
}

.boss-card__tag-yellow {
  display: inline-block;
  margin-left: 4px;
  padding: 0 6px;
  font-size: 12px;
  border-radius: 999px;
  background-color: rgb(205, 162, 53);
  color: #fff;
}

.boss-card__meta {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.boss-card__tag {
  display: inline-block;
  padding: 1px 8px;
  font-size: 11px;
  border-radius: 999px;
  line-height: 1.4;
  border: 1px solid transparent;
}

.boss-card__tag--monster {
  background: #14532d;
  border-color: #22c55e;
  color: #bbf7d0;
}

.boss-card__tag--tp-on {
  background: #1d4ed8;
  border-color: #3b82f6;
  color: #dbeafe;
}

.boss-card__tag--tp-off {
  background: #111827;
  border-color: #6b7280;
  color: #e5e7eb;
}

.boss-card__tag--rt-on {
  background: #0f766e;
  border-color: #14b8a6;
  color: #ccfbf1;
}

.boss-card__tag--rt-off {
  background: #111827;
  border-color: #6b7280;
  color: #e5e7eb;
}

.boss-card__move {
  font-size: 12px;
  color: #9ca3af;
}

.boss-card__label-fee {
  color: #facc6b;
  font-weight: 600;
}

.boss-card__label-cond {
  color: #93c5fd;
  font-weight: 600;
}

.boss-card__body {
  margin-top: 6px;
}

.boss-card__drops {
  margin: 0;
  padding-left: 18px;
}

.boss-card__drops li {
  margin-bottom: 2px;
}

.drop-highlight {
  color: #ff4d4d;
  font-weight: 700;
}

.note-highlight {
  color: #f97316;
  font-size: 13px;
}

.hunt-card-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 10px 0 0;
}


.hunt-card {
     border: 2px solid #af5f58;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.38);
  transition: transform .22s, box-shadow .22s;
}

.hunt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.55);
}


.hunt-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}


.hunt-card-body {
  padding: 14px 18px 16px;
}

.hunt-card-body p {
text-align:center;
}

.hunt-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #b70000;
  margin-bottom: 6px;
}

.hunt-card-text {
  color: #d3d3d3;
  font-size: 15px;
  line-height: 1.45;
}


@media (max-width: 600px) {
  .hunt-title {
    font-size: 24px;
  }
  .hunt-subtitle {
    font-size: 14px;
  }
}

.info-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 20px;
}

.info-card-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 18px 0;
}

.info-card {
  
      border: 2px solid #af5f58;
  border-radius: 12px;
padding: 22px 24px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  transition: transform .18s, box-shadow .18s;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.55);
}

.info-card-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 6px;
    background: rgba(0, 0, 0, .125);
}

.info-card strong {
color:#b70000;
}

.info-card img {
  margin: 0 auto;
width:140px !important;
  height: 140px !important;
  object-fit: cover;
  display: block;
border-radius:10px;
margin-top: 20px;
}

.info-card-body {
  padding: 14px 18px 18px;
  color: #eee;
}

.info-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #b70000;
  margin-bottom: 8px;
}

.info-card-text {
  font-size: 14px;
  color: #000;
  margin-bottom: 14px;
}

.info-card-btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  color: #fff;
  background: #b70000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}



a.info-card-btn {
color:#fff;
font-size:26px;
}