/* Transport content styles only. The site shell comes from server/site-shell.mjs. */
.transport-page .shell-page {
  --text: #0b1220;
  --text2: #5b6878;
  --border: #e6ebf2;
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 34px 36px 64px;
}
.transport-page .shell-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  padding: 30px 0 24px;
}
.transport-page .shell-hero::before {
  content: "";
  position: absolute;
  inset: -60px -100px;
  background: radial-gradient(ellipse 55% 75% at 12% 45%, rgba(5,150,105,.12), transparent 70%), radial-gradient(ellipse 35% 55% at 88% 10%, rgba(99,102,241,.10), transparent 68%);
  pointer-events: none;
}
.transport-page .shell-hero > * { position: relative; z-index: 1; }
.transport-page .shell-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid rgba(5,150,105,.2);
  border-radius: 999px;
  background: rgba(5,150,105,.08);
  color: #047857;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.transport-page .shell-hero h1 {
  max-width: 820px;
  margin: 12px 0 10px;
  color: var(--text, #0b1220);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.04;
}
.transport-page .shell-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--text2, #5b6878);
  font-size: 16px;
  line-height: 1.65;
}
.transport-page .shell-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.transport-page .shell-card {
  padding: 22px;
  border: 1px solid var(--border, #e6ebf2);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.transport-page .shell-card h2 {
  margin: 0 0 8px;
  color: var(--text, #0b1220);
  font-size: 18px;
  letter-spacing: -.025em;
}
.transport-page .shell-card p {
  margin: 0;
  color: var(--text2, #5b6878);
  font-size: 14px;
  line-height: 1.6;
}
.transport-page .shell-card a {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #047857;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(5,150,105,.24);
}
.transport-page .shell-card a:hover { background: #065f46; transform: translateY(-1px); }
html[data-theme=dark] .transport-page .shell-card { background: rgba(17,26,46,.78); }
@media (max-width: 900px) {
  .transport-page .shell-page { padding: 24px 18px 52px; }
  .transport-page .shell-hero { padding-top: 20px; }
  .transport-page .shell-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .transport-page .shell-page { padding-right: 16px; padding-left: 16px; }
  .transport-page .shell-grid { grid-template-columns: 1fr; }
  .transport-page .shell-hero h1 { font-size: clamp(28px, 9vw, 40px); }
  .transport-page .shell-hero p { font-size: 14px; }
}
