.bgt-buyer-led-nav {
  width: 100%;
  max-width: 100%;
  background: #eef5f1;
  overflow-x: clip;
}

.bgt-buyer-led-nav,
.bgt-buyer-led-nav * {
  box-sizing: border-box;
}

.bgt-buyer-led-nav__container {
  width: 100%;
  max-width: 1340px;
  margin-inline: auto;
}

/* Ratio-based flex keeps the original 42/58 visual balance while the gap
   is taken from the available width, so the section cannot overflow. */
.bgt-buyer-led-nav__layout {
  --bgt-left-ratio: 42;
  --bgt-right-ratio: 58;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 82px;
  width: 100%;
  min-width: 0;
}

.bgt-buyer-led-nav__left {
  min-width: 0;
  width: auto;
  flex: var(--bgt-left-ratio) 1 0% !important;
  flex-basis: 0% !important;
  max-width: none !important;
}

.bgt-buyer-led-nav__right {
  min-width: 0;
  width: auto;
  flex: var(--bgt-right-ratio) 1 0% !important;
  flex-basis: 0% !important;
  max-width: none !important;
}

.bgt-buyer-led-nav__eyebrow {
  margin: 0 0 24px;
  color: #65d6a8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.bgt-buyer-led-nav__heading {
  margin: 0 0 22px !important;
  padding: 0 !important;
  color: #071f2c;
  font-family: inherit;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.045em;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.bgt-buyer-led-nav__description {
  margin: 0;
  max-width: 540px;
  color: #6a7f89;
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: break-word;
  word-break: normal;
}

.bgt-buyer-led-nav__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cfdcd7;
  border-radius: 22px;
  background: #fff;
}

.bgt-buyer-led-nav__card {
  min-width: 0;
  min-height: 170px;
  color: inherit;
  text-decoration: none !important;
  border-right: 1px solid #cfdcd7;
  border-bottom: 1px solid #cfdcd7;
  transition: background-color .2s ease;
}

.bgt-buyer-led-nav__card:nth-child(2n) {
  border-right: 0;
}

.bgt-buyer-led-nav__card:nth-last-child(-n+2) {
  border-bottom: 0;
}

.bgt-buyer-led-nav__card:hover,
.bgt-buyer-led-nav__card:focus {
  text-decoration: none !important;
  background: #fbfdfc;
}

.bgt-buyer-led-nav__card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 30px 30px;
}

.bgt-buyer-led-nav__number {
  margin-bottom: 26px;
  color: #00a66c;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.bgt-buyer-led-nav__card-content {
  min-width: 0;
  padding-right: 34px;
}

.bgt-buyer-led-nav__card-title {
  margin: 0 0 11px !important;
  padding: 0 !important;
  color: #071f2c;
  font-family: inherit;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.bgt-buyer-led-nav__card-description {
  color: #647883;
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: normal;
}

.bgt-buyer-led-nav__arrow {
  position: absolute;
  right: 28px;
  bottom: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00a66c;
  line-height: 1;
  transition: transform .2s ease;
}

.bgt-buyer-led-nav__arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.bgt-buyer-led-nav__arrow i {
  font-size: 14px;
}

.bgt-buyer-led-nav__card:hover .bgt-buyer-led-nav__arrow,
.bgt-buyer-led-nav__card:focus .bgt-buyer-led-nav__arrow {
  transform: translateX(3px);
}

/* Large laptops / narrow desktop: preserve the same layout without overflow. */
@media (max-width: 1300px) {
  .bgt-buyer-led-nav__container {
    padding-inline: clamp(20px, 2.5vw, 32px);
  }

  .bgt-buyer-led-nav__layout {
    column-gap: clamp(42px, 5vw, 64px) !important;
  }

  .bgt-buyer-led-nav__heading {
    font-size: clamp(48px, 4.5vw, 58px);
  }
}

/* Tablet and below: stack the two main columns before either becomes cramped. */
@media (max-width: 1024px) {
  .bgt-buyer-led-nav__layout {
    flex-direction: column;
    align-items: stretch;
    row-gap: 44px;
    column-gap: 0 !important;
  }

  .bgt-buyer-led-nav__left,
  .bgt-buyer-led-nav__right {
    width: 100%;
    flex: 0 0 100% !important;
    flex-basis: 100% !important;
    max-width: 100% !important;
  }

  .bgt-buyer-led-nav__heading {
    max-width: 720px;
    font-size: 50px;
  }

  .bgt-buyer-led-nav__description {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .bgt-buyer-led-nav__container {
    padding-inline: 18px;
  }

  .bgt-buyer-led-nav__layout {
    row-gap: 32px;
  }

  .bgt-buyer-led-nav__eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
  }

  .bgt-buyer-led-nav__heading {
    max-width: none;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.06;
  }

  .bgt-buyer-led-nav__description {
    font-size: 15px;
  }

  .bgt-buyer-led-nav__grid {
    grid-template-columns: 1fr;
  }

  .bgt-buyer-led-nav__card,
  .bgt-buyer-led-nav__card:nth-child(2n),
  .bgt-buyer-led-nav__card:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid #cfdcd7;
  }

  .bgt-buyer-led-nav__card:last-child {
    border-bottom: 0;
  }

  .bgt-buyer-led-nav__card-inner {
    padding: 28px 24px;
  }

  .bgt-buyer-led-nav__arrow {
    right: 22px;
    bottom: 24px;
  }
}

@media (max-width: 380px) {
  .bgt-buyer-led-nav__container {
    padding-inline: 14px;
  }

  .bgt-buyer-led-nav__heading {
    font-size: 34px;
  }

  .bgt-buyer-led-nav__card-inner {
    padding: 25px 20px;
  }
}
