@font-face {
  font-family: "InstrumentSerif";
  src: url("./fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/*
  Scoped styles for reusable “content block” components (Hero, etc).
  Keep selectors narrow so we don't fight the existing minified `style.css`.
*/

.cbe-content-hero {
  height: 60vh; 
  min-height: 700px;
  max-height: 1100px;
}

.cbe-content-hero .inner-image {
  height: 60vh;
  min-height: 700px;
  max-height: 1100px;
  width: 100%;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.cbe-content-hero__grid {
  position: relative;
  z-index: 2;

  height: 100%;
  width: 100%;

  padding: 4.2rem 6vw 3rem;

  display: grid;
  grid-template-areas:
    "title title"
    "middle middle"
    "bottom-row bottom-row";
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;

  align-items: start;
}

.cbe-content-hero__title {
  grid-area: title;
}

.cbe-content-hero__title h1 {
  font-family: "InstrumentSerif", serif !important;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(4rem, 6vw, 5rem) !important;
  line-height: 1.05 !important;
  color: #ffffff;
  margin: 0;
}

.cbe-content-hero__middle {
  grid-area: middle;
  align-self: center;
  width: min(56rem, 72vw);
}

.cbe-content-hero__middle p {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1;
}

.cbe-content-hero__middle li {
  font-size: 1.4rem;
  line-height: 1.5;
}

.cbe-content-hero__middle ul {
  margin-left: 0;
  padding-left: 1.5rem;
}

.cbe-content-hero__middle ul li:before {
  color: #E6DE45;
}

.cbe-content-hero__bottom-left {
  width: auto;
  max-width: min(34rem, 62vw);
}

.cbe-content-hero__bottom-left p {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.5;
}

.cbe-content-hero__bottom-right {
  width: auto;
}

.cbe-content-hero__bottom-row {
  grid-area: bottom-row;
  justify-self: start;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  width: auto;
  max-width: 100%;
}

.cbe-content-hero__card {
  padding: 0;
}

.cbe-content-hero__card p {
  color: #ffffff;
}

.cbe-content-hero__card li {
  color: #ffffff;
}

.cbe-content-hero__card ul {
  margin-left: 0;
  padding-left: 1.5rem;
}

.cbe-content-hero__card ul li:before {
  color: #E6DE45;
}

.cbe-content-hero__card h1,
.cbe-content-hero__card h2,
.cbe-content-hero__card h3,
.cbe-content-hero__card h4,
.cbe-content-hero__card h5 {
  color: #000000;
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.35rem 0;
  line-height: 1.35;
}

.cbe-content-hero__cta {
  display: inline-flex !important;
  align-items: center;
  position: relative;
  padding: 0;
  min-width: 16.5rem;
  color: #000000 !important;
  border: none !important;
  height: 3.5rem;
  transition: all 0.3s ease;
}

.cbe-content-hero__cta:hover,
.cbe-content-hero__cta:hover .cbe-content-hero__cta-text,
.cbe-content-hero__cta:focus .cbe-content-hero__cta-text {
  background: #000 !important;
  color: #fff !important;
  transition: all 0.3s ease;
}

.cbe-content-hero__cta-text {
  display: block;
  min-width: 100%;
  padding: 1.25rem 5rem 1.25rem 2rem;
  border-radius: 5rem;
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: all 0.3s ease;
  background: #fff !important;
}

.cbe-content-hero__cta--green .cbe-content-hero__cta-text {
  background: #6ebf67 !important;
}


.cbe-content-hero__cta-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #000000 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cbe-content-hero__cta--green .cbe-content-hero__cta-icon{
  transform: rotate(-90deg);
}

.cbe-content-hero__cta-arrow {
  width: 1.65rem;
  height: 1.65rem;
}

@media screen and (max-width: 640px) {
  .cbe-content-hero__grid {
    padding: 3rem 5vw 2.4rem;
    grid-template-areas:
      "title"
      "middle"
      "bottom-row";
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
  }

  .cbe-content-hero__middle,
  .cbe-content-hero__bottom-left {
    width: 100%;
    max-width: 100%;
  }

  .cbe-content-hero__bottom-row {
    display: grid;
    gap: 0.75rem;
    width: 100%;
  }
}

.cbe-split-promo {
  padding: clamp(3.5rem, 5vw, 5rem) 0;
}

.cbe-split-promo__inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.cbe-split-promo__eyebrow h2 {
  margin-bottom: 2rem;
}

.cbe-split-promo__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.4rem);
  align-items: start;
}

