@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Semi+Condensed:ital,wght@0,1..1000;1,1..1000&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&family=Sofia+Sans+Semi+Condensed:ital,wght@0,1..1000;1,1..1000&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap");
.bc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 36px;
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 24px;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 50px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
}
.bc-button__text {
  line-height: 24px;
}
.bc-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-button__icon svg {
  width: 13px;
  height: 10px;
  transition: color 0.3s ease;
}
.bc-button--light.bc-button--primary {
  background-color: #00609C;
  border-color: #00609C;
  color: #F5F5F5;
}
.bc-button--light.bc-button--primary .bc-button__icon svg {
  color: #ffffff;
}
.bc-button--light.bc-button--primary:hover:not(:disabled) {
  background-color: #11547E;
  border-color: #11547E;
  text-decoration: underline;
}
.bc-button--light.bc-button--primary:active:not(:disabled) {
  background-color: #12355B;
  border-color: #12355B;
  text-decoration: none;
}
.bc-button--light.bc-button--primary:focus-visible:not(:disabled) {
  background-color: #12355B;
  border-color: #12355B;
  outline: 2px solid #12355B;
  outline-offset: 2px;
}
.bc-button--light.bc-button--primary:disabled {
  background-color: #00609C;
  border-color: #00609C;
  color: #A2A4A3;
  cursor: not-allowed;
}
.bc-button--light.bc-button--primary:disabled .bc-button__icon svg {
  color: #A2A4A3;
}
.bc-button--dark.bc-button--primary {
  background-color: #8EE3EF;
  border-color: #8EE3EF;
  color: #12355B;
}
.bc-button--dark.bc-button--primary .bc-button__icon svg {
  color: #12355B;
}
.bc-button--dark.bc-button--primary:hover:not(:disabled) {
  background-color: #32BFD3;
  border-color: #32BFD3;
  text-decoration: underline;
}
.bc-button--dark.bc-button--primary:active:not(:disabled) {
  background-color: #2C9EAF;
  border-color: #2C9EAF;
  color: #F5F5F5;
  text-decoration: none;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.bc-button--dark.bc-button--primary:active:not(:disabled) .bc-button__icon svg {
  color: #ffffff;
}
.bc-button--dark.bc-button--primary:focus-visible:not(:disabled) {
  background-color: #8EE3EF;
  border-color: #8EE3EF;
  color: #12355B;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.bc-button--dark.bc-button--primary:focus-visible:not(:disabled) .bc-button__icon svg {
  color: #12355B;
}
.bc-button--dark.bc-button--primary:disabled {
  background-color: #00609C;
  border-color: #00609C;
  color: #A2A4A3;
  cursor: not-allowed;
}
.bc-button--dark.bc-button--primary:disabled .bc-button__icon svg {
  color: #A2A4A3;
}
.bc-button--light.bc-button--secondary {
  background-color: transparent;
  border: 3px solid #00609C;
  color: #00609C;
}
.bc-button--light.bc-button--secondary .bc-button__icon svg {
  color: #00609C;
}
.bc-button--light.bc-button--secondary:hover:not(:disabled) {
  color: #12355B;
  border-color: #12355B;
  text-decoration: underline;
}
.bc-button--light.bc-button--secondary:hover:not(:disabled) .bc-button__icon svg {
  color: #12355B;
}
.bc-button--light.bc-button--secondary:active:not(:disabled) {
  background-color: #12355B;
  border-color: #12355B;
  color: #F5F5F5;
}
.bc-button--light.bc-button--secondary:active:not(:disabled) .bc-button__icon svg {
  color: #ffffff;
}
.bc-button--light.bc-button--secondary:focus-visible:not(:disabled) {
  background-color: #12355B;
  border-color: #12355B;
  color: #F5F5F5;
  outline: 2px solid #12355B;
  outline-offset: 2px;
}
.bc-button--light.bc-button--secondary:focus-visible:not(:disabled) .bc-button__icon svg {
  color: #ffffff;
}
.bc-button--light.bc-button--secondary:disabled {
  background-color: transparent;
  border-color: #A2A4A3;
  color: #A2A4A3;
  cursor: not-allowed;
}
.bc-button--light.bc-button--secondary:disabled .bc-button__icon svg {
  color: #A2A4A3;
}
.bc-button--dark.bc-button--secondary {
  background-color: transparent;
  border: 3px solid #8EE3EF;
  color: #8EE3EF;
}
.bc-button--dark.bc-button--secondary .bc-button__icon svg {
  color: #8EE3EF;
}
.bc-button--dark.bc-button--secondary:hover:not(:disabled) {
  background-color: #32BFD3;
  border-color: #32BFD3;
  color: #12355B;
  text-decoration: underline;
}
.bc-button--dark.bc-button--secondary:hover:not(:disabled) .bc-button__icon svg {
  color: #12355B;
}
.bc-button--dark.bc-button--secondary:active:not(:disabled) {
  background-color: #2C9EAF;
  border-color: #2C9EAF;
  color: #F5F5F5;
  text-decoration: none;
}
.bc-button--dark.bc-button--secondary:active:not(:disabled) .bc-button__icon svg {
  color: #ffffff;
}
.bc-button--dark.bc-button--secondary:focus-visible:not(:disabled) {
  background-color: #8EE3EF;
  border-color: #8EE3EF;
  color: #12355B;
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.bc-button--dark.bc-button--secondary:focus-visible:not(:disabled) .bc-button__icon svg {
  color: #12355B;
}
.bc-button--dark.bc-button--secondary:disabled {
  background-color: transparent;
  border-color: #A2A4A3;
  color: #A2A4A3;
  cursor: not-allowed;
}
.bc-button--dark.bc-button--secondary:disabled .bc-button__icon svg {
  color: #A2A4A3;
}

.typography--h1 {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 68px;
  letter-spacing: 0;
  color: #12355B;
}
.typography--h1.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--h1 {
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 1px;
  }
}
.typography--h1.typography--eyebrow {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #00609C;
  margin: 0;
}
.typography--h1.typography--eyebrow.typography--dark {
  color: #F5F5F5;
}
@media (min-width: 768px) {
  .typography--h1.typography--eyebrow {
    font-size: 18px;
  }
}

.typography--h2 {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 54px;
  line-height: 58px;
  letter-spacing: 0;
  color: #12355B;
}
.typography--h2.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--h2 {
    font-size: 54px;
    line-height: 60px;
    letter-spacing: 1px;
  }
}

