.clb-board {
  --clb-olive: #6F7759;
  --clb-matcha: #95A07A;
  --clb-oat: #F3EEE6;
  --clb-taupe: #C5AF97;
  --clb-espresso: #8C7866;
  --clb-cream: #F8F4EE;
  --clb-ink: #2F3428;
  background:
    radial-gradient(circle at 12% 0%, rgba(149, 160, 122, .16), transparent 34rem),
    linear-gradient(180deg, rgba(248,244,238,.92), rgba(243,238,230,.78));
  color: var(--clb-ink);
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 3vw, 2rem);
}

.clb-inner {
  margin-inline: auto;
  max-width: 1180px;
  width: min(100%, 1180px);
}

.clb-heading {
  margin: 0 auto clamp(1.6rem, 4vw, 2.6rem);
  max-width: 740px;
  text-align: center;
}

.clb-kicker {
  color: var(--clb-espresso);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.35;
  margin: 0 0 .65rem;
  text-transform: uppercase;
}

.clb-heading h2 {
  color: var(--clb-olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4.6vw, 4.35rem);
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1;
  margin: 0 0 .8rem;
}

.clb-heading p {
  color: rgba(47, 52, 40, .78);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin: 0;
}

.clb-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(1rem, 2.8vw, 1.6rem);
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
}

.clb-cards {
  display: grid;
  gap: 1rem;
}

.clb-stop-card,
.clb-map-shell,
.clb-menu-qr-card {
  background:
    linear-gradient(145deg, rgba(248,244,238,.94), rgba(243,238,230,.78));
  border: 1px solid rgba(140,120,102,.24);
  border-radius: clamp(22px, 3vw, 30px);
  box-shadow: 0 24px 68px rgba(47,52,40,.10);
}

.clb-stop-card {
  padding: clamp(1.2rem, 2.7vw, 1.8rem);
}

