/* Deepam Cabs — Tempo Traveller rent landing (outstation/car-rental) */

.tempo-fare-lead {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--primary);
}

.tempo-fare-lead strong {
  color: var(--green-dark);
}

.tempo-fare-lead__meta {
  display: block;
  margin-top: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
}

.tempo-fare-note {
  margin: 0 0 1.125rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.tempo-spec-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.tempo-spec-card {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

.tempo-spec-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.tempo-spec-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.tempo-spec-card strong {
  color: var(--primary);
}

.fare-summary-table tr.is-highlight {
  background: rgba(57, 181, 74, 0.08);
}

.fare-summary-table tr.is-highlight th,
.fare-summary-table tr.is-highlight td {
  font-weight: 700;
}

.content-prose h2 {
  margin: 2rem 0 1rem;
  font-size: 1.375rem;
  color: var(--primary);
}

.content-prose h2:first-child {
  margin-top: 0;
}

.content-prose p,
.content-prose li {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
}

.content-prose ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}

.content-prose .promo-note {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #b91c1c;
  font-size: 0.9375rem;
  font-weight: 600;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.benefit-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(57, 181, 74, 0.15);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

.benefit-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
}

.benefit-list span {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.tempo-routes-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.tempo-routes-grid .prices {
  margin: 0;
}

.tempo-routes-grid .prices a {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tempo-routes-grid .prices a:hover {
  border-color: var(--green);
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

.routes-collapse-panel {
  margin-top: 8px;
}

.routes-collapse-panel .fare-summary-panel__body {
  padding-top: 20px;
}

.routes-collapse-panel[open] .tempo-routes-grid {
  max-height:  min(70vh, 720px);
  overflow-y: auto;
  padding-right: 4px;
}

.tempo-cta {
  text-align: center;
}

@media (min-width: 768px) {
  .tempo-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .tempo-spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
