:root {
  --gsp-bg: #e8eef2;
  --gsp-sand: #dbe4ea;
  --gsp-ink: #203240;
  --gsp-muted: #5c6a72;
  --gsp-forest: #18362c;
  --gsp-accent: #c46a2b;
  --gsp-accent-deep: #8f4517;
  --gsp-card: rgba(255, 255, 255, 0.86);
  --gsp-border: rgba(32, 50, 64, 0.12);
  --gsp-shadow: 0 1rem 2.5rem rgba(16, 28, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(95, 130, 153, 0.16), transparent 34%),
    linear-gradient(180deg, #edf3f7 0%, #e5edf2 45%, #dce6ed 100%);
  color: var(--gsp-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gsp-accent-deep);
}

a:hover {
  color: var(--gsp-accent);
}

.app-navbar {
  backdrop-filter: blur(14px);
  background: rgba(24, 54, 44, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-navbar .navbar-brand,
.app-navbar .nav-link,
.app-navbar .navbar-text {
  color: #f6f2ea;
}

.app-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28246,242,234,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.app-navbar .nav-link:hover,
.app-navbar .nav-link:focus {
  color: #ffd2a9;
}

.app-navbar .navbar-collapse {
  border-radius: 1rem;
}

.hero-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 72vh;
  padding: 8rem 0 5rem;
  background:
    linear-gradient(120deg, rgba(10, 23, 20, 0.72), rgba(16, 29, 24, 0.38)),
    url("images/GSP_Header_no-text2.png") center top / cover no-repeat;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12rem;
  background: linear-gradient(180deg, rgba(232, 238, 242, 0), rgba(232, 238, 242, 1));
  z-index: -1;
}

.hero-card {
  max-width: 48rem;
  padding: 2.2rem 2.2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.75rem;
  background: rgba(17, 28, 25, 0.54);
  box-shadow: var(--gsp-shadow);
}

.site-title {
  margin: 0;
  color: #fffaf2;
  font-family: "Lobster", cursive;
  font-weight: 400;
  font-size: clamp(2.75rem, 4.5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.22);
}

.site-subtitle {
  margin: 1.15rem 0 0;
  max-width: 52rem;
  color: rgba(255, 247, 237, 0.9);
  font-size: 1.05rem;
}

.site-subtitle-line {
  display: block;
}

.site-subtitle-line--primary {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.12;
  text-transform: uppercase;
  color: #fffaf2;
  text-shadow: 0 0.18rem 0.7rem rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.site-subtitle-line--secondary {
  margin-top: 0.45rem;
  font-family: Georgia, "Libre Baskerville", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: rgba(255, 243, 229, 0.92);
  text-shadow: 0 0.14rem 0.5rem rgba(0, 0, 0, 0.2);
}

@media (max-width: 767.98px) {
  .site-subtitle {
    max-width: 100%;
  }

  .site-subtitle-line--primary {
    white-space: normal;
  }
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff7ed;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.95rem;
}

.section-block {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.section-card,
.content-card,
.sidebar-card {
  border: 1px solid var(--gsp-border);
  border-radius: 1.5rem;
  background: var(--gsp-card);
  box-shadow: var(--gsp-shadow);
}

.section-card {
  padding: 1.6rem;
}

.section-card h2,
.content-card h2,
.sidebar-card h3,
.content-card h3 {
  color: var(--gsp-forest);
}

.section-card p:last-child {
  margin-bottom: 0;
}

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

.info-tile {
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(224, 233, 239, 0.96));
  border: 1px solid rgba(24, 54, 44, 0.08);
}

.section-link-card {
  display: block;
  overflow: hidden;
  padding: 0;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.section-link-card:hover,
.section-link-card:focus {
  transform: translateY(-3px);
  border-color: rgba(196, 106, 43, 0.28);
  box-shadow: 0 1rem 2.25rem rgba(16, 28, 36, 0.16);
  color: inherit;
}

.section-link-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(24, 54, 44, 0.08);
  background: #d8e3ea;
}

.section-link-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-link-body {
  padding: 1rem 1.1rem 1.1rem;
}

.section-link-body strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gsp-forest);
}

.info-tile strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gsp-forest);
}

.completion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.completion-step {
  padding: 1.1rem 1.15rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(24, 54, 44, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(231, 238, 243, 0.98));
}

.completion-step-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.68rem;
  border-radius: 999px;
  background: rgba(196, 106, 43, 0.12);
  color: var(--gsp-accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.completion-step strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gsp-forest);
  font-size: 1rem;
}

.completion-step p {
  margin: 0;
  color: var(--gsp-muted);
  line-height: 1.6;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(24, 54, 44, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(231, 238, 243, 0.96));
  box-shadow: 0 0.75rem 1.8rem rgba(18, 32, 28, 0.06);
}

.faq-accordion .accordion-item + .accordion-item {
  margin-top: 0.85rem;
}

