:root {
  --ink: #14211f;
  --muted: #5f6f69;
  --line: #d9e3df;
  --paper: #f7fbf9;
  --white: #ffffff;
  --green: #126b57;
  --green-dark: #0b4338;
  --coral: #e75d4a;
  --yellow: #f5c84b;
  --aqua: #74c8bf;
  --shadow: 0 18px 45px rgba(20, 33, 31, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(18, 107, 87, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 44%, #eef7f2 100%);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-link {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.planner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: start;
  padding-top: 56px;
}

.home-layout {
  display: grid;
  gap: 20px;
  padding-top: 40px;
}

.planner-copy h1,
.home-hero-copy h1,
.result-hero h1,
.status-block h1 {
  margin: 0;
  max-width: 780px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lede {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.route-preview {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--green-dark);
}

.route-preview img,
.day-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.preview-strip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-strip span {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(20, 33, 31, 0.62);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.planner-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.home-layout .planner-form {
  position: static;
}

.home-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 320px;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.home-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(11, 67, 56, 0) 0%, rgba(11, 67, 56, 0.84) 65%, rgba(11, 67, 56, 0.94) 100%);
  color: var(--white);
}

.home-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.home-hero-copy h1 {
  max-width: 14ch;
  color: var(--white);
}

.planner-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.planner-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.planner-form input:focus,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid rgba(245, 200, 75, 0.75);
  outline-offset: 2px;
}

.primary-button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.primary-button:hover {
  background: var(--green-dark);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.result-layout {
  padding-top: 44px;
}

.card-guide-layout,
.raw-result-layout {
  display: grid;
  gap: 24px;
}

.result-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.secondary-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 700;
}

.secondary-button:hover {
  border-color: rgba(18, 107, 87, 0.32);
  background: rgba(18, 107, 87, 0.06);
}

.day-section,
.info-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.day-section-list {
  display: grid;
  gap: 18px;
}

.day-section {
  padding: 24px;
}

.day-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.day-section h2 {
  margin: 6px 0 0;
  font-size: 30px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.day-badge {
  margin: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.day-stats {
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(18, 107, 87, 0.08);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.day-meta-panel {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.stop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stop-card {
  min-width: 0;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 249, 0.96) 100%);
}

.stop-period {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.spot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.spot-tags span {
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(18, 107, 87, 0.05);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}

.stop-copy-flow {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.stop-copy-paragraph {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.guide-row-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.guide-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.guide-row-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.guide-row-text {
  min-width: 0;
  color: var(--ink);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.guide-row-text code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(18, 107, 87, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95em;
}

.stop-notes,
.day-notes {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.stop-notes li + li,
.day-notes li + li {
  margin-top: 8px;
}

.info-section {
  display: grid;
  gap: 14px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.info-card {
  padding: 20px;
}

.info-card h3 {
  margin: 0;
  font-size: 20px;
}

.info-card-copy {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.info-card-copy p {
  margin: 0;
}

.guide-frame-shell {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.guide-frame {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
  background: #fffdf8;
}

.raw-text-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.raw-text-panel summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  color: var(--green-dark);
  font-weight: 800;
}

.raw-text-panel summary::-webkit-details-marker {
  display: none;
}

.raw-text-panel summary::after {
  content: "展开";
  float: right;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.raw-text-panel[open] summary::after {
  content: "收起";
}

.raw-text-panel pre {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0 20px 20px;
  color: var(--ink);
  font: inherit;
  line-height: 1.9;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.result-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.route-meta,
.loading-panel {
  min-width: 170px;
  border-radius: 8px;
  padding: 18px;
  background: var(--green-dark);
  color: var(--white);
}

.route-meta span,
.route-meta strong,
.route-meta small,
.loading-panel strong,
.loading-panel small {
  display: block;
}

.route-meta strong {
  margin-top: 8px;
  color: var(--yellow);
  font-size: 34px;
}

.route-meta small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.route-summary {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--green-dark);
  line-height: 1.75;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-chip {
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(18, 107, 87, 0.08);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.highlight-section,
.source-section {
  margin: 0 0 28px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 10px 16px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: 22px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.highlight-list,
.source-list {
  display: grid;
  gap: 12px;
}

.highlight-list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-item,
.source-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.highlight-item {
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.7;
}

.source-item a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.source-item a:hover {
  text-decoration: underline;
}

.source-meta,
.source-item p {
  color: var(--muted);
}

.source-meta {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.6;
}

.source-item p {
  margin: 10px 0 0;
  line-height: 1.7;
}

.summary-item,
.notes,
.status-block {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 20px;
}

.summary-item h2,
.notes h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.summary-item p,
.notes li,
.status-block p {
  color: var(--muted);
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 18px;
}

.guide-layout {
  display: grid;
  gap: 28px;
}

.guide-hero {
  align-items: center;
}

.guide-day {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.guide-day-hero {
  aspect-ratio: 16 / 5;
  background: linear-gradient(135deg, var(--green), var(--aqua));
}

.guide-day-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.guide-day-body {
  padding: 22px;
}

.stop-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.stop-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.stop-list .stop-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.stop-period {
  align-self: start;
  border: 1px solid rgba(18, 107, 87, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(18, 107, 87, 0.08);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.stop-body {
  min-width: 0;
}

.stop-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.stop-copy-block {
  margin-top: 14px;
}

.stop-copy-block span {
  display: block;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.stop-copy-block p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.stop-image-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.guide-section {
  margin-top: 4px;
}

.guide-recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.guide-recommend-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.guide-recommend-item strong {
  display: block;
  color: var(--green-dark);
  font-size: 16px;
}

.guide-recommend-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.day-item {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.day-media {
  min-height: 100%;
  background: linear-gradient(135deg, var(--green), var(--aqua));
}

.day-body {
  min-width: 0;
  padding: 22px;
}

.day-kicker {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.day-body h2 {
  margin: 6px 0 8px;
  font-size: 26px;
}

.day-area,
.day-summary {
  margin: 0;
  overflow-wrap: anywhere;
}

.day-area {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.day-summary {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.step-section {
  margin-top: 18px;
}

.step-heading {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.step-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: route-step;
}

.step-item {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px 12px 48px;
  background: rgba(247, 251, 249, 0.92);
  color: var(--ink);
  line-height: 1.7;
  overflow-wrap: anywhere;
  counter-increment: route-step;
}

.step-item::before {
  content: counter(route-step);
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(18, 107, 87, 0.12);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.attraction-section {
  margin-top: 18px;
}

.attraction-heading {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.attraction-grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.attraction-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(247, 251, 249, 0.92);
}

.attraction-thumb {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 107, 87, 0.12), rgba(116, 200, 191, 0.16));
}

.attraction-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.attraction-thumb span {
  padding: 0 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.attraction-copy {
  min-width: 0;
}

.attraction-copy strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.attraction-copy p,
.attraction-meta {
  overflow-wrap: anywhere;
}

.attraction-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.attraction-meta {
  display: block;
  margin-top: 6px;
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.55;
}

.schedule-grid section {
  min-width: 0;
  border-left: 3px solid var(--aqua);
  padding-left: 12px;
}

.schedule-grid span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.schedule-grid p,
.transport-line,
.tip-list {
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.transport-line {
  border-top: 1px solid var(--line);
  margin: 18px 0 0;
  padding-top: 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.detail-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(247, 251, 249, 0.88);
}

.detail-item span {
  display: block;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.detail-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.tip-list,
.notes ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.notes {
  margin-top: 0;
}

.status-page {
  display: grid;
  min-height: calc(100vh - 170px);
  place-items: center;
}

.status-block {
  max-width: 680px;
}

.inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.loading-hero {
  min-height: 320px;
  align-items: center;
}

.loader {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 4px solid rgba(255, 255, 255, 0.28);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 880px) {
  .app-shell {
    width: min(100% - 24px, 720px);
    padding-top: 16px;
  }

  .topbar,
  .planner-layout,
  .result-hero,
  .guide-overview,
  .day-section-head,
  .day-item,
  .stop-item {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
  }

  .planner-layout {
    padding-top: 32px;
  }

  .home-layout {
    padding-top: 24px;
  }

  .planner-copy h1,
  .home-hero-copy h1,
  .result-hero h1,
  .status-block h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .planner-form {
    position: static;
  }

  .result-actions {
    justify-content: stretch;
  }

  .secondary-button {
    width: 100%;
  }

  .route-meta,
  .loading-panel {
    width: 100%;
    min-width: 0;
  }

  .guide-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .day-section h2 {
    font-size: 26px;
  }

  .stop-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .summary-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .day-media {
    aspect-ratio: 16 / 9;
  }

  .guide-day-hero {
    aspect-ratio: 16 / 9;
  }

  .stop-period {
    justify-self: start;
  }

  .attraction-card {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .attraction-thumb {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 560px) {
  .app-shell {
    width: min(100% - 20px, 100%);
  }

  .home-hero {
    min-height: 260px;
  }

  .home-hero-copy {
    padding: 18px;
  }

  .home-hero-copy h1,
  .result-hero h1,
  .status-block h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .day-section,
  .guide-summary-card,
  .info-card,
  .planner-form {
    padding: 18px;
  }
}
