/* Stop pages — extends root style.css tokens */
.stop-hero {
  min-height: 52vh;
  background-size: cover;
  background-position: center;
}
.stop-hero .hero-content {
  max-width: 900px;
}
.stop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1rem 0 0.5rem;
}
.stop-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(4px);
}
.stop-badge--day {
  background: rgba(212, 160, 23, 0.85);
  border-color: transparent;
  color: #1a1a1a;
}
.stop-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}
.stop-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  justify-content: center;
  padding: 1rem 1.25rem;
  margin: 0 auto 2rem;
  max-width: 800px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--primary);
  font-size: 0.95rem;
}
.stop-meta-bar strong {
  color: var(--primary);
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 {
  color: var(--primary);
  font-family: var(--font-heading);
  margin: 2rem 0 0.75rem;
  font-size: 1.55rem;
}
.prose h3 {
  margin: 1.25rem 0 0.5rem;
  color: var(--dark);
}
.prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
.prose ul {
  margin: 0 0 1.25rem 1.25rem;
  line-height: 1.7;
}
.prose li {
  margin-bottom: 0.4rem;
}
.tip-box {
  background: #fff8e8;
  border: 1px solid #e8d5a3;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.tip-box h2,
.tip-box h3 {
  margin-top: 0;
  color: #8a6a0a;
}
.gps-note {
  background: #eef6ee;
  border-left: 4px solid var(--primary);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.98rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0 0.5rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--secondary);
  color: #1a1a1a;
}
.btn-secondary {
  background: var(--primary);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.stop-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 720px;
  margin: 2.5rem auto 0;
}
.stop-nav a {
  display: block;
  padding: 1rem 1.15rem;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8e8e8;
  transition: border-color 0.15s ease;
}
.stop-nav a:hover {
  border-color: var(--secondary);
}
.stop-nav span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 0.25rem;
}
.stop-nav--end {
  grid-template-columns: 1fr;
}
.stop-nav .next {
  text-align: right;
}
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #666;
}
.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.figure-inline {
  margin: 1.5rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.figure-inline img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.figure-inline figcaption {
  font-size: 0.85rem;
  color: #666;
  padding: 0.65rem 0.85rem;
  background: #fff;
}
.section-narrow {
  padding: 2.5rem 20px;
}
@media (max-width: 640px) {
  .stop-nav {
    grid-template-columns: 1fr;
  }
  .stop-nav .next {
    text-align: left;
  }
  .stop-hero {
    min-height: 42vh;
  }
}