.typography--h3 {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: 0;
  color: #12355B;
}
.typography--h3.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--h3 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 1px;
  }
}

.typography--h4 {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #12355B;
}
.typography--h4.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--h4 {
    font-size: 22px;
  }
}

.typography--h5 {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0;
}
.typography--h5.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
  }
}

.typography--p.typography--eyebrow {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #00609C;
}
.typography--p.typography--eyebrow.typography--dark {
  color: #F5F5F5;
}
@media (min-width: 768px) {
  .typography--p.typography--eyebrow {
    font-size: 18px;
  }
}
.typography--p.typography--primary {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  color: #50585E;
}
.typography--p.typography--primary.typography--dark {
  color: #ffffff;
}
@media (min-width: 768px) {
  .typography--p.typography--primary {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
  }
}
.typography--p.typography--secondary {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #50585E;
}
.typography--p.typography--secondary.typography--dark {
  color: #F5F5F5;
}
@media (min-width: 768px) {
  .typography--p.typography--secondary {
    font-size: 15px;
    line-height: 24px;
  }
}

:root :where(.is-layout-flow) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

a,
button {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
a:focus, a:focus-visible,
button:focus,
button:focus-visible {
  outline: none;
}

section.bc-section,
section.card-grid-component,
section.cta-call-out-component,
section.hero-component,
section.fifty-fifty-component,
section.accordion-component,
section.testimonial-carousel,
section.card-carousel,
section.logo-grid,
section.value-props,
section.vertical-tabbed-content,
section.horizontal-tabs-component,
section.cross-link-cards,
section.cta-callout-links,
section.form-module,
section.full-width-text {
  box-sizing: border-box;
  padding: 64px 32px;
}
@media (min-width: 768px) {
  section.bc-section,
  section.card-grid-component,
  section.cta-call-out-component,
  section.hero-component,
  section.fifty-fifty-component,
  section.accordion-component,
  section.testimonial-carousel,
  section.card-carousel,
  section.logo-grid,
  section.value-props,
  section.vertical-tabbed-content,
  section.horizontal-tabs-component,
  section.cross-link-cards,
  section.cta-callout-links,
  section.form-module,
  section.full-width-text {
    padding: 96px 32px;
  }
}

.full-width-text {
  width: 100%;
  overflow-x: hidden;
}
.full-width-text__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  display: flex;
}
@media (min-width: 480px) {
  .full-width-text__container {
    padding: 0 2rem;
  }
}
.full-width-text__eyebrow, .full-width-text__heading, .full-width-text__body {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.full-width-text__eyebrow {
  font-family: "Sofia Sans Condensed", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .full-width-text__eyebrow {
    font-size: 18px;
    line-height: 24px;
  }
}
.full-width-text h2 {
  padding-bottom: 8px;
}
.full-width-text h3 {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: 0;
  font-weight: 900;
}
@media (min-width: 768px) {
  .full-width-text h3 {
    font-size: 48px;
    line-height: 54px;
    letter-spacing: 1px;
  }
}
.full-width-text__body {
  font-family: "Sofia Sans", sans-serif;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.full-width-text__body p:empty {
  display: none;
}
.full-width-text__body p {
  margin: 0;
}
.full-width-text__body a {
  text-decoration: underline;
}
.full-width-text__body a:hover {
  text-decoration: none;
}
.full-width-text__body ul,
.full-width-text__body ol {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  margin: 0;
  padding-left: 24px;
}
@media (min-width: 768px) {
  .full-width-text__body ul,
  .full-width-text__body ol {
    font-size: 15px;
    line-height: 24px;
  }
}
.full-width-text__body li {
  margin-bottom: 8px;
}
.full-width-text__body li:last-child {
  margin-bottom: 0;
}
.full-width-text__body h1 {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 68px;
  letter-spacing: 0;
  color: #12355B;
  margin: 0;
}
@media (min-width: 768px) {
  .full-width-text__body h1 {
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 1px;
  }
}
.full-width-text__body h2 {
  font-family: "Sofia Sans Semi Condensed", sans-serif;
  font-weight: 900;
  font-size: 54px;
  line-height: 58px;
  letter-spacing: 0;
  color: #12355B;
  margin: 0;
}
@media (min-width: 768px) {
  .full-width-text__body h2 {
    font-size: 54px;
    line-height: 60px;
    letter-spacing: 1px;
  }
}
.full-width-text__body h3 {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 48px;
  letter-spacing: 0;
  color: #12355B;
  margin: 0;
}
@media (min-width: 768px) {
  .full-width-text__body h3 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 1px;
  }
}
.full-width-text__body h4 {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #12355B;
  margin: 0;
}
@media (min-width: 768px) {
  .full-width-text__body h4 {
    font-size: 22px;
  }
}
.full-width-text__body h5 {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0;
  color: #12355B;
  margin: 0;
}
@media (min-width: 768px) {
  .full-width-text__body h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
  }
}
.full-width-text__body h6 {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0;
  color: #12355B;
  margin: 0;
}
.full-width-text__buttons {
  display: inline-flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .full-width-text__buttons {
    display: flex;
    flex-direction: column;
  }
  .full-width-text__buttons .bc-button {
    width: 100%;
    box-sizing: border-box;
  }
}
.full-width-text--dark .full-width-text__eyebrow {
  color: #F5F5F5;
}
.full-width-text--dark .full-width-text__heading {
  color: #ffffff;
}
.full-width-text--dark .full-width-text__body {
  color: #F5F5F5;
}
.full-width-text--dark .full-width-text__body a {
  color: #8EE3EF;
}
.full-width-text--dark .full-width-text__body h1, .full-width-text--dark .full-width-text__body h2, .full-width-text--dark .full-width-text__body h3, .full-width-text--dark .full-width-text__body h4, .full-width-text--dark .full-width-text__body h5, .full-width-text--dark .full-width-text__body h6 {
  color: #ffffff;
}
.full-width-text--light .full-width-text__eyebrow {
  color: #00609C;
}
.full-width-text--light .full-width-text__heading {
  color: #12355B;
}
.full-width-text--light .full-width-text__body {
  color: #50585E;
}
.full-width-text--light .full-width-text__body a {
  color: #00609C;
}
.full-width-text--center .full-width-text__container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.full-width-text--center .full-width-text__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.full-width-text--center .full-width-text__buttons {
  justify-content: center;
  margin-top: 20px;
  padding-top: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .full-width-text--center .full-width-text__buttons {
    width: fit-content;
  }
}
@media (min-width: 768px) {
  .full-width-text--center .full-width-text__buttons {
    margin-top: 32px;
  }
}
.full-width-text--left .full-width-text__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.full-width-text--left .full-width-text__heading {
  max-width: 800px;
}
@media (max-width: 768px) {
  .full-width-text--left .full-width-text__buttons {
    width: 100%;
  }
  .full-width-text--left .full-width-text__buttons .bc-button {
    width: 100%;
    display: flex;
    box-sizing: border-box;
  }
}
.full-width-text--buttons-bottom .full-width-text__container {
  flex-direction: column;
}
.full-width-text--buttons-bottom .full-width-text__buttons {
  align-self: flex-start;
  margin-top: 20px;
  padding-top: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .full-width-text--buttons-bottom .full-width-text__buttons {
    margin-top: 32px;
    width: fit-content;
  }
}
.full-width-text--buttons-bottom.full-width-text--center .full-width-text__buttons {
  align-self: center;
}
.full-width-text--buttons-side .full-width-text__container {
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 768px) {
  .full-width-text--buttons-side .full-width-text__container {
    flex-direction: column;
    gap: 32px;
  }
}
.full-width-text--buttons-side .full-width-text__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  max-width: 768px;
  margin-bottom: 0;
}
.full-width-text--buttons-side .full-width-text__buttons {
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .full-width-text--buttons-side .full-width-text__buttons {
    width: fit-content;
  }
}
@media (max-width: 768px) {
  .full-width-text--buttons-side .full-width-text__buttons {
    width: 100%;
    max-width: 100%;
  }
  .full-width-text--buttons-side .full-width-text__buttons > div {
    width: 100%;
  }
  .full-width-text--buttons-side .full-width-text__buttons .bc-button {
    width: 100%;
    max-width: 100%;
    display: flex;
    box-sizing: border-box;
  }
}
.full-width-text--buttons-side.full-width-text--center .full-width-text__container {
  flex-direction: column;
  justify-content: center;
}
.full-width-text--buttons-side.full-width-text--center .full-width-text__buttons {
  align-self: center;
  width: 100%;
}
.full-width-text--buttons-align-top.full-width-text--buttons-side .full-width-text__container {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .full-width-text--buttons-align-top.full-width-text--buttons-side .full-width-text__buttons {
    margin-top: 56px;
  }
}
.full-width-text--buttons-align-center.full-width-text--buttons-side .full-width-text__container {
  align-items: center;
}
@media (max-width: 768px) {
  .full-width-text--buttons-align-center.full-width-text--buttons-side .full-width-text__container {
    align-items: flex-start;
  }
}
.full-width-text--buttons-align-bottom.full-width-text--buttons-side .full-width-text__container {
  align-items: flex-end;
}
@media (max-width: 768px) {
  .full-width-text--buttons-align-bottom.full-width-text--buttons-side .full-width-text__container {
    align-items: flex-start;
  }
}
.full-width-text--nested .full-width-text__container {
  padding: 0 !important;
}
.full-width-text--nested .full-width-text__content {
  gap: 0;
}
.full-width-text--nested .full-width-text__eyebrow,
.full-width-text--nested .typography--eyebrow {
  margin-bottom: 24px;
}
.full-width-text--nested .full-width-text__heading,
.full-width-text--nested .typography--h2 {
  margin-bottom: 24px;
}
.full-width-text--nested .full-width-text__body {
  max-width: 768px;
}
.full-width-text--nested.full-width-text--center .full-width-text__body {
  margin-left: auto;
  margin-right: auto;
}

