.elementor-2518 .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-2518 .elementor-element.elementor-element-dd6de07.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2518 .elementor-element.elementor-element-890e470 > .elementor-widget-container{margin:-20px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-2518 .elementor-element.elementor-element-5c66666 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}body.elementor-page-2518{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS *//* ============================================================
   SOLACE — LESSON PAGE STYLES (sermon outline)
   Paste into Elementor > Site Settings > Custom CSS
   Designed for use with templated header/footer.
   Keep in sync with solace_lesson_sermon_outline_V1b.html
   NOTE: This stylesheet is identical across all lesson pages.
   Only the chunk HTML changes per lesson (active states,
   video embed, breadcrumb, next lesson link, resource link).
   ============================================================ */

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

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

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

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

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

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

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

/* Elementor-safe overrides */
.btn-primary {
  background: var(--green) !important;
  color: #1d250a !important;
}

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

/* --- LESSON LAYOUT ---------------------------------------- */
.lesson-section {
  padding: 44px 0 80px;
}

.lesson-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* --- VIDEO EMBED ------------------------------------------ */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- NEXT LESSON ------------------------------------------ */
.next-lesson {
  margin-top: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(7,20,38,.07);
}

.next-lesson-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.next-lesson-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}

/* --- RELATED RESOURCES ------------------------------------ */
.related {
  margin-top: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.related-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.related-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

/* --- COURSE SIDEBAR --------------------------------------- */
.course-sidebar {
  position: sticky;
  top: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(7,20,38,.08);
}

.sidebar-heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.outline-section {
  margin-bottom: 4px;
}

.outline-section-link {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 10px;
  letter-spacing: -.01em;
  transition: background .15s ease;
}

.outline-section-link:hover { background: var(--cream); }

.outline-section-link.active {
  background: rgba(43,47,134,.07);
}

.outline-lessons {
  margin: 2px 0 4px;
  margin-left: 18px;
  padding-left: 12px;
  border-left: 2px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.outline-lesson-link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}

.outline-lesson-link:hover {
  background: var(--cream);
  color: var(--navy);
}

.outline-lesson-link.active {
  color: var(--navy);
  font-weight: 900;
  background: rgba(140,198,63,.12);
  border-left: 3px solid var(--green);
  padding-left: 10px;
}

.sidebar-cta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* --- 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) {
  .lesson-layout { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  h1 { font-size: 26px !important; }
  .next-lesson { flex-direction: column; align-items: flex-start; gap: 14px; }
  .related { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-inner { flex-direction: column; }
}/* End custom CSS */