/* =========
   Base / Theme
   ========= */
:root {
  --bg-page: #f5f5f7;
  --bg-card: #ffffff;
  --bg-soft: #f9fafb;
  --line-subtle: #e5e7eb;
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #111827;
  --accent-soft: #4b5563;
  --accent-border: #d1d5db;
  --radius-lg: 24px;
  --radius-card: 26px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.12);
  --shadow-nav: 0 10px 25px rgba(15, 23, 42, 0.06);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
}

/* Subtle background texture */
.page-gradient {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 0% 0%, rgba(209, 213, 219, 0.25), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(209, 213, 219, 0.38), transparent 60%),
    linear-gradient(140deg, #f5f5f7, #e5e7eb);
}

/* =========
   Layout helpers
   ========= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section-inner {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 3rem clamp(2rem, 3vw, 3.25rem);
  position: relative;
  overflow: hidden;
}

.section-narrow .section-inner {
  max-width: 760px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.9rem, 2.6vw, 2.3rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* =========
   Header / Nav
   ========= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-nav);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.3));
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-muted);
  padding-bottom: 0.2rem;
  transition: color 0.15s ease, transform 0.15s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111827, #9ca3af);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.15s ease-out;
}

.nav-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link-secondary {
  font-size: 0.84rem;
  opacity: 0.9;
}

/* Mobile nav button */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  margin-block: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Email login button in header */
.btn-email-login {
  font-size: 0.84rem;
}

/* =========
   Buttons
   ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #111827, #020617);
  color: #f9fafb;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.45);
}

.btn-outline {
  background: #ffffff;
  color: #111827;
  border-color: var(--accent-border);
}

.btn-outline:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.btn-ghost {
  background: #f9fafb;
  color: #111827;
  border-color: var(--accent-border);
}

.btn-ghost:hover {
  background: #e5e7eb;
  border-color: #6b7280;
}

.btn-full {
  width: 100%;
  margin-top: 0.85rem;
}

/* =========
   Hero
   ========= */
.hero {
  padding-top: 5.5rem;
}

.hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  background:
    radial-gradient(circle at 0% 0%, rgba(229, 231, 235, 0.9), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(209, 213, 219, 0.85), transparent 60%),
    #ffffff;
}

.hero-text h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2.5rem, 4vw, 3.1rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-tagline {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  color: var(--accent-soft);
}

.hero-subline {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  max-width: 30rem;
  font-size: 0.98rem;
}

.hero-launch {
  margin: 0 0 1.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero-launch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid #d1d5db;
  background: linear-gradient(135deg, #f9fafb, #e5e7eb);
  margin-left: 0.5rem;
  font-size: 0.78rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-logo-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(15, 23, 42, 0.25));
}

/* =========
   About
   ========= */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.about-text p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.7rem 1.75rem;
  font-size: 0.92rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent);
}

.about-list i {
  font-size: 0.95rem;
  color: var(--accent-soft);
}

/* About highlight card stack */
.about-highlights {
  display: grid;
  gap: 1rem;
}

.highlight-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--accent-border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.16);
  background: #ffffff;
  border-color: #9ca3af;
}

.highlight-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  margin-bottom: 0.4rem;
}

.highlight-icon i {
  font-size: 0.9rem;
  color: #111827;
}

.highlight-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.highlight-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========
   Services
   ========= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.45rem;
  border: 1px solid var(--accent-border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  background: #ffffff;
  border-color: #9ca3af;
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--accent-border);
  margin-bottom: 0.7rem;
}

.card-icon i {
  font-size: 0.95rem;
  color: var(--accent-soft);
}

.service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-card-soon {
  border-style: dashed;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-left: 0.4rem;
  color: var(--accent-soft);
}

/* =========
   Forms / lead / contact
   ========= */
.form-card {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 1.7rem 1.75rem;
  border: 1px solid var(--accent-border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-field {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.form-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #ffffff;
  border-radius: 0.85rem;
  border: 1px solid var(--accent-border);
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition:
    border-color 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background 0.15s ease-out;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #6b7280;
  box-shadow: 0 0 0 1px rgba(107, 114, 128, 0.25);
}

.form-note {
  margin: 0.8rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.3rem;
}

.contact-info h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.contact-info p {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.contact-list i {
  color: var(--accent-soft);
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* =========
   Blog
   ========= */
.blog-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1.2rem;
}

.blog-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.55rem;
  border: 1px solid var(--accent-border);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  background: #ffffff;
  border-color: #9ca3af;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-date {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.blog-tag {
  padding: 0.1rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent-border);
  font-size: 0.72rem;
}

.blog-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.blog-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========
   Loads
   ========= */
.loads-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.2rem;
}

.loads-panel h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.loads-text {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.loads-table-shell {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--accent-border);
  background: linear-gradient(135deg, #f9fafb, #e5e7eb);
}

.loads-table-header,
.loads-table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.1fr;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
}

