.elementor-19 .elementor-element.elementor-element-d1be1d9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-3f8a6d2 */.chapters-page-section {
  background: #FAF6EF;
  padding: 110px 20px;
  font-family: 'Inter', sans-serif;
}

.chapters-hero {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.chapters-label {
  display: inline-block;
  color: #D4A017;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 16px;
}

.chapters-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1B4D2E;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.1;
  margin: 0 0 22px;
  font-weight: 600;
}

.chapters-hero p {
  color: #555;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 760px;
}

.chapters-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.chapter-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 34px 24px;
  text-align: center;
  border: 1px solid rgba(212, 160, 23, 0.25);
  box-shadow: 0 18px 45px rgba(27, 77, 46, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.chapter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  width: 100%;
  background: linear-gradient(90deg, #1B4D2E, #D4A017, #C0392B);
}

.chapter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(27, 77, 46, 0.14);
}

.chapter-logo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #1B4D2E;
  color: #D4A017;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 26px;
  font-weight: 900;
  border: 4px solid #FAF6EF;
  box-shadow: 0 12px 30px rgba(27, 77, 46, 0.16);
}

.chapter-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1B4D2E;
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 700;
}

.chapter-card p {
  color: #666;
  font-size: 15px;
  margin: 0 0 24px;
}

.chapter-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #27AE60;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s ease;
}

.chapter-card a:hover {
  background: #D4A017;
  color: #1B4D2E;
}

@media (max-width: 1100px) {
  .chapters-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .chapters-page-section {
    padding: 80px 18px;
  }

  .chapters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .chapters-grid {
    grid-template-columns: 1fr;
  }

  .chapter-card {
    padding: 30px 22px;
  }
}/* End custom CSS */