/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: #2d3748;
  background-color: #f7fafc;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 20px;
  background: #fff;
  color: #2d3748;
  z-index: 10000;
  font-size: 16px;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: 1418px;
  margin: 0 auto;
  padding: 0 38px;
}

/* ============================================
   SITE HEADER WRAP (hero + headers combined)
   ============================================ */
.site-header-wrap {
  background-image: url('/images/site/NM-Page-Header-Mountain.jpg');
  background-size: cover;
  background-position: 50% 13%;
}

/* ============================================
   TOP BAR (Secondary Navigation)
   ============================================ */
.top-bar {
  background-color: #2f515e;
  position: relative;
  z-index: 100;
}

.top-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
}

.top-bar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar__item {
  position: relative;
}

.top-bar__link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  padding: 16px 20px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.top-bar__link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.top-bar__link .arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  transition: transform 0.2s;
}

.top-bar__link .arrow svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.top-bar__globe {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  color: #fff;
  border-radius: 50%;
}

.top-bar__globe:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.top-bar__globe svg {
  width: 37px;
  height: 37px;
  fill: #fff;
}

/* Dropdown */
.top-bar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1b202b;
  border-radius: 2px;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
  min-width: 240px;
  padding: 0;
  z-index: 200;
}

.top-bar__item:hover .top-bar__dropdown {
  display: block;
}

.top-bar__dropdown a {
  display: block;
  padding: 11px 13px;
  font-size: 13px;
  color: #f7fafc;
  white-space: nowrap;
}

.top-bar__dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #d4a76a;
}

.top-bar__dropdown-sub {
  position: relative;
}

.top-bar__dropdown-sub > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 13px;
  font-size: 13px;
  color: #f7fafc;
  white-space: nowrap;
  cursor: pointer;
}

.top-bar__dropdown-sub > span .arrow-right {
  display: inline-flex;
  align-items: center;
  margin-left: 16px;
}

.top-bar__dropdown-sub > span .arrow-right svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transform: rotate(-90deg);
}

.top-bar__dropdown-sub:hover > span {
  background-color: rgba(255, 255, 255, 0.1);
  color: #d4a76a;
}

.top-bar__dropdown-flyout {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #1b202b;
  border-radius: 2px;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  padding: 0;
  z-index: 210;
}

.top-bar__dropdown-sub:hover > .top-bar__dropdown-flyout {
  display: block;
}

.top-bar__dropdown-flyout a {
  display: block;
  padding: 11px 13px;
  font-size: 13px;
  color: #f7fafc;
  white-space: nowrap;
}

.top-bar__dropdown-flyout a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #d4a76a;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
  background-color: transparent;
  position: relative;
  z-index: 90;
}

.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 134px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 49px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.primary-nav__item {
  position: relative;
}

.primary-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 10px;
  line-height: 1.4;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
}

.primary-nav__link:hover {
  color: #d4a76a;
}

.primary-nav__link .arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  transition: transform 0.2s;
}

.primary-nav__link .arrow svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Primary nav dropdown */
.primary-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1b202b;
  border-radius: 2px;
  box-shadow: 0 2px 13px rgba(0, 0, 0, 0.1);
  min-width: 260px;
  padding: 0;
  z-index: 200;
}

.primary-nav__item:hover .primary-nav__dropdown {
  display: block;
}

.primary-nav__dropdown a {
  display: block;
  padding: 11px 13px;
  font-size: 13px;
  color: #f7fafc;
}

.primary-nav__dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #d4a76a;
}

.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  margin-left: 10px;
  border-radius: 50%;
}

.search-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.search-toggle svg {
  width: 22px;
  height: 22px;
}

/* Mobile menu toggle (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 0 0 0;
  position: relative;
}

.hero__content {
  padding: 0 0 40px;
  padding-left: calc(374px + 32px);
}

.hero__content--centered {
  padding-left: 0;
  text-align: center;
}

.hero__title {
  font-family: 'Lora', serif;
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 12px;
}

.breadcrumbs {
  font: 400 15px/20px 'Roboto', sans-serif;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,.5);
}

.breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs__separator {
  margin: 0 6px;
}

/* ============================================
   MAIN CONTENT AREA (Sidebar + Content)
   ============================================ */

/* Legacy: body.content-style-unboxed .site { background: #fff }
   Everything below the hero (sidebar, content, explore, subscribe) is white;
   the #f7fafc body color only shows as outer canvas on very wide viewports. */
#main {
  background-color: #ffffff;
}

.content-area {
  display: grid;
  grid-template-columns: 374px 1fr;
  gap: 32px;
  padding: 40px 0 0;
}

.content-area--no-sidebar {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}

.content-area--no-sidebar .main-content,
.content-area--no-sidebar .main-content__text {
  text-align: center;
}

.content-area--no-sidebar .book-toc__list {
  display: inline-block;
  text-align: center;
  margin: 0 auto 32px;
}

/* ---- SIDEBAR ---- */
.sidebar {
  padding: 0 0 40px 0;
}

.sidebar-nav__item {
  border-bottom: 1px solid #e2e8f0;
}

.sidebar-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  user-select: none;
}

.sidebar-nav__label {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #2d3748;
}

.sidebar-nav__label--current {
  color: #2d3748;
}

.sidebar-nav__arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aec0;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sidebar-nav__arrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sidebar-nav__arrow.open {
  transform: rotate(180deg);
}

.sidebar-nav__submenu {
  display: none;
  padding: 0 0 12px 16px;
}

.sidebar-nav__submenu.open {
  display: block;
}

.sidebar-nav__subitem {
  padding: 5px 0;
}

.sidebar-nav__sublink {
  font-size: 16px;
  color: #4a5568;
  display: block;
}

.sidebar-nav__sublink:hover {
  color: #b27a42;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.sidebar-nav__sublink--book {
  font-weight: 500;
  color: #2d3748;
  flex: 1;
}

.sidebar-nav__book-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.sidebar-nav__book-header .sidebar-nav__arrow {
  flex-shrink: 0;
  margin-left: 8px;
}

.sidebar-nav__chapter-list {
  display: none;
  padding-left: 16px;
  margin-top: 4px;
}

.sidebar-nav__chapter-list.open {
  display: block;
}

.sidebar-nav__chapter-item {
  padding: 3px 0;
}

.sidebar-nav__chapter-link {
  font-size: 15px;
  color: #718096;
}

