.elementor-2436 .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;}.elementor-2436 .elementor-element.elementor-element-dd6de07.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2436 .elementor-element.elementor-element-890e470 > .elementor-widget-container{margin:-20px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-2436 .elementor-element.elementor-element-5c66666 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}body.elementor-page-2436{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS *//* ============================================================
   SOLACE — ALL COURSES PAGE STYLES
   Paste into WordPress > Appearance > Additional CSS
   or Elementor > Site Settings > Custom CSS
   Keep in sync with solace_all_courses_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; }

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 (minimal title bar) ----------------------------- */
.hero {
  position: relative;
  padding: 96px 0 20px;
  margin-top: -20px;
  background:
    radial-gradient(circle at 92% 50%, rgba(140,198,63,.15), transparent 24%),
    linear-gradient(135deg, #2b2f86 0%, #5562c2 100%);
  color: white;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- BREADCRUMB ------------------------------------------- */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,.45);
  transition: color .15s ease;
}

.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb .sep { color: rgba(255,255,255,.22); }
.breadcrumb .current { color: rgba(255,255,255,.8); }

/* --- PAGE TITLE ------------------------------------------- */
h1 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 46px) !important;
  line-height: 1;
  letter-spacing: -.04em;
}

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

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

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  transition: transform .18s ease;
  white-space: nowrap;
}

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

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

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

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

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

/* --- COURSE LIST ------------------------------------------ */
.courses-section {
  padding: 56px 0 72px;
}

.course-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-card {
  display: flex;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(7,20,38,.10);
  transition: transform .2s ease, box-shadow .2s ease;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(7,20,38,.14);
}

.course-thumb {
  flex: 0 0 360px;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.course-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .35s ease;
}

.course-card:hover .course-thumb img {
  transform: scale(1.04);
}

.course-content {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  border-left: 0.5pt solid var(--navy);
}

.lesson-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}

.course-content h3 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--navy);
}

.course-content p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  max-width: 560px;
}

/* --- INSTRUCTOR ------------------------------------------- */
.instructor-section {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.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: var(--cream);
  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);
}

/* --- RESOURCE LIBRARY ------------------------------------- */
.resources-section {
  padding: 72px 0;
}

.resources-head {
  margin-bottom: 44px;
}

.resources-head p {
  color: var(--muted);
  font-size: 20px;
  max-width: 680px;
  margin: 0;
}

.resource-columns {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}

.resource-group-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

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

.resource-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  color: var(--navy);
  font-weight: 800;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.resource-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(7,20,38,.08);
}

.resource-item span {
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- 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) {
  .course-card { flex-direction: column; }
  .course-thumb { flex: none; width: 100%; }
  .instructor-grid { grid-template-columns: 1fr; }
  .resource-columns { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  h1 { font-size: 26px !important; }
  .course-content { padding: 24px; }
  .footer-inner { flex-direction: column; }
}/* End custom CSS */