/* components.css: the scoped styles of the shared includes (article CTA, testimonials, About reviews),
   moved out of the includes on 2026-09-04 (typography step 4). Loaded on every page from header.html. */
/* from article_cta.html */
/* Every rule is scoped under .article-cta: the index page sets ".blog-index a { color: inherit }",
   which outranks a bare .article-cta-button and turned the button text dark. */
.article-cta {
  max-width: 1120px;
  margin: 80px auto 0;
  padding: 45px 30px;
  background: #f9f7f6;
  text-align: center;
}
.article-cta .article-kicker {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: #7A6363;
  margin: 0;
}
.article-cta .article-cta-title {
  font-family: 'GildaDisplay-Regular', serif;
  font-weight: 400;
  font-size: var(--fs-h3);
  color: #000;
  letter-spacing: var(--ls-text);
  line-height: var(--lh-heading);
  text-transform: none;
  margin: 12px 0 15px;
}
.article-cta .article-cta-text {
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: var(--fs-md);
  letter-spacing: 0; /* header.css tracks every <p> by .84px; the index resets it, the article did not */
  color: #555;
  line-height: var(--lh-body);
  max-width: 560px;
  margin: 0 auto 28px;
}
.article-cta .article-cta-button {
  font-family: var(--font-ui);
  font-size: var(--fs-xs);
  color: #fff;
  background: #947A7A;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  padding: 14px 24px;
  border: 1px solid #947A7A;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}
.article-cta .article-cta-button:hover {
  background: #fff;
  color: #7A6363;
}
@media (max-width: 780px) {
  .article-cta {
    margin: 50px 22px 0;
    padding: 35px 20px;
  }
  .article-cta-title {
    font-size: var(--fs-h4);
  }
}

/* from testimonials.html */
.testimonials { max-width: 1120px; margin: 0 auto; }
.testimonials .testimonials-rating { padding-bottom: 36px; } /* the line carries an inline top margin; the wrapper spaces it from the quotes */
.testimonials .testimonials-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; text-align: left; }
.testimonials .testimonial { margin: 0; padding: 0 0 0 22px; border-left: 1px solid #DDD3D1; }
.testimonials .testimonial-quote { font-family: 'Montserrat-Regular', sans-serif; font-size: var(--fs-md); letter-spacing: 0; line-height: var(--lh-body); color: #3d3535; margin: 0 0 14px; text-align: left; }
.testimonials .testimonial-author { font-family: 'Montserrat-Regular', sans-serif; font-size: var(--fs-sm); letter-spacing: var(--ls-caps); text-transform: uppercase; color: #7A6363; margin: 0; text-align: left; } /* a font with accented glyphs: the old monospace rendered Léa as L A */
.testimonials .testimonial-author span { text-transform: none; letter-spacing: var(--ls-text); color: #947A7A; }
@media screen and (max-width: 1050px) {
  .testimonials .testimonials-list { grid-template-columns: 1fr; gap: 26px; }
}

/* from aboutus-reviews.html */
      /* Signatures in Montserrat: ElroNet has no accented glyphs (Léa rendered as L A). */
      .aboutReviewsSection .client-name { font-family: var(--font-body); font-size: var(--fs-sm); letter-spacing: var(--ls-caps); }
    

/* --- Itinerary durations (7 / 10 / 14 days), shared by the three itinerary pages and Golden Route.
   One copy since 2026-09-04: it used to live in each of the four sheets. --- */
.iti-durations {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.iti-duration {
  flex: 1;
  min-width: 150px;
  display: block;
  padding: 14px 16px;
  text-align: center;
  border: 1px solid #e2d9d9;
  text-decoration: none;
  color: inherit;
}
a.iti-duration:hover {
  border-color: #947A7A;
}
.iti-duration-active {
  background: #f9f7f5;
  border-color: #947A7A;
}
.iti-duration-days {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--fs-md);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: #333;
  margin-bottom: 4px;
}
.iti-duration-label {
  display: block;
  font-family: 'Montserrat-Regular', sans-serif;
  font-size: var(--fs-sm);
  color: #7A6363;
}

/* --- Trustpilot line (main/includes/trustpilot-line.html). Its inline styles moved here on 2026-09-04
   so hero.css can restyle it by plain specificity. --- */
.trustpilot-line {
    text-align: center;
    font-family: 'Montserrat-Regular', sans-serif;
    font-size: var(--fs-sm);
    letter-spacing: var(--ls-text);
    margin: 25px 0 0;
    color: #7A6363;
}
.trustpilot-line--left { text-align: left; }
.trustpilot-line a { color: #7A6363; text-decoration: none; }
.trustpilot-line span[aria-hidden] { color: #947A7A; }
.trustpilot-line strong { font-family: var(--font-ui); letter-spacing: var(--ls-wide); }