/**
 * Breadcrumb Component
 *
 * Usage:
 * - Blog/News: Home > About > News & Blogs > Article Title
 * - Inventory PDPs: Home > Inventory > Vehicle Name
 */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  padding: 16px 24px;
  font-family: "Sofia Sans", sans-serif;
  color: #12355B;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 768px) {
  .breadcrumb {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
  }
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  max-width: 100%;
}

.breadcrumb__link {
  color: #12355B;
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 2px;
}
.breadcrumb__link:hover {
  color: #11547E;
}

.breadcrumb__text {
  color: #12355B;
  text-decoration: none;
}

.breadcrumb__current {
  color: #12355B;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}
@media (max-width: 768px) {
  .breadcrumb__current {
    max-width: 150px;
  }
}
@media (max-width: 376px) {
  .breadcrumb__current {
    max-width: 100px;
  }
}

.breadcrumb__separator {
  color: #12355B;
  flex-shrink: 0;
  user-select: none;
}

/**
 * Logo Grid Component
 *
 * Displays partner/client logos in a responsive grid layout.
 * - Desktop: Single row with equal spacing
 * - Mobile: 2 logos per row
 */
.logo-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.logo-grid .full-width-text .full-width-text__container .full-width-text__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.logo-grid .full-width-text .full-width-text__container .full-width-text__content h2 {
  padding-bottom: 12px;
}
.logo-grid .full-width-text .full-width-text__container .full-width-text__buttons {
  padding-top: 0 !important;
}

.logo-grid__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 64px;
  column-gap: 48px;
  max-width: 1110px;
  margin: 0 auto;
  padding: 32px 24px 0;
}
@media (max-width: 768px) {
  .logo-grid__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-items: center;
    column-gap: 40px;
    row-gap: 48px;
    padding: 42px 0 0;
  }
  .logo-grid__container .logo-grid__item:last-child:nth-child(odd) {
    grid-column: 1/-1;
  }
}

