.elementor-2353 .elementor-element.elementor-element-dd6de07{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2353 .elementor-element.elementor-element-99ac7b6 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS *//* ============================================================
   SOLACE — TRAINING ACADEMY PAGE STYLES
   Paste into WordPress > Appearance > Additional CSS
   or Elementor > Site Settings > Custom CSS
   Keep in sync with solace_training_academy_V1.html
   ============================================================ */

/* --- VARIABLES -------------------------------------------- */
:root {
  --navy:   #2b2f86;
  --navy2:  #3b409a;
  --blue:   #6b78d1;
  --green:  #8cc63f;
  --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; overflow-x: hidden; }

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;
}


/* --- 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 112px;
  margin-top: -20px;
  background:
    radial-gradient(circle at 82% 18%, rgba(140,198,63,.24), transparent 28%),
    radial-gradient(circle at 12% 24%, 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: -90px;
  width: 640px;
  height: 640px;
  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);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.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: 900px;
}

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

.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  padding: 34px;
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0,0,0,.18);
}

.hero-card h3 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.04em;
}

.hero-card p {
  font-size: 17px;
  margin-bottom: 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
  min-height: 110px;
}

.stat strong {
  display: block;
  color: white;
  font-size: 28px;
  letter-spacing: -.04em;
  margin-bottom: 4px;
}

.stat span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 700;
}

/* --- BUTTONS ---------------------------------------------- */
.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;
}

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

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

.btn-secondary {
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  background: rgba(255,255,255,.06);
}

.btn-dark {
  background: var(--navy);
  color: white;
}

/* Elementor-safe scoped overrides */
.btn-primary {
  background: var(--green) !important;
  color: #1d250a !important;
  box-shadow: 0 18px 45px rgba(140,198,63,.22);
}

.btn-dark {
  background: var(--navy) !important;
  color: white !important;
}

/* --- 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;
}

/* --- COURSE GRID ------------------------------------------ */
.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.course-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(140,198,63,.12);
}

.course-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.course-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 42px;
  line-height: .96;
  letter-spacing: -.05em;
}

.course-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 17px;
  max-width: 470px;
}

/* --- RESOURCE LIBRARY ------------------------------------- */
.resources {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resource-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.resource-intro {
  position: sticky;
  top: 40px;
}

.resource-intro p {
  color: var(--muted);
  font-size: 20px;
  margin-bottom: 28px;
}

.resource-list {
  display: grid;
  gap: 12px;
}

.resource-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 800;
}

.resource-item span {
  color: var(--green);
  font-weight: 900;
}

/* --- INSTRUCTOR ------------------------------------------- */
.instructor-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.instructor-photo {
  min-height: 520px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 30% 20%, rgba(140,198,63,.22), transparent 28%),
    linear-gradient(135deg, #dfe4ff, #f7f8f2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

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

.instructor-photo::after {
  content: "Rev. Dr. Andy Morgan";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  background: rgba(255,255,255,.92);
  border-radius: 22px;
  padding: 20px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.instructor-copy p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 18px;
}

.quote-box {
  margin-top: 28px;
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  background: white;
  border-radius: 0 22px 22px 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.03em;
  box-shadow: 0 18px 48px rgba(7,20,38,.06);
}

/* --- FINAL CTA -------------------------------------------- */
.final-cta {
  background:
    radial-gradient(circle at 80% 18%, rgba(140,198,63,.22), transparent 24%),
    linear-gradient(135deg, #2b2f86, #5562c2);
  color: white;
  text-align: center;
}

.final-cta h2 { color: white; }

.final-cta p {
  color: rgba(255,255,255,.78);
  font-size: 21px;
  max-width: 760px;
  margin: 0 auto 30px;
}

/* --- 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 !important;
  top: 24px !important;
  right: 24px !important;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: white !important;
  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; }

/* --- RECAPTCHA -------------------------------------------- */
.grecaptcha-badge {
  visibility: hidden;
}

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid,
  .course-grid,
  .resource-layout,
  .instructor-grid {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .resource-intro { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding: 120px 0 90px; }
  h1 { font-size: 52px; }
  section { padding: 70px 0; }
  .hero-stats { grid-template-columns: 1fr; }
  .course-card { padding: 26px; }
  .course-card h3 { font-size: 36px; }
  .footer-inner { flex-direction: column; }
}/* End custom CSS */