.cbe-split-promo__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  max-height: 34rem;
  object-fit: cover;
}

.cbe-split-promo__content {
  color: #000000;
}

.cbe-split-promo__heading {
  margin: 0 0 1rem;
}

.cbe-split-promo__copy p {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.cbe-split-promo__copy ul {
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.cbe-split-promo__copy li {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 2.2rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.cbe-split-promo__copy li:before {
  content: "";
  position: absolute;
  top: 0.12rem;
  left: 0;
  width: 1.55rem;
  height: 1.55rem;
  margin-right: 0;
  margin-left: 0;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22100%22%20height%3D%22100%22%20viewBox%3D%220%200%20100%20100%22%20fill%3D%22none%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2240%22%20stroke%3D%22%235cb04d%22%20stroke-width%3D%228%22/%3E%3Cpath%20d%3D%22M30%2052L43%2065L70%2038%22%20stroke%3D%22%235cb04d%22%20stroke-width%3D%228%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.cbe-split-promo__copy li:after {
  content: none;
}

.cbe-split-promo__cta {
  margin-top: 1rem;
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0 0 1.5rem;
  border-radius: 999px;
  min-width: 16.5rem;
  background: #6ebf67 !important;
  color: #000000 !important;
  border: none !important;
  height: 3.5rem;
  text-decoration: none;
}

.cbe-split-promo__cta:hover,
.cbe-split-promo__cta:focus {
  background: #5cad56 !important;
  color: #000000 !important;
  border-color: #5cad56 !important;
}

.cbe-split-promo__cta-text {
  font-size: 1.42rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.cbe-split-promo__cta-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #000000 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cbe-split-promo__cta-arrow {
  width: 1.65rem;
  height: 1.65rem;
  transform: rotate(-90deg);
}

@media screen and (max-width: 900px) {
  .cbe-split-promo__grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .cbe-split-promo__media img {
    max-height: 24rem;
    min-height: 18rem;
  }
}

.cbe-text-marquee {
  margin: 2rem 0;
  padding: 1rem 0;
  overflow: hidden;
}

.cbe-text-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.cbe-text-marquee__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  margin-right: clamp(1.8rem, 2.4vw, 2.8rem);
}

.cbe-text-marquee__text {
  font-family: "InstrumentSerif", serif;
  font-weight: 400;
  font-size: clamp(5rem, 7vw, 8.5rem) !important;
  letter-spacing: 0 !important;
  line-height: 1;
  color: #5bb94f;
  letter-spacing: 0.01em;
}

.cbe-text-marquee__separator {
  margin-left: clamp(1rem, 1.8vw, 1.6rem);
  font-family: "Circular Std Book", "Circular Std", sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 1;
  color: #000000;
  display: inline-block;
  transform: translateY(0.3em);
}

@media screen and (max-width: 640px) {
  .cbe-text-marquee {
    padding: 1.1rem 0;
  }
}

.cbe-card-section {
  padding: 1rem 0;
  margin: 2rem 0;
}

.cbe-card-section__inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.cbe-card-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.cbe-card-section__card {
  border-radius: 1.2rem;
  padding: clamp(1.75rem, 2.2vw, 2.5rem);
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cbe-card-section__title {
  margin: 0;
  text-align: center;
  line-height: 1.15;
}

.cbe-card-section__card--title .cbe-card-section__title {
  text-align: left;
}

.cbe-card-section__copy {
  margin-top: 1.2rem;
}

.cbe-card-section__copy p {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
}

.cbe-card-section__card--title .cbe-card-section__copy p {
  text-align: left;
}

.cbe-card-section__copy p + p {
  margin-top: 0.85rem;
}

.cbe-card-section__card--title {
  justify-content: flex-start;
  padding: 0;
}



.cbe-card-section__card--content .cbe-card-section__title {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.cbe-card-section__card--cta {
  justify-content: center;
  align-items: center;
}

.cbe-card-section__card--cta .cbe-card-section__title {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.cbe-card-section__card--cta .cbe-content-hero__cta-text {
  background: #ffffff !important;
}

.cbe-card-section__card--cta .cbe-content-hero__cta-icon {
  background: #e6de45 !important;
  transform: rotate(-90deg);
}

@media screen and (max-width: 980px) {
  .cbe-card-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 680px) {
  .cbe-card-section__card {
    min-height: auto;
  }

  .cbe-card-section__grid {
    grid-template-columns: 1fr;
  }
}

.cbe-cta-banner {
  padding: clamp(1.5rem, 2.5vw, 2.6rem) 0 clamp(2.2rem, 3.5vw, 3.4rem);
}

.cbe-cta-banner__inner {
  margin: 0 auto;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: clamp(14.5rem, 20vw, 18rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cbe-cta-banner__content {
  padding: clamp(2rem, 4vw, 3.5rem) 1.5rem;
  width: min(38rem, 100%);
}

.cbe-cta-banner__heading {
  margin: 0 0 .5rem;
  color: #000000;
  letter-spacing: 0;
}

.cbe-cta-banner__subheading {
  color: #000000;
  font-size: 1.35rem;
}

.cbe-cta-banner .cbe-content-hero__cta {
  margin-top: 1.35rem;
}

.cbe-cta-banner .cbe-content-hero__cta-icon {
  background: #e6de45 !important;
  transform: rotate(-90deg);
}

.cbe-faq-section {
  padding: clamp(1.5rem, 3.2vw, 2.8rem) 0 clamp(2rem, 4vw, 3.2rem);
}

.cbe-faq-section__inner {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

/* Scroll-in uses .fade-up on title + FAQ columns — avoid transition:all
   (from global .fade-up) animating height when a <details> opens inside it */
.cbe-faq-section__inner .fade-up {
  transition-property: opacity, transform;
  transition-duration: 1.8s;
  transition-timing-function: cubic-bezier(0.27, 0.88, 0.49, 1.33);
}

.cbe-faq-section__item,
.cbe-faq-section__cell {
  transition: none;
}

.cbe-faq-section__title {
  margin: 0 0 clamp(1.2rem, 2.4vw, 1.8rem);
  color: #000000;
}

/* Two independent columns (odd | even) so expanding one FAQ never reserves
   row height for the other column — unlike grid/flex-wrap rows */
.cbe-faq-section__columns {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.6rem;
}

.cbe-faq-section__column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cbe-faq-section__cell {
  width: 100%;
  min-width: 0;
}

.cbe-faq-section__item {
  border-radius: 1.1rem;
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: block;
  width: 100%;
}

.cbe-faq-section__question {
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: clamp(1.1rem, 2.4vw, 1.4rem) 3.4rem clamp(1.1rem, 2.4vw, 1.4rem) 1.6rem;
  color: #4e66b3;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.cbe-faq-section__question::-webkit-details-marker {
  display: none;
}

.cbe-faq-section__question::after {
  content: "";
  position: absolute;
  right: 1.45rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #4e66b3;
  border-bottom: 2px solid #4e66b3;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.2s ease;
}

.cbe-faq-section__item[open] .cbe-faq-section__question::after {
  transform: translateY(-38%) rotate(-135deg);
}

.cbe-faq-section__answer {
  padding: 0 1.6rem 1.4rem;
}

.cbe-faq-section__answer > *:first-child {
  margin-top: 0;
}

.cbe-faq-section__answer > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  .cbe-faq-section__columns {
    flex-direction: column;
    gap: 0.9rem;
  }

  /* Flatten columns so flex `order` can interleave 1,2,3… reading order */
  .cbe-faq-section__column {
    display: contents;
  }

  .cbe-faq-section__cell {
    order: var(--faq-order);
  }
}