.logo-grid__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 80px;
}
@media (max-width: 768px) {
  .logo-grid__item {
    width: 120px;
    height: 60px;
  }
}

.logo-grid__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/**
 * CTA Call Out With Links Component
 *
 * Two-column layout:
 * - Desktop: Content (left) + Resource links (right)
 * - Mobile/Tablet: Stacked - content, buttons, then resource links
 */
.cta-callout-links__container {
  display: flex;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 80px;
  background-color: #F5F5F5;
  align-items: center;
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .cta-callout-links__container {
    flex-direction: column;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .cta-callout-links__container {
    padding: 24px;
    gap: 32px;
  }
}

.cta-callout-links__content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .cta-callout-links__content {
    width: 100%;
  }
}

.cta-callout-links__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .cta-callout-links__buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-callout-links__buttons > div {
    width: 100%;
  }
  .cta-callout-links__buttons .bc-button {
    width: 100%;
    display: flex;
    box-sizing: border-box;
  }
}

.cta-callout-links__resources {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  width: 508px;
}
@media (max-width: 1024px) {
  .cta-callout-links__resources {
    width: 100%;
    max-width: 508px;
  }
}
@media (max-width: 768px) {
  .cta-callout-links__resources {
    width: 100%;
    max-width: none;
  }
}

.cta-callout-links__resource-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid #DADCDE;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
  background-color: #ffffff;
}
.cta-callout-links__resource-item:hover {
  border-color: #A2A4A3;
}

.cta-callout-links__resource-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.cta-callout-links__resource-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #12355B;
}
.cta-callout-links__resource-icon svg {
  width: 16px;
  height: 16px;
}
.cta-callout-links__resource-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.cta-callout-links__resource-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-callout-links__resource-title {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 20px;
  color: #12355B;
}
@media (max-width: 768px) {
  .cta-callout-links__resource-title {
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 0;
    vertical-align: middle;
  }
}

.cta-callout-links__resource-description {
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #50585E;
}
@media (max-width: 768px) {
  .cta-callout-links__resource-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    vertical-align: middle;
  }
}

.cta-callout-links__resource-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #12355B;
}
.cta-callout-links__resource-chevron svg {
  width: 24px;
  height: 24px;
}

html {
  box-sizing: border-box;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

:root :where(.is-layout-flow) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Sofia Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

section {
  padding: 16px 32px;
}
@media (min-width: 768px) {
  section {
    padding: 96px 32px;
  }
}

/*# sourceMappingURL=main.css.map */