.loads-table-header {
  background: #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #4b5563;
}

.loads-table-row-empty {
  color: var(--text-muted);
}

.loads-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.loads-card {
  background: var(--bg-soft);
  border-radius: 18px;
  border: 1px solid var(--accent-border);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.loads-card h4 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.loads-card p {
  margin: 0 0 0.8rem;
}

.loads-card-note {
  border-style: dashed;
}

/* =========
   Drivers page
   ========= */
.drivers-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.7rem;
}

.perk-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
  font-size: 0.8rem;
  color: var(--accent-soft);
  background: #ffffff;
}

.perk-chip i {
  font-size: 0.85rem;
  color: var(--accent);
}

.drivers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.2rem;
}

.drivers-copy p {
  margin-top: 0;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.drivers-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0.9rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.drivers-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.drivers-list i {
  color: var(--accent-soft);
  margin-top: 0.1rem;
}

.drivers-note {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Form status text */
.form-status {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  min-height: 1em;
  color: var(--text-muted);
}

.form-status--success {
  color: #047857;
}

.form-status--error {
  color: #b91c1c;
}

/* =========
   Footer
   ========= */
.site-footer {
  border-top: 1px solid var(--line-subtle);
  padding: 2.2rem 0;
  margin-top: 1.5rem;
  background: linear-gradient(180deg, #f9fafb, #e5e7eb);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
}

.footer-company {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-domain {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.84rem;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px dashed #9ca3af;
}

.footer-link:hover {
  border-bottom-style: solid;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent-soft);
  text-decoration: none;
  transition:
    background 0.18s ease-out,
    color 0.18s ease-out,
    transform 0.18s ease-out,
    border-color 0.18s ease-out;
}

.social-link:hover {
  background: #111827;
  border-color: #111827;
  color: #f9fafb;
  transform: translateY(-2px);
}

/* =========
   Scroll animation
   ========= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========
   Responsive
   ========= */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 4.1rem;
    right: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1.1rem;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--accent-border);
    transform-origin: top right;
    transform: scale(0.9) translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.15s ease-out,
      transform 0.15s ease-out;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .btn-email-login {
    display: none;
  }

  .hero .section-inner {
    grid-template-columns: 1fr;
  }

  .hero-logo-wrap {
    justify-content: flex-start;
  }

  .about-grid,
  .contact-grid,
  .loads-layout,
  .drivers-layout {
    grid-template-columns: 1fr;
  }

  .section-inner {
    padding: 2.4rem 1.6rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 4.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
/* Slightly tighten dispatch cards on wide screens */
@media (min-width: 1200px) {
  .loads-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }

  .loads-panel h3 {
    font-size: 1.3rem;
  }
}

/* Make the bottom CTA in the right card breathe a bit */
.loads-card .btn-full {
  margin-top: 0.9rem;
}
/* === Hero background banner image === */
.hero {
  position: relative;
  z-index: 0;
}

/* Truck hero image behind the white card */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* dark gradient so text stays readable */
    linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.55), rgba(0,0,0,0.3)),
    url("/hero-jwa-truck.jpg") right center / cover no-repeat;
  opacity: 0.9;               /* 0.6 = lighter, 1 = darker */
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

/* Keep hero card itself bright on top */
.hero .section-inner {
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 244, 246, 0.95), transparent 60%),
    #ffffff;
}

/* Strong black accent for main buttons */
.btn-primary {
  background:
    radial-gradient(circle at 0% 0%, rgba(0,0,0,0.98), rgba(0,0,0,1));
  color: #f9fafb;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.7);
}
/* === Loosen layout on Dispatch page (desktop only) === */
@media (min-width: 1100px) {
  /* Make the left dispatch column wider vs the side cards */
  .loads-layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    column-gap: 2.8rem;
  }

  /* Give the table more room so the text doesn't wrap so hard */
  .loads-table-header,
  .loads-table-row {
    grid-template-columns: 1.5fr 1.1fr 1.8fr;
  }

  /* Slightly larger line-height for readability */
  .loads-text,
  .loads-table-row,
  .loads-card {
    line-height: 1.5;
  }
}
/* === Dispatch page desktop layout tweaks === */
@media (min-width: 900px) {
  /* Give the dispatch section more total width */
  .dispatch-section .container {
    max-width: 1280px;
  }

  /* Widen the main card a bit */
  .dispatch-section .section-inner {
    padding: 3rem 3rem;
  }

  /* Make the left column noticeably wider than the right */
  .dispatch-section .loads-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    column-gap: 3rem;
  }

  /* Give each table column more breathing room */
  .dispatch-section .loads-table-header,
  .dispatch-section .loads-table-row {
    grid-template-columns: 1.4fr 1.2fr 1.9fr;
  }

  /* Slightly taller lines for readability */
  .dispatch-section .loads-text,
  .dispatch-section .loads-table-row,
  .dispatch-section .loads-card {
    line-height: 1.55;
  }
}
