:root {
  --bg-page: #f3f4f8;
  --card-bg: #ffffff;
  --radius-card: 26px;
  --shadow-soft: 0 14px 36px rgba(15,23,42,0.08);
  --ink: #020617;
  --muted: #6b7280;
}

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

html, body {
  height: 100%;
}

body.career-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-page);
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #1d4ed8;
}

/* MAIN WRAP */
.page-main {
  padding: 18px 0 40px;
  background: var(--bg-page);
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 10px;
}

/* GENERIC SECTIONS + CARDS */
.dcc-sec {
  margin-bottom: 18px;
}

.dcc-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 20px;
}

@media (max-width: 640px) {
  .dcc-card {
    border-radius: 22px;
    padding: 18px 18px 16px;
  }
}

/* TYPOGRAPHY */
.career-meta {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-bottom: 6px;
}

.dcc-title {
  font-size: 1.75rem;
  line-height: 1.28;
  margin-bottom: 10px;
  color: #020617;
}

.dcc-sub {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.dcc-h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #020617;
}

.dcc-card h3 {
  font-size: 1.02rem;
  margin: 12px 0 6px;
  color: #111827;
}

.dcc-card p {
  margin-bottom: 8px;
}

.dcc-card ul {
  margin: 4px 0 10px 20px;
}

/* HERO CARD extras */
.career-hero {
  position: relative;
}

.career-keyline {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.career-contact {
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.career-contact .sep {
  opacity: 0.5;
}

/* Small YouTube pill */
.dcc-yt {
  background: #ffffff;
  color: #0a1735;
  border: 1px solid #0a1735;
  border-radius: 999px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}
.dcc-yt i {
  font-size: 1.1rem;
  color: #ff0000;
}
.dcc-yt:hover {
  background: #f2f2f2;
}

/* Vendor button */
.dcc-btn {
  background: #ffffff;
  color: #0a1735;
  border: 1px solid #0a1735;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s ease;
}
.dcc-btn:hover {
  background: #f2f2f2;
}

/* CITY CHIPS */
.dcc-cities {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dcc-city {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 0.8rem;
}

/* READ MORE BAND – same pattern as tips page */
.dcc-band {
  max-width: 1180px;
  margin: 4px auto 40px;
  padding: 0 10px;
}

.dcc-trigger {
  width: 100%;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.dcc-panel {
  display: none;
  margin-top: 10px;
  background: #ffffff;
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}

.dcc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dcc-tag {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1d4ed8;
  white-space: nowrap;
}

/* Make header + mini-bar space feel same as reference page */
.dcc-topbar-mini {
  /* header-premium.css already styles colors/border;
     here we just control spacing relative to content */
  margin-bottom: 6px;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .page-main {
    padding-top: 14px;
  }
  .dcc-title {
    font-size: 1.45rem;
  }
}/* FIX HEADER LEFT–RIGHT PADDING (mobile + laptop) */
.dcc-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 12px !important;
    padding-right: 12px !important;
    width: 100%;
}

/* ===== CAREER MINI BAR FULL-WIDTH FIX ===== */
/* When mini bar sits inside .page-shell, force its background to span edge-to-edge */
.page-shell .dcc-topbar-mini {
  position: relative;
  left: 50%;
  width: 100vw;                /* full viewport width */
  margin-left: -50vw;          /* pull it out of the centered shell */
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

/* Avoid any double rounding on mobile */
@media (max-width: 600px) {
  .page-shell .dcc-topbar-mini {
    padding-left: 10px;
    padding-right: 10px;
  }
}.dcc-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.dcc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  background: #f3f5f8;
  border: 1px solid #e3e6ea;
  white-space: nowrap;
}/* =========================================
   SIX CORE SERVICE PILLARS – SS2 STYLE
   ========================================= */

.core-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ALWAYS 3 in one line (mobile + laptop) */
  gap: 16px;
  margin-top: 16px;
}

/* Individual rounded cards */
.core-card {
  background: #ffffff;
  border-radius: 18px;          /* fillet corners like SS2 */
  padding: 20px 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,23,42,0.10);
  border: 1px solid #e2e4ec;
  transition: 0.22s ease;
}

.core-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(15,23,42,0.16);
}

/* Title */
.core-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #020617;
}

/* Link inside title */
.core-card h3 a {
  color: inherit;
  text-decoration: none;
}
.core-card h3 a:hover {
  text-decoration: underline;
}

/* Description */
.core-card p {
  margin: 0;
  font-size: 0.80rem;
  color: #6b7280;
}

/* Make sure it still looks neat on very small mobiles */
@media (max-width: 480px) {
  .core-card {
    padding: 16px 8px;
  }
  .core-card h3 {
    font-size: 0.9rem;
  }
  .core-card p {
    font-size: 0.75rem;
  }
}/* ===============================================
   UNIFORM FILLET CONTAINER — SLIMMER PADDING
   =============================================== */
.dcc-sec > .dcc-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 20px 18px 22px;   /* ↓ reduced left/right & top */
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
}

/* GAP BETWEEN SECTIONS (slightly closer) */
.dcc-sec {
    padding-top: 6px;
    padding-bottom: 6px;
}

/* MOBILE SLIMMER */
@media (max-width: 600px) {
    .dcc-sec > .dcc-card {
        border-radius: 22px;
        padding: 16px 14px 18px;  /* ↓ mobile reduces equally */
    }
}/* ==============================================
   MOBILE SAFE PADDING FIX (NO TOUCHING SIDES)
   ============================================== */
@media (max-width: 600px) {
    .dcc-sec > .dcc-card {
        padding-left: 20px !important;   /* increased */
        padding-right: 20px !important;  /* increased */
        border-radius: 22px;
    }

    .dcc-sec {
        padding-left: 10px !important;   /* section wrapper */
        padding-right: 10px !important;
    }
}/* FORCE SAFE PADDING FOR CTA FILLET SECTION */
.fillet-cta .dcc-card {
    padding-left: 22px !important;
    padding-right: 22px !important;
}

/* MOBILE FIX */
@media (max-width: 600px) {
    .fillet-cta .dcc-card {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}