.faq-accordion .accordion-button {
  background: rgba(255, 255, 255, 0.75);
  color: var(--gsp-forest);
  font-weight: 700;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(24, 54, 44, 0.06);
  color: var(--gsp-forest);
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(196, 106, 43, 0.12);
}

.faq-accordion .accordion-body {
  color: var(--gsp-muted);
  line-height: 1.65;
}

.quick-links a {
  text-decoration: none;
}

.quick-links-grouped {
  display: grid;
  gap: 1.1rem;
}

.quick-link-group {
  position: relative;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(24, 54, 44, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(232, 239, 244, 0.9));
  overflow: hidden;
}

.quick-link-group::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.35rem;
  border-radius: 1.2rem 0 0 1.2rem;
  background: rgba(24, 54, 44, 0.16);
}

.quick-link-group--essentials::before {
  background: linear-gradient(180deg, #d28a39, #a75a1a);
}

.quick-link-group--experience::before {
  background: linear-gradient(180deg, #2f6678, #234d5a);
}

.quick-link-group--community::before {
  background: linear-gradient(180deg, #4d6b3a, #324f26);
}

.quick-link-group-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.quick-link-group-heading {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  background: rgba(24, 54, 44, 0.08);
  color: var(--gsp-forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-link-group-copy {
  margin: 0;
  max-width: 34rem;
  color: var(--gsp-muted);
  line-height: 1.55;
}

.quick-links .list-group-item {
  border: 1px solid rgba(24, 54, 44, 0.08);
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--gsp-ink);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quick-links .list-group-item:hover {
  background: rgba(255, 244, 232, 0.92);
  border-color: rgba(196, 106, 43, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 0.7rem 1.4rem rgba(18, 32, 28, 0.08);
}

.quick-links .list-group-item strong::after {
  content: "  \2192";
  color: rgba(196, 106, 43, 0.9);
}

.content-shell {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.sidebar-card {
  padding: 1.3rem;
}

.sidebar-card img {
  width: 100%;
  height: auto;
  border-radius: 1.1rem;
  object-fit: contain;
  background: linear-gradient(180deg, #fff, #f4eee2);
  border: 1px solid rgba(24, 54, 44, 0.08);
}

.sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--gsp-accent-deep);
  font-weight: 600;
  text-decoration: none;
}

.content-card {
  padding: 1.5rem;
  overflow: hidden;
}

.content-card h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  font-family: Baskerville, "Palatino Linotype", "Book Antiqua", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.font-preview-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}

.font-preview-card {
  padding: 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(24, 54, 44, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(230, 238, 244, 0.96));
}

.font-preview-label {
  margin: 0 0 0.55rem;
  color: var(--gsp-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.font-preview-card h2 {
  margin: 0;
  color: var(--gsp-forest);
  font-size: clamp(1.75rem, 2.5vw, 2.45rem);
}

.font-preview-card p {
  margin: 0.65rem 0 0;
  color: var(--gsp-muted);
  font-size: 0.95rem;
}

.font-option-1 h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.font-option-2 h2 {
  font-family: Baskerville, "Palatino Linotype", "Book Antiqua", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.font-option-3 h2 {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.font-option-4 h2 {
  font-family: "Gill Sans MT", "Gill Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.font-option-5 h2 {
  font-family: "Bookman Old Style", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.font-option-6 h2 {
  font-family: "Rockwell", "Georgia", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.font-option-7 h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.font-option-8 h2 {
  font-family: Cambria, Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.font-option-9 h2 {
  font-family: Constantia, "Palatino Linotype", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.font-option-10 h2 {
  font-family: "Century Schoolbook", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.content-card h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.content-card > br {
  display: none;
}

.content-card p {
  line-height: 1.7;
}

.route-section {
  margin-top: 2.2rem;
}

.route-section:first-of-type {
  margin-top: 0;
}

.route-section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--gsp-forest);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1.1rem;
}

.route-card {
  height: 100%;
  padding: 1.15rem;
  border: 1px solid rgba(24, 54, 44, 0.08);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 238, 243, 0.98));
  box-shadow: 0 0.8rem 2rem rgba(18, 32, 28, 0.08);
}

.route-card--photo {
  padding-top: 0;
  overflow: hidden;
}

.route-card-media {
  margin: 0 -1.15rem 0.95rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1.1rem 1.1rem 0.9rem 0.9rem;
}

.route-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.route-card h4 {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--gsp-forest);
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.8rem;
}

.route-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(24, 54, 44, 0.08);
  color: var(--gsp-ink);
  font-size: 0.82rem;
}

.route-meta-label {
  font-weight: 700;
  color: var(--gsp-forest);
}

.route-description {
  margin: 0;
  color: var(--gsp-muted);
  line-height: 1.55;
}

.route-description br + a,
.route-description a {
  display: inline-block;
  margin-top: 0.5rem;
}

.route-description a {
  font-weight: 600;
  text-decoration: none;
}

.route-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.route-links a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 0.8rem;
  background: rgba(24, 54, 44, 0.06);
}

.route-links a:hover {
  background: rgba(196, 106, 43, 0.1);
}

.form-card {
  padding: 1.25rem;
  border: 1px solid rgba(24, 54, 44, 0.08);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 238, 243, 0.98));
}

.form-card label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: var(--gsp-forest);
}

table.points,
table.finishers {
  width: 100%;
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 42rem;
  overflow: hidden;
  border: 1px solid rgba(24, 54, 44, 0.08);
  border-radius: 1rem;
}

table.points thead th,
table.finishers thead th {
  padding: 0.95rem 1rem;
  background: linear-gradient(135deg, #244a3f, #355d51);
  color: #f8f3ed;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}

table.points td,
table.finishers td {
  padding: 0.95rem 1rem;
  color: var(--gsp-ink);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(24, 54, 44, 0.08);
  vertical-align: top;
}

table.points tbody tr:nth-child(odd) td,
table.finishers tbody tr:nth-child(odd) td {
  background: rgba(248, 243, 235, 0.98);
}

table.points tbody tr:last-child td,
table.finishers tbody tr:last-child td {
  border-bottom: 0;
}

input,
select,
button {
  font: inherit;
}

input,
select {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(24, 54, 44, 0.18);
  border-radius: 0.75rem;
  background: #fff;
}

button {
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 0.8rem;
  background: var(--gsp-accent);
  color: #fff7f0;
  font-weight: 600;
}

button:hover {
  background: var(--gsp-accent-deep);
}

.btn-outline-secondary {
  border-color: rgba(24, 54, 44, 0.2);
  color: var(--gsp-forest);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  border-color: rgba(24, 54, 44, 0.32);
  background: rgba(24, 54, 44, 0.06);
  color: var(--gsp-forest);
}

.site-footer {
  padding: 2rem 0 3rem;
  color: rgba(32, 50, 64, 0.72);
  text-align: center;
}

.map-frame {
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(24, 54, 44, 0.08);
}

.map-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.itinerary-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.itinerary-overview,
.itinerary-notes,
.itinerary-card {
  border: 1px solid rgba(24, 54, 44, 0.08);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 238, 243, 0.98));
  box-shadow: 0 0.8rem 2rem rgba(18, 32, 28, 0.08);
}

.itinerary-overview,
.itinerary-notes {
  padding: 1.25rem;
}

.itinerary-overview p,
.itinerary-notes p {
  margin-bottom: 0;
  color: var(--gsp-muted);
  line-height: 1.65;
}

.itinerary-notes h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.itinerary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.15rem;
}

.itinerary-card {
  padding: 1.25rem;
}

.itinerary-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(196, 106, 43, 0.12);
  color: var(--gsp-accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.itinerary-card h3 {
  margin: 0.75rem 0 0.55rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.itinerary-summary {
  margin: 0 0 1rem;
  color: var(--gsp-muted);
  line-height: 1.6;
}

.itinerary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.itinerary-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(24, 54, 44, 0.08);
  color: var(--gsp-forest);
  font-size: 0.82rem;
  font-weight: 600;
}

.itinerary-list {
  display: grid;
  gap: 0.8rem;
}

.itinerary-stop {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 54, 44, 0.08);
}

.itinerary-stop strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gsp-forest);
  font-size: 0.95rem;
}

.itinerary-stop span {
  color: var(--gsp-muted);
  line-height: 1.55;
}

.itinerary-tip {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px dashed rgba(24, 54, 44, 0.16);
  color: var(--gsp-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .hero-shell {
    min-height: 60vh;
    padding-top: 7rem;
  }

  .content-shell {
    padding-top: 1.4rem;
  }

  .app-navbar .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.8rem 0.9rem;
    background: rgba(24, 54, 44, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .itinerary-intro {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 575.98px) {
  .hero-card,
  .section-card,
  .content-card,
  .sidebar-card {
    border-radius: 1.2rem;
  }

  .hero-card,
  .content-card,
  .section-card {
    padding: 1.2rem;
  }

  .hero-card {
    padding: 1.4rem 1.2rem 1.25rem;
  }

  .route-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .route-card {
    padding: 1rem;
  }

  .route-card-media {
    margin: 0 -1rem 0.85rem;
  }

  .route-meta {
    gap: 0.4rem;
    margin-bottom: 0.7rem;
  }

  .route-meta-item {
    width: 100%;
    justify-content: space-between;
    border-radius: 0.85rem;
  }

  .itinerary-card,
  .itinerary-overview,
  .itinerary-notes {
    padding: 1rem;
  }

  .quick-link-group {
    padding: 0.9rem;
  }

  .quick-link-group-head {
    flex-direction: column;
    gap: 0.65rem;
  }

}
