/* Adapt SEO additions: styling for injected content sections + FAQ accordion.
   Scoped so it only affects the new SEO sections (Elementor sections with no
   data-id) and the FAQ accordion, which did not exist on the site before. */

/* --- Injected full-width content sections: restore template-like spacing --- */
.elementor-section.elementor-top-section:not([data-id]) > .elementor-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 20px;
}
.elementor-section.elementor-top-section:not([data-id]) .elementor-widget-heading {
  text-align: center;
  margin-bottom: 6px;
}
.elementor-section.elementor-top-section:not([data-id]) .elementor-widget-divider {
  margin-bottom: 26px;
}
.elementor-section.elementor-top-section:not([data-id]) .elementor-widget-text-editor {
  max-width: 1000px;
  margin: 0 auto 18px;
  text-align: left;
  line-height: 1.7;
}
.elementor-section.elementor-top-section:not([data-id]) .elementor-widget-text-editor:last-child {
  margin-bottom: 0;
}

/* --- FAQ accordion (brand-matched) --- */
.elementor-accordion {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.elementor-accordion .elementor-accordion-item {
  border: 1px solid #e3e6ea;
  border-radius: 6px;
  margin-bottom: 14px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.elementor-accordion .elementor-tab-title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  margin: 0;
  background: #f7f8f9;
  color: #050C4D;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.elementor-accordion .elementor-tab-title:hover {
  background: #eef1f6;
}
.elementor-accordion .elementor-tab-title.elementor-active {
  background: #172DF0;
  color: #ffffff;
}
.elementor-accordion .elementor-accordion-title {
  flex: 1;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.elementor-accordion .elementor-accordion-icon {
  flex: 0 0 auto;
  font-size: 14px;
  color: inherit;
  display: inline-flex;
  width: 18px;
  justify-content: center;
}
.elementor-accordion .elementor-tab-content {
  padding: 20px 24px;
  background: #ffffff;
  border-top: 1px solid #eef0f2;
  font-size: 17px;
  line-height: 1.75;
  color: #333333;
}
.elementor-accordion .elementor-tab-content p {
  margin: 0;
}

/* --- Visible breadcrumb trail (mirrors the BreadcrumbList JSON-LD) ---
   Sits directly below the hero. Selectors are self-contained and reset the
   list/link defaults explicitly, so nothing in the Elementor or theme CSS
   needs to be fought on specificity. */
.adapt-breadcrumb {
  background: #f7f8f9;
  border-bottom: 1px solid #e3e6ea;
}
.adapt-breadcrumb__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
}
.adapt-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.adapt-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #575760;
}
.adapt-breadcrumb li + li::before {
  content: "/";
  color: #b2b2be;
}
.adapt-breadcrumb a {
  color: #172DF0;
  text-decoration: none;
}
.adapt-breadcrumb a:hover,
.adapt-breadcrumb a:focus {
  text-decoration: underline;
}
.adapt-breadcrumb [aria-current="page"] {
  color: #050C4D;
  font-weight: 600;
}

@media (max-width: 768px) {
  .elementor-section.elementor-top-section:not([data-id]) > .elementor-container {
    padding: 34px 16px;
  }
  .elementor-accordion .elementor-tab-title { padding: 16px 18px; font-size: 17px; }
  .elementor-accordion .elementor-tab-content { padding: 16px 18px; }
  .adapt-breadcrumb__inner { padding: 10px 16px; }
  .adapt-breadcrumb ol { font-size: 13px; }
}
