.elementor-443 .elementor-element.elementor-element-48b55af{--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;--margin-top:-58px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-443 .elementor-element.elementor-element-f02173b{--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;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-443 .elementor-element.elementor-element-8072129{z-index:9;}.elementor-443 .elementor-element.elementor-element-5bec75d{--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;}.elementor-443 .elementor-element.elementor-element-34662dc{margin:-273px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-443 .elementor-element.elementor-element-de9bd0a{--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;}/* Start custom CSS for html, class: .elementor-element-b41386e */.hero-section {
  min-height: 60vh;
  width: 100%;
  background: linear-gradient(135deg, #193b3b, #1f4a45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
}

.hero-inner {
  max-width: 900px;
}

.hero-tagline {
  color: #ff7a18;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.1;
  margin: 0;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: #ff7a18;
  margin: 30px auto 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-5bec75d *//* ===============================
   LATEST REVIEWS HEADING
================================ */
.auteur-reviews-heading {
  background: #ffffff;
  padding: 80px 40px 80px;
  text-align: center;
  position: relative;
}

.reviews-heading-inner {
  position: relative;
  max-width: 800px;
  margin: auto;
}

/* Small tag */
.reviews-tag {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #ff6b3d;
  margin-bottom: 16px;
}

/* Main heading */
.reviews-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 500;
  color: #1f2937;
  position: relative;
  z-index: 2;
}

/* Feather background */
.reviews-feather {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 200px;
  background-image: url("FEATHER-IMAGE.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 1;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .reviews-title {
    font-size: 32px;
  }

  .reviews-feather {
    width: 100px;
    height: 150px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5d297ea */.amazon-book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop = 3 books */
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.amazon-book {
  text-decoration: none !important;
  color: #111;
  text-align: center;
}

.book-cover {
  position: relative;
  max-width: 220px;
  margin: auto;
}

.book-cover img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  transition: all 0.45s ease;
}

.book-front {
  position: relative;
  z-index: 2;
}

.book-back {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
}

.amazon-book:hover .book-front {
  opacity: 0;
  transform: scale(0.95);
}

.amazon-book:hover .book-back {
  opacity: 1;
  transform: scale(1);
}

.amazon-book h3 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
  line-height: 1.4;
}
.abc1{
    font-size:12px;
    
}

/* Tablet */
@media (max-width: 768px) {
  .amazon-book-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .amazon-book-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */