/* =====================================================================
   XPO clone — static header / footer / page chrome
   Self-contained styles so the site renders without the Vue AJAX layer.
   Loaded AFTER cs-main.css so these rules win where they overlap.
   ===================================================================== */

:root {
  --xpo-red: #c00;
  --xpo-red-dark: #a00000;
  --xpo-gray: #46494d;
  --xpo-bg: #f6f7f8;
  --xpo-header-h: 76px;
}

* { box-sizing: border-box; }

body {
  padding-top: var(--xpo-header-h);
  font-family: Inter, "Helvetica Neue", sans-serif;
  letter-spacing: -0.01em;
}

.xpo-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
}
@media (min-width: 1024px) { .xpo-container { padding: 0 60px; } }

/* ---------------------------------------------------------------- Header */
.xpo-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--xpo-header-h);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  z-index: 100;
  display: flex;
  align-items: stretch;
}
.xpo-header__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.xpo-header__logo {
  display: flex;
  align-items: center;
  padding: 0 16px;
  text-decoration: none;
}
@media (min-width: 1024px) { .xpo-header__logo { padding: 0 24px 0 60px; } }
.xpo-header__logo svg,
.xpo-header__logo img { height: 52px; width: auto; max-width: 220px; object-fit: contain; display: block; }

.xpo-nav {
  display: none;
  align-items: stretch;
  flex: 1;
  list-style: none;
  margin: 0; padding: 0;
}
@media (min-width: 1024px) { .xpo-nav { display: flex; } }
.xpo-nav__item { display: flex; }
.xpo-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  position: relative;
}
.xpo-nav__link:hover { color: var(--xpo-red-dark); }
.xpo-chevron { display: inline-block; fill: currentColor; flex: none; }
.xpo-nav__arrow { font-weight: 700; }

/* push the utility buttons to the right when nav is hidden (mobile) */
.xpo-header__spacer { flex: 1; }
@media (min-width: 1024px) { .xpo-header__spacer { display: none; } }