.sidebar-nav__chapter-link:hover {
  color: #b27a42;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

/* ---- MAIN CONTENT ---- */
.main-content {
  min-width: 0;
  padding: 0 0 40px 0;
  display: flex;
  gap: 40px;
}

.main-content__text {
  flex: 1;
  min-width: 0;
}

.main-content__text p {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.4;
  color: #1a202c;
  margin-bottom: 20px;
}

.main-content__text h2 {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a202c;
  margin-top: 32px;
  margin-bottom: 32px;
}

.main-content__text a {
  color: #4a7c8a;
  text-decoration: none;
}

.main-content__text a:hover {
  color: #b27a42;
  text-decoration: underline;
}

.book-list {
  margin-bottom: 20px;
}

.book-list li {
  padding: 4px 0;
}

.book-list a {
  color: #357093;
  font-family: 'Lora', serif;
  font-size: 17px;
  text-decoration: underline;
}

.book-list a:hover {
  color: #b27a42;
  text-decoration: underline;
}

.main-content__image {
  flex-shrink: 0;
  width: 420px;
}

.main-content__image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   EXPLORE LIBRARY SECTION
   ============================================ */
.explore-library {
  background-color: #e1edf2;
  text-align: center;
  padding: 60px 30px;
}

.explore-library a {
  display: block;
}

.explore-library__title {
  font-family: 'Lora', serif;
  font-size: 33px;
  font-weight: 400;
  color: #1a202c;
}

.explore-library__image {
  width: 240px;
  height: 240px;
  margin: 0 auto 40px;
  border-radius: 50%;
  overflow: hidden;
}

.explore-library__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   GENERIC PAGE (no sidebar, left-aligned)
   ============================================ */
.content-area--no-sidebar.content-area--page,
.content-area--no-sidebar.content-area--page .main-content,
.content-area--no-sidebar.content-area--page .main-content__text {
  text-align: left;
}

/* ============================================
   LIBRARY PAGE
   ============================================ */
.content-area--no-sidebar.content-area--library {
  max-width: 1342px;
}

.content-area--no-sidebar.content-area--library,
.content-area--no-sidebar.content-area--library .main-content,
.content-area--no-sidebar.content-area--library .main-content__text {
  text-align: left;
}

.library__intro {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #2d3748;
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.library__featured {
  margin-bottom: 40px;
}

.library__featured-heading {
  font-family: 'Lora', serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a202c;
  margin-bottom: 15px;
  text-align: center;
}

.library__featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
}

.library__featured-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.library__featured-item:hover .library__featured-title {
  color: #b27a42;
}

.library__featured-cover {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
}

.library__featured-title {
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 400;
  color: #2d3748;
  text-align: center;
  transition: color 0.2s ease;
}

.library__explore {
  margin-bottom: 40px;
}

.book-accordion__toggle.library__explore-toggle {
  font-family: 'Lora', serif;
  font-size: 30px;
  font-weight: 400;
  background-color: #518a9c;
  border-radius: 6px;
}

.library__explore-toggle:hover,
.library__explore-toggle.open {
  background-color: #3d6d7c;
}

.book-accordion__panel.library__explore-panel {
  border: none;
  background-color: transparent;
}

.book-accordion__panel.library__explore-panel > .book-accordion__panel-inner {
  padding: 16px 0 0;
}

.library__volume-item {
  margin-bottom: 4px;
}

.library__volume-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #518a9c;
  color: #fff;
  font-family: 'Lora', serif;
  font-size: 30px;
  font-weight: 400;
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
}

.library__volume-toggle:hover,
.library__volume-toggle.open {
  background-color: #3d6d7c;
  color: #f6dea4;
}

.library__volume-toggle .book-accordion__icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.library__volume-toggle .book-accordion__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.library__volume-toggle.open .book-accordion__icon {
  transform: rotate(180deg);
}

.library__volume-panel {
  background-color: transparent;
  border: none;
  margin-bottom: 2px;
}

.library__volume-panel > .book-accordion__panel-inner {
  padding: 20px 0;
}

.library__book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.library__book-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.library__book-item:hover {
  box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.25);
}

.library__book-item:hover .library__book-title {
  color: #b27a42;
}

.library__book-cover {
  height: 163px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.library__book-title {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a202c;
  padding: 10px 16px;
  transition: color 0.2s ease;
}

.library__other-teachings {
  text-align: center;
}

.book-accordion__panel .library__other-teachings-intro {
  font-family: 'Lora', serif !important;
  font-size: 17px;
  line-height: 1.7;
  color: #2d3748;
  margin-bottom: 20px;
}

.book-accordion__panel .library__other-teachings-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px;
}

.book-accordion__panel .library__other-teachings-list li {
  padding: 4px 0;
  font-family: 'Lora', serif !important;
  font-size: 17px;
}

.book-accordion__panel .library__other-teachings-list li a {
  color: #357093;
  text-decoration: underline;
}

.book-accordion__panel .library__other-teachings-list li a:hover {
  color: #b27a42;
}

.library__view-all {
  margin-top: 16px;
}

.library__view-all a {
  color: #357093;
  text-decoration: underline;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
}

.library__view-all a:hover {
  color: #b27a42;
}

/* Responsive - Library page */
@media (max-width: 1024px) {
  .library__featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .library__book-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .library__featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .library__book-grid {
    grid-template-columns: 1fr;
  }
  .library__explore-toggle {
    font-size: 18px;
  }
  .library__volume-toggle {
    font-size: 17px;
  }
}

/* ============================================
   SUBSCRIBE / NEWSLETTER SECTION
   ============================================ */
.subscribe-section {
  background-color: #f7e9c6;
  padding: 64px 38px 80px;
}

.subscribe-section__inner {
  max-width: 1050px;
  margin: 0 auto;
}

.subscribe-section__title {
  font-family: 'Lora', serif;
  font-size: 33px;
  font-weight: 400;
  color: #1a202c;
  text-align: center;
  margin-bottom: 40px;
}

.subscribe-section__content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  max-width: 974px;
  margin: 0 auto;
}

.subscribe-section__books {
  flex-shrink: 0;
  width: 314px;
}

.subscribe-section__books img {
  width: 100%;
  height: auto;
}

.subscribe-section__form-area {
  flex: 1;
}

.subscribe-section__lead {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
  color: #222;
}

.subscribe-section__interests {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 16px;
  color: #222;
}

.subscribe-section__interest-list {
  list-style: disc;
  padding-left: 24px;
  margin-top: 8px;
}

.subscribe-section__interest-list li {
  padding: 3px 0;
  font-size: 17px;
  color: #2d3748;
}

.subscribe-section__interest-list em {
  font-style: italic;
}

.subscribe-form {
  margin-top: 24px;
}

.subscribe-form__select {
  width: 423px;
  padding: 10px 30px 10px 15px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  color: #222;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23222222' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  margin-bottom: 12px;
  cursor: pointer;
}

.subscribe-form__row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.subscribe-form__email {
  width: 423px;
  padding: 10px 15px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  color: #222;
}

.subscribe-form__email::placeholder {
  color: #999;
}

.subscribe-form__btn {
  background-color: #b27a42;
  color: #fff;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  padding: 7px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.subscribe-form__btn:hover {
  background-color: #9a6935;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: #2f515e;
  color: #fff;
  padding: 60px 30px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.footer__logo img {
  height: 57px;
  width: auto;
}

.footer__description {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  max-width: 780px;
  margin: 0 auto 40px;
}

.footer__description a {
  color: #fff;
  font-weight: 400;
  text-decoration: underline;
}

.footer__description a:hover {
  color: #d4a76a;
}

.footer__section-title {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}

/* International Sites */
.footer__intl-sites {
  margin-bottom: 40px;
}

.footer__intl-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer__intl-list a {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  padding: 4px 0;
  white-space: nowrap;
}

.footer__intl-list a:hover {
  color: #d4a76a;
}

/* Our Sites & Apps */
.footer__sites {
  margin-bottom: 40px;
}

.footer__sites-list {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer__sites-list a {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}

.footer__sites-list a:hover {
  color: #d4a76a;
}

/* Social Links */
.footer__social {
  margin-bottom: 40px;
}

.footer__social-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.2s;
}

.footer__social-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.footer__social-link svg {
  width: 22px;
  height: 22px;
}

.footer__copyright {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background-color: rgba(178, 122, 66, 0.85);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: opacity 0.3s, background-color 0.2s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background-color: #b27a42;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SEARCH MODAL
   ============================================ */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-modal.open {
  display: flex;
}

.search-modal__inner {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  position: relative;
}

.search-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #718096;
  border-radius: 50%;
}

.search-modal__close:hover {
  background-color: #f0f4f8;
}

.search-modal__form {
  display: flex;
  gap: 10px;
}

.search-modal__input {
  flex: 1;
  padding: 12px 16px;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  outline: none;
}

.search-modal__input:focus {
  border-color: #4a7c8a;
}

.search-modal__submit {
  background-color: #2f515e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
}

.search-modal__submit:hover {
  background-color: #3d6475;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .main-content__image {
    width: 320px;
  }
}

