/* 古滑 · 学员日常 / 今日冒险说明页（挂在 product.css 之后） */

.hero.hero-daily {
  background: linear-gradient(165deg, #0b1c33 0%, #0d2a54 48%, #1e5aa8 100%);
  min-height: 0;
  padding-bottom: 16px;
}
.hero-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}
.hero-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.hero-btn-primary {
  background: var(--accent);
  color: #0b1c33;
}
.hero-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-shot {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 14px 0 0;
}
.hero-shot img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: cover;
  object-position: center 78%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #121820;
}
.hero-shot figcaption {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0.86;
}

.shot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 12px;
}
.shot-card {
  margin: 0;
  background: #0f1622;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.shot-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 18%;
}
.shot-card.shot-card--camp img { object-position: center 8%; }
.shot-card.shot-card--picker img { object-position: center 42%; }
.shot-card figcaption {
  padding: 8px 10px 10px;
  font-size: 11px;
  line-height: 1.4;
  color: #c9d4e0;
  background: #0f1622;
}
.shot-card figcaption strong {
  display: block;
  color: #fff;
  font-size: 12px;
  margin-bottom: 2px;
}

.handoff-shot {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin: 8px 0 4px;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 10px;
}
.step .n {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 4px;
}
.step strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--primary-dark);
}
.step span {
  font-size: 12px;
  color: var(--sub);
  line-height: 1.4;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.compare article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}
.compare h3 {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}
.compare ul {
  margin: 0;
  padding-left: 1.1em;
}
.compare li {
  font-size: 12px;
  margin-bottom: 4px;
}
.compare li:last-child { margin-bottom: 0; }

.bounds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.bound {
  background: #f4f7fb;
  border-radius: 12px;
  padding: 12px 10px;
}
.bound strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: var(--primary-dark);
}
.bound span {
  font-size: 12px;
  color: var(--sub);
  line-height: 1.4;
}

@media (max-width: 380px) {
  .step-row,
  .bounds { grid-template-columns: 1fr; }
  .shot-card img { height: 168px; }
}
@media (max-width: 360px) {
  .hero-actions { grid-template-columns: 1fr; }
}