.xpo-utility { display: flex; align-items: stretch; }
.xpo-utility__btn {
  width: 60px;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.xpo-utility__btn--search { background: var(--xpo-gray); }
.xpo-utility__btn--search:hover { background: var(--xpo-red-dark); }
.xpo-utility__btn--menu { background: var(--xpo-red); }
.xpo-utility__btn--menu:hover { background: var(--xpo-red-dark); }
.xpo-icon { display: inline-block; color: #fff; }

/* search bar (toggled) */
.xpo-search {
  position: absolute;
  top: var(--xpo-header-h);
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 2px solid var(--xpo-red);
  padding: 20px 16px;
  display: none;
}
@media (min-width: 1024px) { .xpo-search { padding: 26px 60px; } }
.xpo-search.is-open { display: block; }
.xpo-search input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ccc;
  font: inherit;
  font-size: 20px;
  padding: 8px 4px;
  outline: none;
}

/* mobile drawer */
.xpo-drawer {
  position: fixed;
  top: var(--xpo-header-h);
  right: 0;
  width: min(320px, 85%);
  height: calc(100% - var(--xpo-header-h));
  background: #fff;
  border-left: 1px solid #f0f0f0;
  box-shadow: -8px 0 24px rgba(0,0,0,.08);
  transform: translateX(105%);
  transition: transform .25s ease;
  z-index: 99;
  overflow-y: auto;
  padding: 8px 0;
}
.xpo-drawer.is-open { transform: translateX(0); }
.xpo-drawer a {
  display: block;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
}
.xpo-drawer a:hover { color: var(--xpo-red); }

/* ---------------------------------------------------------------- Footer */
.xpo-footer { background: var(--xpo-bg); }
.xpo-footer__content { padding: 48px 0; }
@media (min-width: 1024px) { .xpo-footer__content { padding: 64px 0; } }
.xpo-footer__links {
  column-count: 1;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .xpo-footer__links { column-count: 2; gap: 32px; margin-bottom: 56px; }
}
.xpo-footer__link {
  break-inside: avoid-column;
  display: block;
  width: fit-content;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #000;
  text-decoration: none;
}
.xpo-footer__link:hover { color: var(--xpo-red); }
.xpo-footer__social {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .xpo-footer__social {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.xpo-footer__logo svg,
.xpo-footer__logo img { height: 56px; width: auto; max-width: 240px; object-fit: contain; display: block; }
.xpo-footer__socialLinks {
  display: flex;
  gap: 20px;
  align-items: center;
}
.xpo-footer__socialLinks a {
  color: #000;
  display: inline-flex;
}
.xpo-footer__socialLinks a:hover { color: var(--xpo-gray); }
.xpo-footer__socialLinks svg { width: 28px; height: 28px; fill: currentColor; }
.xpo-footer__copyright {
  font-size: 12px;
  line-height: 1.333;
  margin-top: 32px;
  color: var(--xpo-gray);
}

/* --------------------------------------------------- Hero cover image */
/* Force the hero <img> to fully cover the hero area (background-style). */
.Hero-image {
  position: absolute !important;
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
}

/* ------------------------------------------------ Font Awesome fallback */
/* The bundled Font Awesome .woff2 files are empty stubs, so FA glyphs show
   as tofu boxes. Replace the icons actually used with inline SVG masks. */

/* hero track-search submit button — magnifying glass */
.SearchInput-btnIcon { font-size: 0 !important; }
.SearchInput-btnIcon::before { content: "" !important; }
.SearchInput-btnIcon {
  display: inline-block !important;
  width: 20px; height: 20px;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10' cy='10' r='7' fill='none' stroke='black' stroke-width='2.6'/%3E%3Cline x1='15.2' y1='15.2' x2='22' y2='22' stroke='black' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='10' cy='10' r='7' fill='none' stroke='black' stroke-width='2.6'/%3E%3Cline x1='15.2' y1='15.2' x2='22' y2='22' stroke='black' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* modal close button — X */
.Modal-close { font-size: 0 !important; }
.Modal-close::before {
  content: "" !important;
  display: block;
  width: 24px; height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 5 L19 19 M19 5 L5 19' stroke='black' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 5 L19 19 M19 5 L5 19' stroke='black' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* the play/scroll triangle is drawn with CSS borders; just drop its FA glyph */
.Button-icon::before { content: "" !important; }

/* ----------------------------------------------------- Simple page body */
.xpo-page {
  max-width: 1050px;
  margin: 0 auto;
  padding: 64px 16px 96px;
}
@media (min-width: 1024px) { .xpo-page { padding: 96px 60px 128px; } }
.xpo-page h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) { .xpo-page h1 { font-size: 56px; } }
.xpo-page h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 48px 0 16px;
}
.xpo-page p { font-size: 18px; line-height: 1.55; margin: 0 0 20px; color: #1a1a1a; }
.xpo-page ul.xpo-list { margin: 0 0 20px; padding-left: 22px; list-style: disc; }
.xpo-page ul.xpo-list li { font-size: 18px; line-height: 1.55; margin-bottom: 10px; }
.xpo-page a { color: var(--xpo-red); }
.xpo-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--xpo-red);
  margin-bottom: 16px;
}
.xpo-btn {
  display: inline-block;
  background: var(--xpo-red);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  margin-top: 8px;
}
.xpo-page a.xpo-btn,
.xpo-btn { color: #fff; }
.xpo-btn:hover { background: var(--xpo-red-dark); color: #fff; }
.xpo-btn--ghost {
  background: transparent;
  border: 2px solid currentColor;
  padding: 12px 26px;
}
.xpo-btn--light { background: #fff; color: var(--xpo-red); }
.xpo-btn--light:hover { background: #f0f0f0; color: var(--xpo-red); }

/* ========================================================= Rich pages */
.xpo-container--narrow { max-width: 880px; }

/* page hero */
.xpo-hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(204,0,0,.55), transparent 60%),
    linear-gradient(115deg, #141414 0%, #2b2b2e 55%, #3a3a3d 100%);
  color: #fff;
  padding: 84px 0 72px;
}
@media (min-width: 1024px) { .xpo-hero { padding: 112px 0 96px; } }
.xpo-hero__eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: #ff6a6a;
  margin-bottom: 18px;
}
.xpo-hero h1 {
  font-size: 40px; line-height: 1.05; font-weight: 800;
  letter-spacing: -0.02em; margin: 0 0 20px; max-width: 16ch;
}
@media (min-width: 1024px) { .xpo-hero h1 { font-size: 60px; } }
.xpo-hero__lead {
  font-size: 19px; line-height: 1.5; max-width: 60ch;
  color: rgba(255,255,255,.82); margin: 0;
}
@media (min-width: 1024px) { .xpo-hero__lead { font-size: 22px; } }
.xpo-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* generic section */
.xpo-section { padding: 56px 0; }
@media (min-width: 1024px) { .xpo-section { padding: 80px 0; } }
.xpo-section--alt { background: var(--xpo-bg); }
.xpo-section--dark { background: #141414; color: #fff; }
.xpo-sectionHead { max-width: 720px; margin: 0 0 40px; }
.xpo-sectionHead h2 {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.12; margin: 0 0 14px;
}
@media (min-width: 1024px) { .xpo-sectionHead h2 { font-size: 40px; } }
.xpo-lead { font-size: 19px; line-height: 1.55; color: var(--xpo-gray); margin: 0; }
.xpo-section--dark .xpo-lead { color: rgba(255,255,255,.8); }

/* prose */
.xpo-prose { max-width: 70ch; }
.xpo-prose h2 {
  font-size: 24px; font-weight: 800; margin: 40px 0 14px; letter-spacing: -0.01em;
}
.xpo-prose h2:first-child { margin-top: 0; }
.xpo-prose p { font-size: 18px; line-height: 1.6; margin: 0 0 18px; color: #2a2a2a; }
.xpo-prose a { color: var(--xpo-red); }

/* card grid */
.xpo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.xpo-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 30px 28px;
  transition: box-shadow .2s, transform .2s;
}
.xpo-card:hover { box-shadow: 0 14px 40px rgba(0,0,0,.10); transform: translateY(-3px); }
.xpo-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--xpo-red); color: #fff; margin-bottom: 18px;
}
.xpo-card__icon svg { width: 26px; height: 26px; }
.xpo-card h3 { font-size: 20px; font-weight: 800; margin: 0 0 10px; }
.xpo-card p { font-size: 16px; line-height: 1.55; color: #46494d; margin: 0; }
.xpo-card a.xpo-cardLink {
  display: inline-block; margin-top: 16px;
  font-weight: 700; font-size: 15px; color: var(--xpo-red); text-decoration: none;
}
.xpo-card a.xpo-cardLink:hover { text-decoration: underline; }

/* stats */
.xpo-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
}
.xpo-stat { border-top: 3px solid var(--xpo-red); padding-top: 16px; }
.xpo-stat__num {
  display: block; font-size: 44px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1; color: #111;
}
@media (min-width: 1024px) { .xpo-stat__num { font-size: 52px; } }
.xpo-section--dark .xpo-stat__num { color: #fff; }
.xpo-stat__label { display: block; margin-top: 8px; font-size: 15px; color: var(--xpo-gray); }
.xpo-section--dark .xpo-stat__label { color: rgba(255,255,255,.75); }

/* split */
.xpo-split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) { .xpo-split { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; } }

/* checklist */
.xpo-check { list-style: none; margin: 0; padding: 0; }
.xpo-check li {
  position: relative; padding-left: 36px; margin-bottom: 16px;
  font-size: 17px; line-height: 1.5;
}
.xpo-check li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--xpo-red);
}
.xpo-check li::after {
  content: ""; position: absolute; left: 6px; top: 8px;
  width: 9px; height: 5px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}

/* cta band */
.xpo-ctaband { background: var(--xpo-red); color: #fff; padding: 56px 0; }
@media (min-width: 1024px) { .xpo-ctaband { padding: 72px 0; } }
.xpo-ctaband__inner {
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .xpo-ctaband__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.xpo-ctaband h2 {
  color: #fff; font-size: 28px; font-weight: 800; margin: 0; letter-spacing: -0.01em;
}
@media (min-width: 1024px) { .xpo-ctaband h2 { font-size: 34px; } }

/* contact / info rows */
.xpo-info { display: grid; grid-template-columns: 1fr; gap: 8px; }
.xpo-newsItem {
  border-top: 1px solid #e6e6e6; padding: 22px 0; display: block; text-decoration: none; color: inherit;
}
.xpo-newsItem:hover h3 { color: var(--xpo-red); }
.xpo-newsItem time { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--xpo-red); text-transform: uppercase; }
.xpo-newsItem h3 { font-size: 20px; font-weight: 800; margin: 8px 0 6px; }
.xpo-newsItem p { font-size: 16px; color: #46494d; margin: 0; }

/* =====================================================================
   TransEase additions — dynamic pieces, built on the XPO design tokens
   ===================================================================== */

/* home hero with background image + content */
.xpo-hero--home { position: relative; overflow: hidden; padding: 96px 0 88px; }
@media (min-width: 1024px) { .xpo-hero--home { padding: 132px 0 120px; } }
.xpo-hero--home .xpo-hero__media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.xpo-hero--home .xpo-container { position: relative; z-index: 1; }
.xpo-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* track-search card (hero + standalone) */
.xpo-track {
  margin-top: 36px; max-width: 560px;
  background: #fff; border-radius: 10px;
  padding: 22px; box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.xpo-track__label {
  display: block; font-size: 14px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--xpo-gray); margin-bottom: 12px;
}
.xpo-track__row { display: flex; gap: 10px; flex-wrap: wrap; }
.xpo-track__input {
  flex: 1; min-width: 200px;
  border: 1px solid #d7d9dc; border-radius: 4px;
  font: inherit; font-size: 16px; padding: 14px 16px; outline: none;
}
.xpo-track__input:focus { border-color: var(--xpo-red); }

/* generic form */
.xpo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.xpo-form__group { display: flex; flex-direction: column; }
.xpo-form__group--full { grid-column: 1 / -1; }
.xpo-form label {
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  color: var(--xpo-gray); margin-bottom: 7px;
}
.xpo-form input, .xpo-form select, .xpo-form textarea {
  border: 1px solid #d7d9dc; border-radius: 4px;
  font: inherit; font-size: 16px; padding: 13px 14px; outline: none;
  background: #fff; width: 100%;
}
.xpo-form input:focus, .xpo-form select:focus, .xpo-form textarea:focus { border-color: var(--xpo-red); }
.xpo-form textarea { resize: vertical; min-height: 130px; }
@media (max-width: 640px) { .xpo-form { grid-template-columns: 1fr; } }

.xpo-card--form { padding: 32px; }
@media (min-width: 1024px) { .xpo-card--form { padding: 40px; } }
.xpo-card--form h2 { font-size: 26px; font-weight: 800; margin: 0 0 6px; letter-spacing: -0.01em; }
.xpo-card--form .xpo-formNote { font-size: 14px; color: var(--xpo-gray); margin: 14px 0 0; }

/* media split (image + text) */
.xpo-media {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.14); aspect-ratio: 4 / 3;
}
.xpo-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xpo-media__badge {
  position: absolute; left: 22px; bottom: 22px;
  background: var(--xpo-red); color: #fff;
  border-radius: 10px; padding: 16px 20px; text-align: center;
}
.xpo-media__badge b { display: block; font-size: 32px; font-weight: 800; line-height: 1; }
.xpo-media__badge span { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }

/* feature list inline (icon rows) */
.xpo-features { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 700px) { .xpo-features { grid-template-columns: 1fr; } }
.xpo-feature { display: flex; gap: 16px; align-items: flex-start; }
.xpo-feature__icon {
  flex: none; width: 46px; height: 46px; border-radius: 9px;
  background: var(--xpo-red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.xpo-feature__icon svg { width: 22px; height: 22px; }
.xpo-feature h3 { font-size: 18px; font-weight: 800; margin: 2px 0 6px; }
.xpo-feature p { font-size: 15px; line-height: 1.5; color: var(--xpo-gray); margin: 0; }

/* alerts */
.xpo-alert { border-radius: 8px; padding: 14px 18px; font-size: 15px; margin-bottom: 22px; }
.xpo-alert--ok { background: #e9f7ef; color: #166534; border: 1px solid #b7e4c7; }
.xpo-alert--err { background: #fdecec; color: #a00000; border: 1px solid #f4c2c2; }

/* accordion */
.xpo-acc { border-top: 1px solid #e6e6e6; }
.xpo-acc__item { border-bottom: 1px solid #e6e6e6; }
.xpo-acc__btn {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font: inherit; font-size: 18px; font-weight: 800;
  letter-spacing: -0.01em; color: #111;
}
.xpo-acc__btn:hover { color: var(--xpo-red); }
.xpo-acc__sign { flex: none; color: var(--xpo-red); font-size: 24px; line-height: 1; transition: transform .2s; }
.xpo-acc__btn[aria-expanded="true"] .xpo-acc__sign { transform: rotate(45deg); }
.xpo-acc__panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.xpo-acc__panel p { font-size: 16px; line-height: 1.6; color: #2a2a2a; margin: 0 0 22px; }

/* breadcrumb on dark hero */
.xpo-crumbs { display: flex; gap: 8px; align-items: center; font-size: 14px; margin-top: 20px; color: rgba(255,255,255,.6); }
.xpo-crumbs a { color: rgba(255,255,255,.8); text-decoration: none; }
.xpo-crumbs a:hover { color: #fff; }
.xpo-crumbs span { color: #ff6a6a; }

/* simple info rows (contact) */
.xpo-contactList { list-style: none; margin: 0; padding: 0; }
.xpo-contactList li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid #e6e6e6; }
.xpo-contactList li:last-child { border-bottom: 0; }
.xpo-contactList svg { flex: none; width: 22px; height: 22px; color: var(--xpo-red); margin-top: 2px; }
.xpo-contactList b { display: block; font-size: 16px; }
.xpo-contactList span { font-size: 15px; color: var(--xpo-gray); }

/* =====================================================================
   Homepage sections mirroring the XPO index.html layout
   ===================================================================== */

/* section header with a side action button */
.xpo-sectionHead--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.xpo-sectionHead--row .xpo-sectionHead { margin-bottom: 0; }

/* punchline (4-item) */
.xpo-punch { text-align: center; }
.xpo-punch__title { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.14; margin: 0 auto 44px; max-width: 22ch; }
@media (min-width: 1024px) { .xpo-punch__title { font-size: 42px; } }
.xpo-punch__items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 860px) { .xpo-punch__items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .xpo-punch__items { grid-template-columns: 1fr; } }
.xpo-punch__item { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.xpo-punch__item .ico { width: 52px; height: 52px; border-radius: 50%; background: var(--xpo-red); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.xpo-punch__item .ico svg { width: 24px; height: 24px; }
.xpo-punch__item p { font-size: 18px; font-weight: 700; color: #111; margin: 0; }

/* punchline (text) */
.xpo-punchText { text-align: center; max-width: 880px; margin: 0 auto; }
.xpo-punchText h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 18px; }
@media (min-width: 1024px) { .xpo-punchText h2 { font-size: 44px; } }
.xpo-punchText p { font-size: 19px; line-height: 1.55; color: var(--xpo-gray); margin: 0; }

/* gallery (image + stat) */
.xpo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .xpo-gallery { grid-template-columns: 1fr; } }
.xpo-gallery__item { background: #fff; border: 1px solid #ececec; border-radius: 12px; overflow: hidden; }
.xpo-gallery__img { aspect-ratio: 4 / 3; }
.xpo-gallery__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xpo-gallery__cap { padding: 22px 24px; }
.xpo-gallery__num { display: block; font-size: 40px; font-weight: 800; line-height: 1; color: #111; letter-spacing: -0.02em; }
.xpo-gallery__sub { display: block; margin-top: 8px; font-size: 15px; color: var(--xpo-gray); }

/* image tiles (large 2-up) */
.xpo-imgtiles { display: grid; gap: 32px; }
.xpo-imgtile { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid #ececec; border-radius: 12px; overflow: hidden; }
@media (max-width: 800px) { .xpo-imgtile { grid-template-columns: 1fr; } }
.xpo-imgtile__media { min-height: 300px; }
.xpo-imgtile__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xpo-imgtile--rev .xpo-imgtile__media { order: 2; }
@media (max-width: 800px) { .xpo-imgtile--rev .xpo-imgtile__media { order: 0; } }
.xpo-imgtile__body { padding: 36px; }
.xpo-imgtile__num { font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.xpo-imgtile__sub { color: var(--xpo-gray); font-size: 16px; margin: 8px 0 20px; }
.xpo-imgtile__body strong { display: block; margin-bottom: 8px; font-size: 16px; }
.xpo-imgtile__body ul { margin: 0; padding-left: 20px; list-style: disc; }
.xpo-imgtile__body li { font-size: 15px; line-height: 1.5; margin-bottom: 7px; color: #2a2a2a; }

/* teaser (quote columns) */
.xpo-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .xpo-teaser { grid-template-columns: 1fr; } }
.xpo-teaser__img { border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 10; margin-bottom: 22px; box-shadow: 0 14px 40px rgba(0,0,0,.1); }
.xpo-teaser__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xpo-teaser__t { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 12px; }
.xpo-teaser__q { font-size: 19px; line-height: 1.5; color: #2a2a2a; margin: 0 0 14px; }
.xpo-teaser__by { color: var(--xpo-red); font-weight: 700; font-size: 14px; }

/* photo card grid */
.xpo-pcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .xpo-pcards { grid-template-columns: 1fr; } }
.xpo-pcard { background: #fff; border: 1px solid #ececec; border-radius: 12px; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.xpo-pcard:hover { box-shadow: 0 14px 40px rgba(0,0,0,.1); transform: translateY(-3px); }
.xpo-pcard__img { aspect-ratio: 4 / 3; }
.xpo-pcard__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xpo-pcard__body { padding: 26px; }
.xpo-pcard__body h3 { font-size: 20px; font-weight: 800; margin: 0 0 10px; }
.xpo-pcard__body p { font-size: 15px; line-height: 1.55; color: #46494d; margin: 0 0 16px; }

/* fix: heading color inside dark heroes/sections (overrides legacy h1 rule) */
.xpo-hero h1, .xpo-hero h2, .xpo-hero h3,
.xpo-section--dark h2, .xpo-section--dark h3 { color: #fff; }
.xpo-hero .xpo-hero__lead, .xpo-hero p { color: rgba(255,255,255,.85); }
