.elementor-2224 .elementor-element.elementor-element-dd6de07{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS *//* ============================================================
   SOLACE — TEAM / CAREERS PAGE STYLES
   Paste into WordPress > Appearance > Additional CSS
   or Elementor > Site Settings > Custom CSS
   Keep in sync with solace_team_careers_WIP.html
   ============================================================ */

/* --- VARIABLES -------------------------------------------- */
:root {
  --navy:   #2b2f86;
  --navy2:  #3b409a;
  --blue:   #6b78d1;
  --gold:   #8cc63f;
  --cream:  #f7f8f2;
  --white:  #ffffff;
  --ink:    #111827;
  --muted:  #6b7280;
  --line:   rgba(7,20,38,.1);
  --shadow: 0 28px 90px rgba(7,20,38,.18);
  --radius: 28px;
}

/* --- BASE -------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.45;
}

a { text-decoration: none; color: inherit; }

/* Force Inter + weight so Elementor/theme cannot override headings */
h1, h2, h3, h4, h5, h6 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

/* Prevent horizontal scroll bleed when placed inside Elementor */
.page { overflow-x: hidden; }

/* --- NAVIGATION ------------------------------------------- */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  color: white;
}

.nav-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,.82);
}

.nav-links a:hover { color: white; }

.nav-cta {
  border: 1px solid rgba(140,198,63,.5);
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
}

/* --- HERO -------------------------------------------------- */
.hero {
  position: relative;
  padding: 150px 0 110px;
  background:
    radial-gradient(circle at 80% 15%, rgba(140,198,63,.22), transparent 28%),
    radial-gradient(circle at 12% 25%, rgba(255,255,255,.08), transparent 24%),
    linear-gradient(135deg, #2b2f86 0%, #5562c2 100%);
  color: white;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -80px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 80px rgba(255,255,255,.02), inset 0 0 0 160px rgba(255,255,255,.02);
}

.eyebrow {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 26px;
  background: rgba(255,255,255,.08);
}

h1 {
  margin: 0 0 24px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.06em;
  max-width: 980px;
}

.hero p {
  max-width: 720px;
  font-size: 22px;
  color: rgba(255,255,255,.78);
  margin: 0;
}

/* --- SECTIONS --------------------------------------------- */
section { padding: 90px 0; }

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}

.kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -.05em;
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

/* --- TEAM GRID -------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.member {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .18s ease;
}

.member:hover { transform: translateY(-4px); }

.member-image {
  height: 240px;
  background:
    radial-gradient(circle at 30% 20%, rgba(140,198,63,.24), transparent 30%),
    linear-gradient(135deg, #dfe4ff, #f7f8f2);
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-content { padding: 26px; }

.member-content h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 28px;
  letter-spacing: -.03em;
}

.member-content h3 a {
  transition: color .18s ease;
}

.member-content h3 a:hover {
  color: var(--blue);
}

.role {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.member-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* --- MISSION / CAREERS PANEL ------------------------------ */
.mission {
  background: white;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 54px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.mission-copy h2 { margin-bottom: 18px; }

.mission-copy p {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 30px;
}

/* --- BUTTONS (scoped to .page to prevent Elementor override) */
.page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  transition: transform .18s ease;
}

.page .btn:hover { transform: translateY(-2px); }

.page .btn-primary {
  background: var(--gold);
  color: #1d250a;
  box-shadow: 0 18px 45px rgba(140,198,63,.22);
}

.page .btn-secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--navy);
}

/* --- CAREER PANEL ----------------------------------------- */
.career-panel {
  background:
    radial-gradient(circle at 80% 18%, rgba(140,198,63,.22), transparent 24%),
    linear-gradient(135deg, #2b2f86, #5562c2);
  color: white;
  border-radius: 34px;
  padding: 40px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.career-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 40px rgba(255,255,255,.03);
}

.career-panel h3 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: .96;
  letter-spacing: -.05em;
}

.career-panel p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  max-width: 420px;
}

/* --- FOOTER ----------------------------------------------- */
footer {
  background: #06111f;
  color: rgba(255,255,255,.68);
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

footer strong {
  color: white;
  display: block;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

/* --- HAMBURGER / MOBILE MENU ------------------------------ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.hamburger:hover { background: rgba(255,255,255,.1) !important; border-radius: 6px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #2b2f86, #5562c2);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { color: white; font-size: 28px; font-weight: 800; letter-spacing: -.03em; text-align: center; }
.mobile-menu a:hover { color: rgba(255,255,255,.75); }
.mobile-menu .mobile-cta { border: 1px solid rgba(140,198,63,.5); padding: 14px 28px; border-radius: 999px; font-size: 16px; margin-top: 8px; }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  opacity: 0.72;
}
.mobile-close:hover { opacity: 1; background: rgba(255,255,255,.1) !important; }

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 980px) {
  .team-grid,
  .mission {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding: 120px 0 90px; }
  h1 { font-size: 52px; }
  section { padding: 70px 0; }
  .mission { padding: 28px; }
}/* End custom CSS */