@media (max-width: 1024px) {
  .primary-nav__link {
    font-size: 17px;
    padding: 10px 8px;
  }

  .main-content {
    flex-direction: column;
  }

  .main-content__image {
    width: 100%;
    max-width: 400px;
  }

  .hero__content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .top-bar__nav {
    display: none;
  }

  .primary-nav {
    display: none;
  }

  .search-toggle {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
  }

  .mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
  }

  .hero__title {
    font-size: 32px;
  }

  .content-area {
    grid-template-columns: 1fr;
  }

  .sidebar {
    padding: 0 0 20px;
    border-bottom: 1px solid #e2e8f0;
  }

  .main-content {
    padding: 20px;
  }

  .subscribe-section__content {
    flex-direction: column;
  }

  .subscribe-section__books {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .footer__sites-list {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   BOOK PAGE - Content Area
   ============================================ */
.book-intro {
  margin-bottom: 32px;
}

.book-intro__cover {
  float: right;
  width: 420px;
  margin: 5px 0 30px 40px;
}

.book-intro__cover img {
  width: 100%;
  height: auto;
  display: block;
}

.book-intro p {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.4;
  color: #1a202c;
  margin-bottom: 18px;
}

.book-intro p em {
  font-style: italic;
}

.book-intro a {
  color: #357093;
  text-decoration: underline;
}

.book-intro a:hover {
  color: #b27a42;
}

/* Book TOC */
.book-toc__heading {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #1a202c;
  margin-bottom: 16px;
}

.book-toc__list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.book-toc__list li {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: #2d3748;
  padding-bottom: 10px;
}

.book-toc__list a {
  color: #357093;
  text-decoration: underline;
}

.book-toc__list a:hover {
  color: #b27a42;
}

/* All Revelations Sort Links */
.all-revelations__sort-links {
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
}

.all-revelations__sort-links a {
  color: #357093;
  text-decoration: underline;
}

.all-revelations__sort-links a:hover {
  color: #b27a42;
}

.all-revelations__sort-separator {
  margin: 0 8px;
  color: #718096;
}

.all-revelations__intro {
  margin-bottom: 16px;
  font-family: 'Lora', serif;
  font-size: 17px;
  color: #2d3748;
}

.book-toc__date-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #718096;
  margin-top: 16px;
  list-style: none;
}

/* Book Accordion Toggles (Purchase / Listen) */
.book-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #4b818b;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  margin-bottom: 12px;
}

.book-accordion__toggle:hover,
.book-accordion__toggle.open {
  background-color: #2d5d66;
  color: #f6dea4;
}

.book-accordion__toggle .book-accordion__icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.book-accordion__toggle .book-accordion__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.book-accordion__toggle.open .book-accordion__icon {
  transform: rotate(180deg);
}

.book-accordion__panel {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  background-color: #fff;
  border: 1px solid transparent;
  border-top: none;
  margin-bottom: 2px;
}

.book-accordion__toggle.open + .book-accordion__panel {
  border-color: #e2e8f0;
}

.book-accordion__panel-inner {
  padding: 24px 16px;
}

.book-accordion__panel h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 8px;
  margin-top: 20px;
}

.book-accordion__panel h4:first-child {
  margin-top: 0;
}

.book-accordion__panel ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 8px;
}

.book-accordion__panel ul li {
  padding: 3px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: #2d3748;
}

.book-accordion__panel ul li a {
  color: #357093;
  text-decoration: underline;
}

.book-accordion__panel ul li a:hover {
  color: #b27a42;
}

.book-accordion__panel--listen ul {
  padding-left: 34px;
}

.book-accordion__panel--listen ul li {
  font-family: 'Lora', serif;
}

.book-accordion__panel p {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  color: #2d3748;
  margin-bottom: 8px;
}

.book-accordion__panel p a {
  color: #357093;
  text-decoration: underline;
}

.book-accordion__panel p a:hover {
  color: #b27a42;
}

/* Responsive - Book page */
@media (max-width: 1024px) {
  .book-intro__cover {
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 24px;
  }
}

/* ============================================
   CHAPTER PAGE - Media Tabs
   ============================================ */
.media-tabs {
  float: right;
  width: 420px;
  margin: 0 0 18px 40px;
}

.media-tabs__list {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  margin: 0;
  padding: 0;
}

.media-tabs__tab {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #4a5568;
  background-color: transparent;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.media-tabs__tab:hover {
  color: #2d3748;
}

.media-tabs__tab[aria-selected="true"] {
  background-color: #fafbfc;
  color: #2d3748;
  border-color: #e2e8f0;
  font-weight: 500;
}

.media-tabs__panel {
  display: none;
  background-color: #fafbfc;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-top: none;
}

.media-tabs__panel.active {
  display: block;
}

.media-tabs__panel p {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.55;
  color: #2d3748;
  margin-bottom: 8px;
}

.media-tabs__panel a {
  color: #357093;
  text-decoration: underline;
}

.media-tabs__panel a:hover {
  color: #b27a42;
}

.media-tabs__info-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.media-tabs__panel audio {
  width: 100%;
  margin: 8px 0;
}

.media-tabs__panel iframe {
  width: 100%;
  height: 213px;
  border: none;
}

/* ============================================
   CHAPTER PAGE - Chapter Text
   ============================================ */
.chapter-text {
  margin-bottom: 40px;
}

.chapter-text p {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.4;
  color: #1a202c;
  margin-bottom: 20px;
}

.chapter-text a {
  color: #357093;
  text-decoration: underline;
}

.chapter-text a:hover {
  color: #b27a42;
}

/* ============================================
   CHAPTER PAGE - Previous / Next Navigation
   ============================================ */
.chapter-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 40px;
}

.chapter-nav a {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: #357093;
  text-decoration: underline;
}

.chapter-nav a:hover {
  color: #b27a42;
}

a.chapter-nav__prev::before {
  content: "\2190\00a0";
}

a.chapter-nav__next::after {
  content: "\00a0\2192";
}

/* ============================================
   CHAPTER PAGE - Related Teachings
   ============================================ */
.related-teachings {
  margin-bottom: 40px;
}

.related-teachings__heading {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 20px;
}

.related-teachings__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.related-teachings__item {
  width: calc(33.333% - 16px);
}

.related-teachings__item a {
  display: block;
  color: #357093;
  text-decoration: none;
}

.related-teachings__item a:hover {
  color: #b27a42;
}

.related-teachings__image {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
  border-radius: 2px;
}

.related-teachings__title {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  display: block;
}

/* Responsive - Chapter page */
@media (max-width: 1024px) {
  .media-tabs {
    float: none;
    width: 100%;
    margin: 0 0 24px 0;
  }
}

