.duzey-reference-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.duzey-reference-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.duzey-reference-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 0;
  background: #fff;
  color: #071b3d;
  font-size: 1.2rem;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.duzey-reference-controls button:hover,
.duzey-reference-controls button:focus-visible {
  border-color: #00a6d6;
  background: #00a6d6;
  color: #06152f;
}

.duzey-reference-controls button:focus-visible {
  outline: 3px solid rgba(0, 166, 214, .24);
  outline-offset: 2px;
}

.duzey-reference-carousel {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  border: 1px solid #dce3ec;
  background: #dce3ec;
}

.duzey-reference-carousel::-webkit-scrollbar {
  display: none;
}

.duzey-reference-track {
  display: flex;
  gap: 1px;
  width: max-content;
}

.duzey-reference-carousel .duzey-logo-card {
  flex: 0 0 clamp(170px, 16.666vw, 210px);
  min-height: 118px;
  scroll-snap-align: start;
}

.duzey-reference-carousel .duzey-logo-card a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.duzey-knowledge-all {
  margin: 30px 0 0;
  text-align: center;
}

.duzey-article-cover {
  margin: 0 0 38px;
}

.duzey-article-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.duzey-article-body {
  max-width: 920px;
}

.duzey-back-to-knowledge {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid #dce3ec;
}

@media (max-width: 760px) {
  .duzey-reference-heading {
    align-items: center;
  }

  .duzey-reference-controls {
    margin-bottom: 28px;
  }

  .duzey-reference-carousel .duzey-logo-card {
    flex-basis: min(46vw, 180px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .duzey-reference-carousel {
    scroll-behavior: auto;
  }
}

