/* 住宿指南区块 */
/* 住宿安排 + 户型图：宽屏横向、手机竖向，整体宽度与下方两卡一致 */
.stay-row { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
@media (min-width: 620px) { .stay-row { flex-direction: row; align-items: stretch; } }

.stay-assign {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.stay-assign ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.stay-assign li { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.stay-icon {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--lake-soft);
  color: var(--lake);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
  line-height: 1;
}
.stay-room { font-size: 12.5px; color: var(--muted); }
.stay-arrow { color: var(--muted); font-size: 12px; }
.stay-people { font-size: 13px; font-weight: 700; color: var(--ink); }

.stay-plan {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}
.stay-plan img { display: block; width: 100%; height: auto; max-height: 460px; object-fit: contain; }
.stay-plan figcaption {
  position: absolute;
  right: 8px; bottom: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(19, 38, 47, .72);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.plan-dialog {
  width: 100vw; height: 100vh;
  max-width: 100vw; max-height: 100vh;
  margin: 0; padding: 0; border: 0;
  background: transparent;
}
.plan-dialog::backdrop { background: rgba(0, 0, 0, .88); }
.plan-dialog img { display: block; width: 100%; height: 100%; object-fit: contain; }

.guide-grid { display: grid; gap: 12px; }
@media (min-width: 620px) { .guide-grid { grid-template-columns: 1fr 1fr; } }

.guide-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 16px 14px;
  background: #fff;
}
.guide-card h3 { margin: 0 0 10px; font-size: 15px; letter-spacing: -0.01em; }
.guide-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.guide-card li { position: relative; padding-left: 22px; font-size: 13px; line-height: 1.6; color: #3d4a4f; }
.guide-card li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.guide-card--provided { background: #f4f8f5; border-color: #d6e4da; }
.guide-card--provided li::before { content: "✓"; color: var(--forest); }
.guide-card--bring { background: #fdf7f2; border-color: #ecd9c9; }
.guide-card--bring li::before { content: "＋"; color: var(--terracotta); }

/* 每日行程中的地点：折叠地图选项 + 攻略面板 */
/* 每个地点独占一行，左对齐、上下排列 */
.schedule-map-links { flex-direction: column; flex-wrap: nowrap; align-items: flex-start; }

.place-actions { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 6px; }
.place-actions + .place-actions { margin-top: 6px; }

.place-block { display: inline-block; }
.place-block > summary { cursor: pointer; list-style: none; }
.place-block > summary::-webkit-details-marker { display: none; }

.place-name {
  display: inline-flex; align-items: center; gap: 4px;
  min-height: 30px; padding: 5px 11px;
  border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--ink);
  font-size: 12px; font-weight: 700;
}
.place-block[open] .place-name { border-color: var(--lake); color: var(--lake); }

.place-options { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 7px; }

.place-guide-toggle {
  display: inline-flex; align-items: center;
  min-height: 30px; padding: 5px 11px;
  border: 1px solid #e8c8b8; border-radius: 999px;
  background: #fff8f4; color: #8f492e;
  font-size: 12px; font-weight: 700;
}
.place-block--guide[open] .place-guide-toggle { background: #8f492e; border-color: #8f492e; color: #fff; }

.place-guide { display: grid; gap: 7px; margin-top: 8px; max-width: 340px; max-height: 320px; overflow-y: auto; padding-right: 2px; }
.place-guide__empty { font-size: 11px; color: var(--muted); }
.place-guide__search { font-size: 11px; font-weight: 700; color: #8f492e; text-decoration: none; }

.guide-post {
  display: flex; gap: 9px; align-items: center;
  padding: 8px 10px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; text-decoration: none;
}
.guide-post__cover { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex: 0 0 44px; }
.guide-post__body { display: grid; gap: 2px; min-width: 0; }
.guide-post__body strong { font-size: 12px; color: var(--ink); line-height: 1.4; }
.guide-post__body small { font-size: 10px; color: var(--muted); }
