/* ============================================
   WMS SUB-PAGES — Supplemental Styles
   Prefix: ws-  (warehouse-sub)
   Extends ps-sub-* classes from proship.css
   ============================================ */

/* ---------- WMS Hero Override (blue eyebrow) ---------- */
.ws-hero-blue .ps-sub-hero__eyebrow {
  color: #2563eb;
}

/* ---------- WMS Metrics Override (blue numbers) ---------- */
.ws-metrics-blue .ps-sub-metrics__number {
  color: #2563eb;
}

/* ---------- WMS Steps Override (blue step circles) ---------- */
.ws-steps-blue .ps-sub-step__num {
  background: #2563eb;
}

/* ============================================
   SIBLING NAVIGATION STRIP
   Horizontal row of 5 cards linking to other WMS sub-pages.
   Placed between FAQ and CTA sections.
   ============================================ */
.ws-siblings {
  background: #f8f9fc;
  padding: 64px 0;
}
.ws-siblings__heading {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
  margin-bottom: 32px;
}
.ws-siblings__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ws-siblings__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 16px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ws-siblings__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border-color: #2563eb;
  text-decoration: none;
}
.ws-siblings__card--active {
  background: #1a1a2e;
  border-color: #1a1a2e;
  pointer-events: none;
}
.ws-siblings__card-icon {
  font-size: 24px;
  color: #2563eb;
}
.ws-siblings__card--active .ws-siblings__card-icon {
  color: #e8630a;
}
.ws-siblings__card-name {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1d1d1f;
  margin: 0;
}
.ws-siblings__card--active .ws-siblings__card-name {
  color: #fff;
}
.ws-siblings__card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}
.ws-siblings__card--active .ws-siblings__card-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .ws-siblings__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .ws-siblings {
    padding: 48px 0;
  }
  .ws-siblings__heading {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .ws-siblings__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ============================================
   RESPONSIVE — Small Mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .ws-siblings__grid {
    grid-template-columns: 1fr;
  }
}