@media (max-width: 768px) {
  .related-teachings__list {
    flex-direction: column;
  }

  .related-teachings__item {
    width: 100%;
  }

  .chapter-nav {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* =============================================
   HOMEPAGE
   ============================================= */

/* Homepage Hero — taller, with video + text layout */
.home-hero {
  padding: 40px 0 65px;
}

.home-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
}

.home-hero__video {
}

.home-hero__poster {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.home-hero__poster img {
  display: block;
  width: 100%;
  height: auto;
}

.home-hero__play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s;
}

.home-hero__play:hover {
  background: rgba(0,0,0,0.4);
}

.home-hero__play svg {
  width: 64px;
  height: 64px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.home-hero__text {
  padding-top: 30px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-hero__text p {
  margin: 0;
}

.home-hero__link {
  color: #f5d678;
  text-decoration: underline;
  font-weight: 500;
}

.home-hero__link:hover {
  color: #fff;
}

/* Homepage — taller hero bg */
.home-page .site-header-wrap {
  background-position: 50% 25%;
}

/* Section headings (Key Topics, Begin Reading, What's New) */
.home-section-heading {
  font-family: 'Lora', serif;
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2.1px;
  text-align: center;
  color: #1a202c;
  margin: 0 0 40px;
}

/* Key Topics */
.key-topics {
  padding: 60px 0;
  max-width: 1418px;
  margin: 0 auto;
  padding-left: 38px;
  padding-right: 38px;
  background-color: #f7fafc;
}

.key-topics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.key-topics__card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1 / 1;
}

.key-topics__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  transition: transform 0.4s ease;
}

.key-topics__card:hover img {
  transform: scale(1.05);
}

.key-topics__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
}

.key-topics__card-title {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

/* Begin Reading (Splide carousel) */
.begin-reading {
  padding: 60px 0 80px;
  background-color: #f7fafc;
}

.begin-reading .container {
  max-width: 1418px;
  margin: 0 auto;
  padding: 0 38px;
}

.quote-slider {
  margin: 0 auto;
}

.quote-slider .splide__track {
  background-color: #e1edf2;
  border-radius: 6px;
}

.quote-slider .splide__slide {
  padding: 40px 70px;
}

.quote-slide__text {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-style: normal;
  line-height: 28px;
  color: #2d3748;
  text-align: left;
  margin: 0 0 20px;
}

.quote-slide__link {
  display: inline-block;
  text-align: center;
  width: 100%;
  color: #222;
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
}

.quote-slide__link:hover {
  color: #000;
}

/* Splide overrides */
.quote-slider .splide__arrow {
  background: #fff;
  opacity: 0.8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.quote-slider .splide__arrow:hover {
  opacity: 1;
}

.quote-slider .splide__arrow svg {
  fill: #2d3748;
  width: 20px;
  height: 20px;
}

.quote-slider .splide__arrow--prev {
  left: -20px;
}

.quote-slider .splide__arrow--next {
  right: -20px;
}

.quote-slider .splide__pagination {
  bottom: -32px;
  padding: 0;
}

.quote-slider .splide__pagination__page {
  background: #cbd5e0;
  width: 10px;
  height: 10px;
}

.quote-slider .splide__pagination__page.is-active {
  background: #2d3748;
  transform: scale(1);
}

/* What's New */
.whats-new {
  padding: 60px 0;
  max-width: 1418px;
  margin: 0 auto;
  padding-left: 38px;
  padding-right: 38px;
  background-color: #f7fafc;
}

.whats-new__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.whats-new__column-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #4a5568;
  margin: 0 0 16px;
  letter-spacing: 0.5px;
  text-align: center;
}

.whats-new__card {
  display: block;
  background: #fff;
  border-radius: 6px;
  border-left: 15px solid #ccc;
  padding: 20px 20px 20px 24px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.whats-new__card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.whats-new__card--videos {
  border-left-color: #9e3750;
}

.whats-new__card--teachings {
  border-left-color: #cdac64;
}

.whats-new__card--reading {
  border-left-color: #518a9c;
}

.whats-new__card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #1a202c;
  line-height: 1.3;
  margin: 0;
}

/* Responsive - Homepage */
@media (max-width: 1024px) {
  .key-topics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .key-topics__card-title {
    font-size: 28px;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .home-hero__video {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .key-topics__grid {
    grid-template-columns: 1fr;
  }

  .key-topics__card {
    aspect-ratio: 16 / 9;
  }

  .whats-new__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__text {
    font-size: 17px;
  }

  .home-hero__play svg {
    width: 48px;
    height: 48px;
  }
}

/* =============================================
   BEGIN-READING SIDEBAR
   ============================================= */

/* padding-right: 6% matches legacy #secondary { padding-right: 6% } */
.sidebar--begin-reading {
  padding: 0 6% 40px 0;
}

/* "Explore World Change" — 24px bold, normal case (legacy: font-size:24px; text-transform:none) */
.sidebar-teachings__heading {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 5px;
}

/* Each section block: Begin reading / Teachings / Books */
.sidebar-teachings__section {
  margin-top: 0;
}

/* Section subheadings — uppercase bold (legacy: font-weight:700; text-transform:uppercase; margin:20px 0 5px) */
.sidebar-teachings__subheading {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2d3748;
  margin: 20px 0 5px;
  padding: 0;
}

/* List reset; max-width matches legacy ul { max-width: 340px } */
.sidebar-teachings__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 340px;
}

/* Border-top divider (legacy: border-top:1px solid var(--c-border) where --c-border:#ececec) */
.sidebar-teachings__item {
  border-top: 1px solid #ececec;
}

/* First item has no top border (legacy: ul > li:first-child { border-top:none }) */
.sidebar-teachings__item:first-child {
  border-top: none;
}

/* Links: legacy ul.menu ul a { padding:8px 0; font:400 16px/23px Roboto } */
.sidebar-teachings__item a {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: #333;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  padding-right: 15px;
  transition: color 0.15s ease;
}

/* Hover + current: legacy color:#518A9C (site's cyan-blue) */
.sidebar-teachings__item a:hover,
.sidebar-teachings__item--current a {
  color: #518A9C;
}

.sidebar-teachings__item a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

/* BEGIN-READING MAIN CONTENT */
.begin-reading__text {
  font-size: 18px;
  line-height: 1.75;
  color: #2d3748;
}

.begin-reading__text p {
  margin: 0 0 1.4em;
}

.begin-reading__continue {
  margin-top: 32px;
}

.begin-reading__continue-link {
  color: #357093;
  text-decoration: underline;
  text-underline-offset: 0.1em;
  transition: all 0.1s linear;
}

.begin-reading__continue-link:hover,
.begin-reading__continue-link:focus,
.begin-reading__continue-link:active {
  color: #2f515e;
  text-underline-offset: 0.25em;
}

@media (max-width: 768px) {
  .sidebar--begin-reading {
    padding: 0 0 20px;
    border-bottom: 1px solid #e2e8f0;
  }
}

/* ============================================
   VIDEO PAGES
   ============================================ */

/* Responsive 16:9 iframe wrapper */
.video-embed {
  margin-bottom: 32px;
}

.video-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

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

/* Text content below the video (summary + chapter markers) */
.video__text {
  font-size: 18px;
  line-height: 1.75;
  color: #2d3748;
}

.video__text p {
  margin: 0 0 1.4em;
}

/* Restore list styling stripped by the global ul,ol { list-style:none } reset */
.video__text ul,
.begin-reading__text ul {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0 0 1.4em;
}

.video__text ol,
.begin-reading__text ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin: 0 0 1.4em;
}

.video__text li,
.begin-reading__text li {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 0.4em;
}


/* =============================================
   TOPIC PAGES
   ============================================= */

/* Hero */
.topic-hero {
  text-align: center;
  padding: 20px 0 30px;
}
.topic-hero__title {
  font: 700 66px/1.3 'Roboto', sans-serif;
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 1px 1px 2px rgba(0,0,0,.7);
}
.topic-hero__subtitle {
  font: 500 20px/1.5 'Roboto', sans-serif;
  color: #fff;
  max-width: 680px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,.7);
}

