.dhc-discovery {
  width: 100%;
  padding: 72px 0 82px;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #e7edf2;
}

.dhc-discovery *,
.dhc-discovery *::before,
.dhc-discovery *::after {
  box-sizing: border-box;
}

.dhc-discovery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.dhc-discovery__heading {
  max-width: 720px;
}

.dhc-discovery__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #078fc5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.dhc-discovery__heading h2 {
  margin: 0;
  color: #162f46;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.dhc-discovery__heading p {
  margin: 12px 0 0;
  color: #63798c;
  font-size: 16px;
  line-height: 1.8;
}

.dhc-discovery__controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.dhc-discovery__arrow {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #cbd9e4;
  border-radius: 50%;
  background: #fff;
  color: #1a526f;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.dhc-discovery__arrow span {
  font: 400 30px/1 Arial, sans-serif;
  transform: translateY(-1px);
}

.dhc-discovery__arrow:hover,
.dhc-discovery__arrow:focus-visible {
  border-color: #078fc5;
  background: #078fc5;
  color: #fff;
  outline: none;
}

.dhc-discovery__arrow:disabled {
  border-color: #e2e9ee;
  background: #f7f9fb;
  color: #b2c0cb;
  cursor: default;
}

.dhc-discovery__nav-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  border-bottom: 1px solid #dce6ed;
}

.dhc-discovery__tabs {
  display: flex;
  min-width: 0;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.dhc-discovery__tabs::-webkit-scrollbar,
.dhc-discovery__viewport::-webkit-scrollbar {
  display: none;
}

.dhc-discovery__tab {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 15px;
  border: 0;
  background: transparent;
  color: #51697d;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.dhc-discovery__tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: #078fc5;
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}

.dhc-discovery__tab:hover,
.dhc-discovery__tab:focus-visible,
.dhc-discovery__tab.is-active {
  color: #087fae;
  outline: none;
}

.dhc-discovery__tab.is-active {
  font-weight: 700;
}

.dhc-discovery__tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.dhc-discovery__more {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding-bottom: 15px;
  color: #31566f;
  font-size: 15px;
  line-height: 1.5;
}

.dhc-discovery__more span {
  color: #078fc5;
  font-size: 19px;
  transition: transform .2s ease;
}

.dhc-discovery__more:hover {
  color: #078fc5;
}

.dhc-discovery__more:hover span {
  transform: translateX(3px);
}

.dhc-discovery__panels {
  margin-top: 28px;
}

.dhc-discovery__panel {
  display: none;
}

.dhc-discovery__panel.is-active {
  display: block;
}

.dhc-discovery__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.dhc-discovery__viewport:focus-visible {
  outline: 2px solid #6db7d6;
  outline-offset: 4px;
}

.dhc-discovery__track {
  display: grid;
  grid-auto-columns: calc(33.333333% - 13.333333px);
  grid-auto-flow: column;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dhc-discovery__item {
  min-width: 0;
  scroll-snap-align: start;
}

.dhc-discovery__card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: #edf2f5;
  color: #fff;
}

.dhc-discovery__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.dhc-discovery__card-shade {
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(to bottom, rgba(10, 30, 45, 0), rgba(10, 30, 45, .82));
  pointer-events: none;
}

.dhc-discovery__card-copy {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.dhc-discovery__card-copy strong {
  min-width: 0;
  overflow: hidden;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dhc-discovery__card-copy > span {
  flex: 0 0 auto;
  color: #eaf6fb;
  font-size: 13px;
  line-height: 1.5;
}

.dhc-discovery__card-copy i {
  margin-left: 3px;
  font-style: normal;
}

.dhc-discovery__card:hover img {
  transform: scale(1.035);
}

@media screen and (max-width: 900px) {
  .dhc-discovery {
    padding: 56px 0 64px;
  }

  .dhc-discovery__heading h2 {
    font-size: 32px;
  }

  .dhc-discovery__track {
    grid-auto-columns: calc(50% - 8px);
    gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .dhc-discovery {
    padding: 42px 0 52px;
  }

  .dhc-discovery__header {
    align-items: center;
    gap: 16px;
  }

  .dhc-discovery__eyebrow {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .dhc-discovery__heading h2 {
    font-size: 27px;
  }

  .dhc-discovery__heading p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.7;
  }

  .dhc-discovery__controls {
    gap: 7px;
  }

  .dhc-discovery__arrow {
    width: 38px;
    height: 38px;
  }

  .dhc-discovery__arrow span {
    font-size: 27px;
  }

  .dhc-discovery__nav-row {
    align-items: center;
    gap: 14px;
    margin-top: 25px;
  }

  .dhc-discovery__tabs {
    gap: 22px;
  }

  .dhc-discovery__tab {
    padding-bottom: 12px;
    font-size: 14px;
  }

  .dhc-discovery__more {
    padding-bottom: 12px;
    font-size: 13px;
  }

  .dhc-discovery__more span {
    display: none;
  }

  .dhc-discovery__panels {
    margin-top: 18px;
  }

  .dhc-discovery__track {
    grid-auto-columns: 86%;
    gap: 12px;
    padding-right: 7%;
  }

  .dhc-discovery__card {
    border-radius: 5px;
  }

  .dhc-discovery__card-copy {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .dhc-discovery__card-copy strong {
    font-size: 17px;
  }

  .dhc-discovery__card-copy > span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dhc-discovery__viewport {
    scroll-behavior: auto;
  }

  .dhc-discovery__card img,
  .dhc-discovery__more span,
  .dhc-discovery__tab::after {
    transition: none;
  }
}

@media screen and (max-width: 480px) {
  .dhc-discovery__controls {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .dhc-discovery {
    padding: 54px 0 60px;
  }

  .dhc-discovery__heading h2 {
    font-size: 32px;
  }

  .dhc-discovery__heading p {
    margin-top: 8px;
    font-size: 15px;
  }

  .dhc-discovery__nav-row {
    margin-top: 26px;
  }

  .dhc-discovery__panels {
    margin-top: 22px;
  }

  .dhc-discovery__track {
    grid-auto-columns: calc(25% - 15px);
  }

  .dhc-discovery__card-copy {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .dhc-discovery__card-copy strong {
    font-size: 17px;
  }
}

@media screen and (max-width: 1200px) and (min-width: 901px) {
  .dhc-discovery__track {
    grid-auto-columns: calc(33.333333% - 13.333333px);
  }
}