.clb-stop-card h3 {
  color: var(--clb-olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 .65rem;
}

.clb-time {
  color: var(--clb-espresso);
  font-weight: 900;
  margin: 0 0 .6rem;
}

.clb-address {
  color: rgba(47,52,40,.76);
  font-weight: 700;
}

.clb-button {
  align-items: center;
  background: var(--clb-olive);
  border: 1px solid var(--clb-olive);
  border-radius: 999px;
  color: var(--clb-cream) !important;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 900;
  gap: .5rem;
  letter-spacing: .12em;
  margin-top: .35rem;
  overflow: hidden;
  padding: .82rem 1.08rem;
  position: relative;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.clb-button::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  content: "";
  inset: 0 auto 0 -70%;
  position: absolute;
  transform: skewX(-20deg);
  width: 55%;
}

.clb-button:hover {
  box-shadow: 0 14px 30px rgba(47,52,40,.16);
  transform: translateY(-2px);
}

.clb-button:hover::after {
  animation: clb-shine 720ms ease;
}

@keyframes clb-shine {
  to { left: 120%; }
}

.clb-map-shell {
  min-height: 380px;
  overflow: hidden;
  padding: clamp(.7rem, 1.4vw, 1rem);
}

.clb-map {
  background: rgba(248,244,238,.7);
  border-radius: clamp(18px, 2.4vw, 24px);
  height: clamp(360px, 45vw, 560px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.clb-map-placeholder {
  align-items: center;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 2rem;
  position: absolute;
  text-align: center;
}

.clb-front-marker {
  align-items: center;
  background: rgba(248,244,238,.96);
  border: 1px solid rgba(111,119,89,.34);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(47,52,40,.18);
  color: var(--clb-olive);
  display: flex;
  font-size: 11px;
  font-weight: 900;
  gap: 7px;
  letter-spacing: .12em;
  padding: 8px 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

.clb-front-marker::before {
  background: var(--clb-matcha);
  border-radius: 50%;
  content: "";
  height: 10px;
  width: 10px;
}

.clb-front-marker.is-next {
  color: var(--clb-espresso);
}

.clb-front-marker.is-next::before {
  background: var(--clb-taupe);
}

.clb-menu-qr-card {
  display: inline-block;
  padding: clamp(.8rem, 2vw, 1.2rem);
}

.clb-menu-qr-inner {
  aspect-ratio: 1 / 1;
  background: #fffdf8;
  border: 1px solid rgba(140,120,102,.22);
  border-radius: clamp(18px, 2.4vw, 24px);
  display: grid;
  gap: .6rem;
  justify-items: center;
  max-width: min(100%, 420px);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.clb-menu-qr-inner p {
  color: var(--clb-olive);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  margin: 0;
  text-transform: uppercase;
}

.clb-menu-qr-inner img {
  display: block;
  height: min(70vw, 310px);
  max-height: 310px;
  max-width: 310px;
  object-fit: contain;
  width: min(70vw, 310px);
}

@media (max-width: 900px) {
  .clb-layout {
    grid-template-columns: 1fr;
  }

  .clb-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .clb-board {
    padding-inline: .85rem;
  }

  .clb-cards {
    grid-template-columns: 1fr;
  }

  .clb-map {
    height: 320px;
  }
}


.clb-front-marker {
  align-items: center;
  background: rgba(248, 244, 238, 0.96);
  border: 1px solid rgba(111, 119, 89, 0.45);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(47, 52, 40, 0.20);
  color: #6F7759;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.10em;
  line-height: 1;
  padding: 0.7rem 0.95rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.clb-front-marker.is-next {
  border-color: rgba(140, 120, 102, 0.46);
  color: #8C7866;
}

.clb-map .leaflet-control-attribution {
  font-size: 10px;
}

/* v1.2.0 public stop status styling */
.clb-status-badge {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1;
  margin: 0 0 .75rem;
  padding: .55rem .72rem;
  text-transform: uppercase;
}

.clb-status-badge.is-confirmed {
  background: rgba(149, 160, 122, .20);
  border: 1px solid rgba(111, 119, 89, .26);
  color: var(--clb-olive);
}

.clb-status-badge.is-not_confirmed {
  background: rgba(197, 175, 151, .20);
  border: 1px solid rgba(140, 120, 102, .24);
  color: var(--clb-espresso);
}

.clb-status-badge.is-cancelled {
  background: rgba(140, 120, 102, .16);
  border: 1px solid rgba(140, 120, 102, .30);
  color: #6b5243;
}

.clb-stop-card.status-cancelled {
  opacity: .92;
}

.clb-cancel-reason,
.clb-status-note {
  background: rgba(248, 244, 238, .65);
  border: 1px solid rgba(140, 120, 102, .18);
  border-radius: 18px;
  color: rgba(47, 52, 40, .78);
  font-weight: 750;
  margin: .9rem 0 0;
  padding: .8rem .9rem;
}

.clb-cancel-reason {
  border-color: rgba(140, 120, 102, .28);
  color: #6b5243;
}

/* v1.2.1 refined map pins: small, bright, classy, non-blocking */
.clb-map-dot {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  height: 26px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 26px !important;
}

.clb-map-dot .clb-map-dot-core {
  border: 3px solid rgba(255, 253, 248, 0.98);
  border-radius: 999px;
  box-shadow:
    0 7px 18px rgba(47, 52, 40, 0.26),
    0 0 0 5px rgba(248, 244, 238, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  box-sizing: border-box;
  display: block;
  height: 22px;
  left: 2px;
  position: relative;
  top: 2px;
  width: 22px;
}

.clb-map-dot .clb-map-dot-core::after {
  background: rgba(255, 253, 248, 0.92);
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
}

.clb-map-dot.is-current .clb-map-dot-core {
  background: linear-gradient(135deg, #A9DC5E 0%, #78AA35 52%, #5E8C2C 100%);
}

.clb-map-dot.is-next .clb-map-dot-core {
  background: linear-gradient(135deg, #FFD27A 0%, #DFA64B 52%, #B77A31 100%);
}

.clb-map-dot.is-cancelled .clb-map-dot-core {
  background: linear-gradient(135deg, #E99A9A 0%, #C86F6F 55%, #A85050 100%);
}

.clb-map-dot.is-current .clb-map-dot-core,
.clb-map-dot.is-next .clb-map-dot-core {
  animation: clb-map-dot-pulse 2.35s ease-in-out infinite;
}

@keyframes clb-map-dot-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 7px 18px rgba(47, 52, 40, 0.26),
      0 0 0 5px rgba(248, 244, 238, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  50% {
    transform: scale(1.09);
    box-shadow:
      0 9px 24px rgba(47, 52, 40, 0.30),
      0 0 0 8px rgba(248, 244, 238, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.52);
  }
}

.clb-map-dot .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Neutralise the previous large pill-marker styles if cached markup appears. */
.clb-leaflet-marker,
.clb-front-marker {
  min-height: 0 !important;
}