/* Section headings */
.topic-section-heading {
  font-family: 'Lora', serif;
  font-size: 33px;
  font-weight: 400;
  color: #1a202c;
  padding: 2rem 0;
  margin: 0;
  text-align: center;
}

/* Section 1: Video + Quote */
.topic-video-quote {
  padding: 60px 0;
  background-color: #fff;
}
.topic-video-quote__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.topic-video-quote__video {
  padding: 5px 0;
}
.topic-video-quote__text {
  padding: 0 4%;
}
.topic-video-poster {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.topic-video-poster img {
  display: block;
  width: 100%;
  height: auto;
}
.topic-video-poster__play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s;
}
.topic-video-poster__play:hover {
  background: rgba(0,0,0,0.4);
}
.topic-video-poster__play svg {
  width: 64px;
  height: 64px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.topic-pullquote {
  position: relative;
  margin: 0;
  margin-inline-start: 0;
  padding: 40px 0 0;
  border: none;
  background: transparent;
}
.topic-pullquote::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  opacity: .5;
  background: #518A9C;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='17 -18 100 125'%3E%3Cpath d='M93.2-3.9C106-3.9,117,4.9,117,23.9c0,26.7-21.8,42.4-34.2,44l-2.6-7.4c7.2-4.7,13.1-12.8,12.5-17.5 c-8.1-0.6-21.2-4.9-21.2-22.5C71.4,7.2,78.9-3.9,93.2-3.9z M38.9-3.9c12.8,0,23.8,8.8,23.8,27.8c0,26.7-21.8,42.4-34.2,44l-2.6-7.4 C33,55.8,38.9,47.8,38.2,43C30.2,42.4,17,38.1,17,20.5C17,7.2,24.6-3.9,38.9-3.9z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='17 -18 100 125'%3E%3Cpath d='M93.2-3.9C106-3.9,117,4.9,117,23.9c0,26.7-21.8,42.4-34.2,44l-2.6-7.4c7.2-4.7,13.1-12.8,12.5-17.5 c-8.1-0.6-21.2-4.9-21.2-22.5C71.4,7.2,78.9-3.9,93.2-3.9z M38.9-3.9c12.8,0,23.8,8.8,23.8,27.8c0,26.7-21.8,42.4-34.2,44l-2.6-7.4 C33,55.8,38.9,47.8,38.2,43C30.2,42.4,17,38.1,17,20.5C17,7.2,24.6-3.9,38.9-3.9z'/%3E%3C/svg%3E");
  -webkit-mask-size: 90%;
  mask-size: 90%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.topic-pullquote p {
  font: 400 20px/1.5 'Lora', serif;
  color: #2d3748;
  margin: 0 0 18px;
}
.topic-read-more {
  margin-top: 0;
}
.topic-read-more a {
  font: 500 18px/1 'Roboto', sans-serif;
  color: #357093;
  text-decoration: none;
}
.topic-read-more a:hover {
  color: #b27a42;
}

/* Section 2: Tabs — What You Need to Know */
.topic-tabs {
  padding: 0 0 60px 0;
  background-color: #f5eddc;
}
.topic-tabs__wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.topic-tabs__buttons {
  background: #f9f4e8;
  border-right: 1px solid #e8dcc6;
}
.topic-tabs__button {
  display: block;
  width: 100%;
  padding: 18px 24px;
  border: none;
  background: transparent;
  text-align: left;
  font-family: 'Lora', serif;
  font-size: 16px;
  color: #2d3748;
  cursor: pointer;
  border-bottom: 1px solid #e8dcc6;
  transition: background 0.2s, color 0.2s;
  line-height: 1.4;
}
.topic-tabs__button:hover {
  background: #f0e6d0;
}
.topic-tabs__button--active {
  background: #fff;
  font-weight: 600;
  color: #1a202c;
  border-right: 3px solid #b27a42;
}
.topic-tabs__panels {
  padding: 0;
}
.topic-tabs__panel {
  display: none;
}
.topic-tabs__panel--active {
  display: block;
}
.topic-tabs__panel-content {
  padding: 30px 36px;
}
.topic-tabs__panel-content p {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.65;
  color: #2d3748;
  margin: 0 0 1.2em;
}
.topic-tabs__panel-content p:last-child {
  margin-bottom: 0;
}
.topic-tabs__panel-content a {
  color: #357093;
  text-decoration: underline;
}
.topic-tabs__panel-content a:hover {
  color: #b27a42;
}

/* Accordion header — hidden on desktop, shown on mobile */
.topic-tabs__accordion-header {
  display: none;
}

/* Section 3: Begin Reading slider */
.topic-begin-reading {
  padding: 0 0 80px 0;
  background-color: #fff;
}

/* Reuse homepage quote slider styles via shared class */
.topic-quote-slider .splide__track {
  background-color: #e1edf2;
  border-radius: 6px;
}
.topic-quote-slider .splide__slide {
  padding: 40px 70px;
  text-align: center;
}
.topic-quote-slider .quote-slide__text {
  font-family: 'Lora', serif;
  font-size: 20px;
  line-height: 28px;
  color: #2d3748;
  margin: 0 0 20px;
}
.topic-quote-slider .quote-slide__link {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 16px;
  color: #357093;
  text-decoration: underline;
}
.topic-quote-slider .quote-slide__link:hover {
  color: #b27a42;
}
.topic-quote-slider .splide__arrow {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  opacity: 1;
}
.topic-quote-slider .splide__arrow svg {
  fill: #2d3748;
  width: 16px;
  height: 16px;
}
.topic-quote-slider .splide__arrow--prev {
  left: -20px;
}
.topic-quote-slider .splide__arrow--next {
  right: -20px;
}
.topic-quote-slider .splide__pagination {
  bottom: -32px;
  padding: 0;
}
.topic-quote-slider .splide__pagination__page {
  background: #cbd5e0;
  width: 10px;
  height: 10px;
}
.topic-quote-slider .splide__pagination__page.is-active {
  background: #2d3748;
  transform: scale(1);
}

/* Section 4 & 5: Card sliders (Teachings, Videos) */
.topic-teachings,
.topic-videos {
  padding: 0 0 2rem;
  background-color: #f7fafc;
}

.topic-card-slider .splide__track {
  padding: 0 2px 15px;
}
.topic-card-slider .splide__arrow {
  background: #2d3748;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 1;
}
.topic-card-slider .splide__arrow svg {
  fill: #fff;
  width: 16px;
  height: 16px;
}
.topic-card-slider .splide__pagination {
  bottom: -32px;
  padding: 0;
}
.topic-card-slider .splide__pagination__page {
  background: #cbd5e0;
  width: 10px;
  height: 10px;
}
.topic-card-slider .splide__pagination__page.is-active {
  background: #2d3748;
}

.topic-card {
  display: block;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.09);
  transition: box-shadow .3s;
}
.topic-card:hover {
  box-shadow: 0 3px 6px 0 rgba(0,0,0,0.15);
}
.topic-card__image {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #e1edf2;
}
.topic-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topic-card__body {
  padding: 0 0 20px;
}
.topic-card__title {
  font: 500 22px/1.4 'Roboto', sans-serif;
  color: #1a202c;
  margin: 0;
  padding: 20px 20px 0;
}
.topic-card__excerpt {
  font: 400 17px/1.5 'Lora', serif;
  color: #2D3748;
  margin: 0;
  padding: 20px 20px 0;
}

