.progressive-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 28px 0 10px;
}

.progressive-more {
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(0, 48, 102, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--brand, #003f72);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 48, 102, 0.08);
}

.progressive-more:hover {
  border-color: rgba(0, 48, 102, 0.32);
  transform: translateY(-1px);
}

.progressive-more:focus-visible {
  outline: 2px solid var(--brand, #003f72);
  outline-offset: 3px;
}

.progressive-more:disabled {
  opacity: 0.58;
  cursor: wait;
}

.progressive-more[hidden] {
  display: none;
}

.progressive-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--sub, #5f6872);
  font-size: 14px;
  text-align: center;
}

.progressive-trip-index {
  max-width: 980px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #fbfbfd;
  color: var(--sub, #5f6872);
  font-size: 14px;
}

.progressive-trip-index summary {
  min-height: 28px;
  color: var(--brand, #003f72);
  font-weight: 600;
  cursor: pointer;
}

.progressive-trip-index ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  max-height: 420px;
  margin: 14px 0 0;
  padding: 0 0 0 1.2em;
  overflow: auto;
}

.progressive-trip-index a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .progressive-actions {
    margin-top: 22px;
  }

  .progressive-more {
    width: min(100%, 320px);
  }

  .progressive-trip-index ul {
    grid-template-columns: 1fr;
    max-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .progressive-more:hover {
    transform: none;
  }
}