/* Section 6: Books */
.topic-books {
  padding: 0 0 60px 0;
  background-color: #f7fafc;
}
.topic-books__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
  justify-items: center;
}
.topic-books__item {
  display: block;
  text-align: center;
}
.topic-books__item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.09);
}

/* Section 7: Next Steps */
.topic-next-steps {
  padding: 60px 0;
  background-color: #5d300f;
  text-align: center;
}
.topic-next-steps__title {
  font-family: 'Lora', serif;
  font-size: 33px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 30px;
}
.topic-next-steps__btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: #bca67f;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.topic-next-steps__btn:hover {
  background-color: #cdac64;
  color: #fff;
}

/* Topic page responsive */
@media (max-width: 1024px) {
  .topic-quote-slider .splide__slide {
    padding: 30px 50px;
  }
}

@media (max-width: 768px) {
  .topic-hero {
    padding: 16px 0 24px;
  }
  .topic-hero__title {
    font-size: 40px;
  }
  .topic-hero__subtitle {
    font-size: 17px;
  }
  .topic-video-quote__grid {
    grid-template-columns: 1fr;
  }
  .topic-section-heading {
    font-size: 26px;
  }

  /* Tabs → Accordion on mobile */
  .topic-tabs__wrap {
    display: block;
  }
  .topic-tabs__buttons {
    display: none;
  }
  .topic-tabs__panel {
    display: block;
    border-bottom: 1px solid #e8dcc6;
  }
  .topic-tabs__panel-content {
    display: none;
    padding: 20px 24px;
  }
  .topic-tabs__panel--active .topic-tabs__panel-content {
    display: block;
  }
  .topic-tabs__accordion-header {
    display: flex;
    width: 100%;
    padding: 16px 24px;
    border: none;
    background: #f9f4e8;
    text-align: left;
    font-family: 'Lora', serif;
    font-size: 15px;
    color: #2d3748;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    line-height: 1.4;
  }
  .topic-tabs__accordion-header:hover {
    background: #f0e6d0;
  }
  .topic-tabs__accordion-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
  }
  .topic-tabs__accordion-arrow svg {
    width: 100%;
    height: 100%;
    fill: #2d3748;
  }
  .topic-tabs__panel--active .topic-tabs__accordion-arrow {
    transform: rotate(180deg);
  }

  .topic-quote-slider .splide__slide {
    padding: 30px 24px;
  }
  .topic-quote-slider .splide__arrow--prev {
    left: 4px;
  }
  .topic-quote-slider .splide__arrow--next {
    right: 4px;
  }
  .topic-books__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .topic-next-steps__btn {
    font-size: 16px;
    padding: 14px 30px;
  }
}

@media (max-width: 480px) {
  .topic-quote-slider .quote-slide__text {
    font-size: 17px;
    line-height: 26px;
  }
  .topic-books__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   INTRODUCTION PAGE
   ============================================= */

/* Video + Quote */
.intro-video-quote {
  padding: 48px 0;
  background-color: #fff;
}
.intro-video-quote__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}
.intro-video-quote__text {
  padding: 0 4%;
}
.intro-video-poster {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.intro-video-poster img {
  display: block;
  width: 100%;
  height: auto;
}
.intro-video-poster__play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s;
}
.intro-video-poster__play:hover {
  background: rgba(0,0,0,0.4);
}
.intro-video-poster__play svg {
  width: 64px;
  height: 64px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.intro-pullquote {
  position: relative;
  margin: 0;
  padding: 40px 0 0;
  border: none;
  background: transparent;
}
.intro-pullquote::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  opacity: .5;
  background: #518A9C;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='17 -18 100 125'%3E%3Cpath d='M93.2-3.9C106-3.9,117,4.9,117,23.9c0,26.7-21.8,42.4-34.2,44l-2.6-7.4c7.2-4.7,13.1-12.8,12.5-17.5 c-8.1-0.6-21.2-4.9-21.2-22.5C71.4,7.2,78.9-3.9,93.2-3.9z M38.9-3.9c12.8,0,23.8,8.8,23.8,27.8c0,26.7-21.8,42.4-34.2,44l-2.6-7.4 C33,55.8,38.9,47.8,38.2,43C30.2,42.4,17,38.1,17,20.5C17,7.2,24.6-3.9,38.9-3.9z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='17 -18 100 125'%3E%3Cpath d='M93.2-3.9C106-3.9,117,4.9,117,23.9c0,26.7-21.8,42.4-34.2,44l-2.6-7.4c7.2-4.7,13.1-12.8,12.5-17.5 c-8.1-0.6-21.2-4.9-21.2-22.5C71.4,7.2,78.9-3.9,93.2-3.9z M38.9-3.9c12.8,0,23.8,8.8,23.8,27.8c0,26.7-21.8,42.4-34.2,44l-2.6-7.4 C33,55.8,38.9,47.8,38.2,43C30.2,42.4,17,38.1,17,20.5C17,7.2,24.6-3.9,38.9-3.9z'/%3E%3C/svg%3E");
  -webkit-mask-size: 90%;
  mask-size: 90%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.intro-pullquote p {
  font: 400 20px/1.6 'Lora', serif;
  color: #2D3748;
  margin: 0 0 16px;
}
.intro-pullquote cite {
  font: 400 13px/1.6 'Roboto', sans-serif;
  color: #4A5568;
  font-style: normal;
  display: block;
  margin-top: 1em;
}
.intro-pullquote cite a {
  color: #357093;
  text-decoration: underline;
}
.intro-pullquote cite a:hover {
  color: #b27a42;
}

/* Introduction Paragraphs */
.intro-paragraphs {
  padding: 50px 0;
  background-color: #F7FAFC;
}
.intro-paragraphs__content {
  max-width: 820px;
  margin: 0 auto;
}
.intro-paragraphs__content p {
  font: 400 17px/1.55 'Lora', serif;
  font-size: clamp(1.1rem, 0.995rem + 0.326vw, 1.25rem);
  color: #2D3748;
  margin: 0 0 20px;
}
.intro-paragraphs__content p:last-child {
  margin-bottom: 0;
}
.intro-paragraphs__content a {
  color: #357093;
  text-decoration: underline;
}
.intro-paragraphs__content a:hover {
  color: #b27a42;
}

/* Accordion */
.intro-accordion {
  padding: 60px 0;
  background-color: #fff;
}
.intro-accordion__heading {
  font: 700 33px/1.3 'Lora', serif;
  color: #2d3748;
  margin: 0 0 24px;
  text-align: center;
}
.intro-accordion__wrap {
  max-width: 820px;
  margin: 0 auto;
}
.intro-accordion .book-accordion__toggle {
  background-color: #2f515e;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.intro-accordion .book-accordion__toggle:hover {
  background-color: #3a6270;
  color: #fff;
}
.intro-accordion .book-accordion__toggle.open {
  background-color: #3a6270;
  color: #f6dea4;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.intro-accordion .book-accordion__panel {
  margin-bottom: 6px;
  border: none;
  border-radius: 0;
}
.intro-accordion .book-accordion__panel-inner {
  padding: 20px 24px;
}
.intro-accordion .book-accordion__panel p {
  font: 400 18px/1.7 'Roboto', sans-serif;
  color: #2d3748;
  margin: 0 0 14px;
}
.intro-accordion .book-accordion__panel p:last-child {
  margin-bottom: 0;
}
.intro-accordion .book-accordion__panel a {
  color: #357093;
  text-decoration: underline;
}
.intro-accordion .book-accordion__panel a:hover {
  color: #b27a42;
}
.intro-accordion .book-accordion__panel ol {
  list-style: decimal;
  padding-left: 24px;
  margin: 0 0 14px;
}
.intro-accordion .book-accordion__panel ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 14px;
}
.intro-accordion .book-accordion__panel li {
  font: 400 18px/1.7 'Roboto', sans-serif;
  color: #2d3748;
  padding: 4px 0;
}
.intro-accordion .book-accordion__panel li a {
  color: #357093;
  text-decoration: underline;
}
.intro-accordion .book-accordion__panel li a:hover {
  color: #b27a42;
}

/* Responsive - Introduction page */
@media (max-width: 768px) {
  .intro-video-quote__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .intro-video-quote {
    padding: 40px 0;
  }
  .intro-paragraphs {
    padding: 36px 0;
  }
  .intro-accordion {
    padding: 40px 0;
  }
  .intro-accordion .book-accordion__panel-inner {
    padding: 16px 18px;
  }
}

/* =============================================
   NEXT STEPS PAGE
   ============================================= */

/* Hero */
.ns-hero {
  text-align: center;
  padding: 10px 0 50px;
}
.ns-hero__title {
  font: 700 66px/1.3 'Roboto', sans-serif;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,.7);
  margin: 0 0 12px;
}
.ns-hero__subtitle {
  font: 500 20px/1.5 'Roboto', sans-serif;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,.7);
  max-width: 680px;
  margin: 0 auto;
}

/* Hero Video */
.ns-hero-video {
  background-color: #F7FAFC;
  padding: 48px 0;
}
.ns-hero-video__inner {
  max-width: 1036px;
  margin: 0 auto;
  padding: 0 38px;
}

/* Reusable video poster */
.ns-video-poster {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.ns-video-poster img {
  display: block;
  width: 100%;
  height: auto;
}
.ns-video-poster__play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.ns-video-poster__play:hover {
  background: rgba(0,0,0,0.4);
}
.ns-video-poster__play svg {
  width: 64px;
  height: 64px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Education / Show More */
.ns-education {
  background-color: #f9edcc;
  padding: 40px 0 48px;
}
.ns-education .container {
  max-width: 1036px;
}
.ns-education__heading {
  font: 500 33px/1.3 'Lora', serif;
  color: #1a202c;
  margin: 0 0 20px;
  text-align: center;
}
.ns-education__intro {
  font: 400 17px/1.55 'Lora', serif;
  color: #1a202c;
  max-width: 820px;
  margin: 0 auto 0;
  text-align: left;
}
.ns-show-more {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.ns-show-more.open {
  max-height: 3000px;
}
.ns-show-more__content p {
  font: 400 17px/1.55 'Lora', serif;
  color: #1a202c;
  margin: 0 0 14px;
}
.ns-show-more__content ol {
  list-style: decimal;
  padding-left: 24px;
  margin: 14px 0 14px;
}
.ns-show-more__content ol li {
  font: 400 17px/1.55 'Lora', serif;
  color: #1a202c;
  padding: 6px 0;
}
.ns-show-more__toggle {
  display: inline-block;
  background: #bda068;
  color: #fff;
  font: 700 22px/1 'Roboto', sans-serif;
  padding: 18px 26px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  margin-top: 32px;
  transition: background 0.2s;
}
.ns-show-more__toggle:hover {
  background: #357093;
}

/* Key Concepts */
.ns-key-concepts {
  background-color: rgba(225,237,242,0.5);
  padding: 0 0 64px;
}
.ns-key-concepts .container {
  max-width: 1036px;
}
.ns-key-concepts__heading {
  font: 400 33px/1.3 'Lora', serif;
  color: #1a202c;
  text-align: center;
  margin: 0;
  padding: 32px 0 24px;
}
.ns-key-concepts__wrap {
  max-width: 820px;
  margin: 0 auto;
}
.ns-key-concepts .book-accordion__toggle {
  background-color: #357093;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 10px;
  transition: background-color 0.3s, border-radius 0.3s, margin-bottom 0.3s;
}
.ns-key-concepts .book-accordion__toggle:hover {
  background-color: #bda068;
  color: #fff;
}
.ns-key-concepts .book-accordion__toggle.open {
  background-color: #bda068;
  color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.ns-key-concepts .book-accordion__panel {
  display: block;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  border: none;
  margin: 0;
  padding: 0;
}
.ns-key-concepts .book-accordion__panel-inner {
  padding: 20px 24px;
  background: #fff;
  border-radius: 0 0 6px 6px;
}
.ns-key-concepts .book-accordion__panel p {
  font: 400 17px/1.7 'Roboto', sans-serif;
  color: #2D3748;
  margin: 0 0 14px;
}
.ns-key-concepts .book-accordion__panel p:last-child {
  margin-bottom: 0;
}

/* Section headers (Where to Begin, The Preparation) */
.ns-section-header {
  padding: 36px 0 0;
  text-align: center;
}
.ns-section-header .container {
  max-width: 1036px;
}
.ns-section-header--cream {
  background-color: #f9edcc;
}
.ns-section-header--blue {
  background-color: rgba(225,237,242,0.5);
  padding: 0;
}
.ns-section-header__title {
  font: 600 33px/1.3 'Lora', serif;
  color: #1a202c;
  margin: 0;
  padding: 32px 0;
}

/* Steps (1-4) */
.ns-step {
  padding: 64px 0 48px;
}
.ns-step .container {
  max-width: 1036px;
}
.ns-step--cream-solid {
  background-color: #f9edcc;
}
.ns-step--cream-light {
  background-color: rgba(249,237,204,0.5);
}
.ns-step__title {
  font: 500 2rem/1.4 'Roboto', sans-serif;
  color: #1a202c;
  margin: 0 0 8px;
  text-align: center;
}
.ns-step__subtitle {
  font: 400 17px/1.7 'Lora', serif;
  color: #4a5568;
  margin: 0 auto 24px;
  max-width: 600px;
  text-align: center;
}
.ns-step__audio {
  margin-bottom: 20px;
  text-align: center;
}
.ns-step__audio-title {
  font: 500 1.25rem/1.5 'Roboto', sans-serif;
  margin: 0 0 12px;
}
.ns-step__audio-title a {
  color: #357093;
  text-decoration: underline;
}
.ns-step__audio-title a:hover {
  color: #b27a42;
}
.ns-step__audio audio {
  width: 100%;
}
.ns-step__link-entry {
  margin-bottom: 12px;
  text-align: center;
}
.ns-step__link-entry a {
  color: #357093;
  text-decoration: underline;
  font: 500 1.25rem/1.5 'Roboto', sans-serif;
}
.ns-step__link-entry a:hover {
  color: #b27a42;
}
.ns-step__view-more {
  margin-top: 16px;
  text-align: center;
}
.ns-step__view-more a {
  color: #357093;
  text-decoration: underline;
  font: 400 15px/1.5 'Roboto', sans-serif;
}
.ns-step__view-more a:hover {
  color: #b27a42;
}

/* Explore Further accordion within steps */
.ns-explore {
  margin-top: 24px;
}
.ns-explore__toggle {
  background-color: #357093 !important;
  color: #fff !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  border-radius: 6px;
  transition: background-color 0.3s, border-radius 0.3s;
}
.ns-explore__toggle:hover {
  background-color: #bda068 !important;
  color: #fff !important;
}
.ns-explore__toggle.open {
  background-color: #bda068 !important;
  color: #fff !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ns-explore .book-accordion__panel {
  border: none;
  border-radius: 0 0 6px 6px;
  background-color: rgba(225,237,242,0.5);
}
.ns-explore .book-accordion__panel-inner {
  padding: 24px;
}

/* Book cards inside Explore Further */
.ns-explore__books {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.ns-book-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ns-book-card__cover {
  flex: 0 0 140px;
}
.ns-book-card__cover img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.ns-book-card__info {
  flex: 1;
}
.ns-book-card__title {
  font: 600 18px/1.3 'Roboto', sans-serif;
  color: #2d3748;
  margin: 0 0 8px;
}
.ns-book-card__desc {
  font: 400 15px/1.6 'Roboto', sans-serif;
  color: #4a5568;
  margin: 0 0 12px;
}
.ns-book-card__chapters {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 12px;
}
.ns-book-card__chapters li {
  font: 400 15px/1.5 'Roboto', sans-serif;
  color: #2d3748;
  padding: 2px 0;
}
.ns-book-card__chapters li a {
  color: #357093;
  text-decoration: underline;
}
.ns-book-card__chapters li a:hover {
  color: #b27a42;
}
.ns-book-card__btn {
  display: inline-block;
  background: #bda068;
  color: #fff;
  font: 500 14px/1 'Roboto', sans-serif;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.2s;
}
.ns-book-card__btn:hover {
  background: #357093;
  color: #fff;
}

/* Foundation sections */
.ns-foundation {
  background-color: #e1edf2;
  padding: 48px 0 64px;
  text-align: center;
}
.ns-foundation .container {
  max-width: 1036px;
}
.ns-foundation__title {
  font: 500 22px/1.4 'Roboto', sans-serif;
  color: #1a202c;
  margin: 0 0 8px;
}
.ns-foundation__subtitle {
  font: 400 17px/1.7 'Roboto', sans-serif;
  color: #4a5568;
  max-width: 720px;
  margin: 0 auto 24px;
}
.ns-foundation__video {
  max-width: 720px;
  margin: 0 auto 32px;
}
.ns-foundation__book-heading {
  font: 400 22px/1.3 'Lora', serif;
  color: #1a202c;
  margin: 0 0 12px;
}
.ns-foundation__chapters {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: inline-block;
  text-align: left;
}
.ns-foundation__chapters li {
  font: 400 17px/1.5 'Roboto', sans-serif;
  padding: 4px 0;
}
.ns-foundation__chapters li a {
  color: #357093;
  text-decoration: underline;
}
.ns-foundation__chapters li a:hover {
  color: #b27a42;
}
.ns-foundation__chapters li audio {
  width: 100%;
  max-width: 500px;
  display: block;
  margin-top: 4px;
}
.ns-foundation__btn {
  display: inline-block;
  background: #bda068;
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  font: 500 16px/1 'Roboto', sans-serif;
  transition: background 0.2s;
}
.ns-foundation__btn:hover {
  background: #357093;
  color: #fff;
}

/* Steps to Knowledge section */
.ns-stk {
  background-color: #552b32;
  color: #fff;
  padding: 24px 0 80px;
  -webkit-font-smoothing: antialiased;
}
.ns-stk .container {
  max-width: 1036px;
}
.ns-stk__heading {
  font: 400 33px/1.3 'Lora', serif;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 24px 0 32px;
}
.ns-stk__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.ns-stk__cover img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.ns-stk__cover a {
  display: block;
}
.ns-stk__desc {
  font: 400 17px/1.7 'Roboto', sans-serif;
  margin: 0 0 24px;
}
.ns-stk__video {
  margin-bottom: 24px;
}
.ns-stk__btn {
  display: inline-block;
  background: #bda068;
  color: #fff;
  padding: 14px 32px;
  border-radius: 5px;
  font: 600 16px/1 'Roboto', sans-serif;
  transition: background 0.2s;
}
.ns-stk__btn:hover {
  background: #357093;
  color: #fff;
}

/* Further Steps */
.ns-further {
  background-color: #6e839a;
  color: #fff;
  padding: 24px 0 48px;
  -webkit-font-smoothing: antialiased;
}
.ns-further .container {
  max-width: 1036px;
}
.ns-further__top-heading {
  font: 400 33px/1.3 'Lora', serif;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 32px 0;
}
.ns-further__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}
.ns-further__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.ns-further__heading {
  font: 400 33px/1.3 'Lora', serif;
  margin: 0 0 8px;
}
.ns-further__subheading {
  font: 400 1.25rem/1.5 'Roboto', sans-serif;
  margin: 0 0 16px;
  opacity: 0.85;
}
.ns-further__desc {
  font: 400 17px/1.7 'Roboto', sans-serif;
  margin: 0 0 24px;
}
.ns-further__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ns-further__btn {
  display: inline-block;
  background: #bda068;
  color: #fff;
  padding: 12px 28px;
  border-radius: 5px;
  font: 500 16px/1 'Roboto', sans-serif;
  transition: background 0.2s;
}
.ns-further__btn:hover {
  background: #fff;
  color: #6e839a;
}
.ns-further__bottom-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

/* Responsive - Next Steps */
@media (max-width: 1024px) {
  .ns-stk__grid {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }
  .ns-explore__books {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .ns-hero__title {
    font-size: 40px;
  }
  .ns-hero__subtitle {
    font-size: 16px;
  }
  .ns-hero-video {
    padding: 32px 0;
  }
  .ns-hero-video__inner {
    padding: 0 20px;
  }
  .ns-education {
    padding: 8px 0 36px;
  }
  .ns-key-concepts {
    padding: 0 0 40px;
  }
  .ns-step {
    padding: 24px 0 36px;
  }
  .ns-stk__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ns-stk__cover {
    max-width: 200px;
    margin: 0 auto;
  }
  .ns-stk {
    padding: 24px 0 48px;
  }
  .ns-further__grid {
    grid-template-columns: 1fr;
  }
  .ns-further__image {
    max-width: 400px;
    margin: 0 auto;
  }
  .ns-book-card {
    flex-direction: column;
  }
  .ns-book-card__cover {
    flex: 0 0 auto;
    max-width: 140px;
  }
  .ns-explore__books {
    grid-template-columns: 1fr;
  }
  .ns-foundation {
    padding: 36px 0 48px;
  }
}
