:root {
  --dstp-border: #e7e7e7;
  --dstp-text: #151515;
  --dstp-muted: #6f6f6f;
  --dstp-bg: #ffffff;
  --dstp-soft: #f7f7f7;
  --dstp-accent: #111111;
  --dstp-radius: 18px;
  --dstp-sticky-top: 90px;
}
.dstp-tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.dstp-tabs-nav::-webkit-scrollbar {
    display: none;
}

.dstp-tabs-track {
    display: flex;
    gap: 10px;
}

.dstp-tab {
    flex: 0 0 auto;
}

.dstp-scroll-active {
    cursor: grab;
}
.dstp-wrapper {
  position: relative;
  width: 100%;
  background: var(--dstp-bg);
}

.dstp-progress {
  position: sticky;
  top: 0;
  z-index: 9998;
  height: 3px;
  width: 100%;
  background: rgba(0,0,0,.06);
}

.dstp-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--dstp-accent);
  transition: width .15s linear;
}

.dstp-tabs-outer {
  position: sticky;
  top: 66px;
  z-index: 9997;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--dstp-border);
}

.dstp-tabs-nav {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dstp-tabs-nav::-webkit-scrollbar {
  display: none;
}

.dstp-tabs-track {
  position: relative;
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
  padding-bottom: 0px;
}

.dstp-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--dstp-muted);
  font-size: 15px;
  font-weight: 600;
  transition: color .25s ease, background .25s ease;
}

.dstp-tab:hover,
.dstp-tab.active {
  color: var(--dstp-text);
  background: rgb(240 129 38);
}

.dstp-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0px;
  width: 0;
  border-radius: 999px;
  background: var(--dstp-accent);
  transition: transform .3s ease, width .3s ease;
  transform: translateX(0);
}

.dstp-nav-arrow {
  border: 0px solid var(--dstp-border);
  background: #fff;
  color: var(--dstp-text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 0;
}
.dstp-section {
    padding: 0px 0 0px;
    border-bottom: 0px solid var(--dstp-border);
     scroll-margin-top: calc(var(--dstp-sticky-top, 90px) + 60px);
}
.dstp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
  gap: 34px;
  padding: 30px 16px 60px;
}

.dstp-left {
  min-width: 0;
}





.dstp-content,
.dstp-content p,
.dstp-box-content,
.dstp-auto-note {
  color: var(--dstp-muted);
  font-size: 16px;
  line-height: 1.75;
}

.dstp-right {
  min-width: 0;
}

.dstp-sticky-box {
  position: sticky;
  top: calc(var(--dstp-sticky-top) + 54px);
}

.dstp-sticky-box h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--dstp-text);
}

.dstp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: var(--dstp-accent);
  font-weight: 600;
}

.dstp-auto-note {
  padding: 20px;
  border: 1px dashed var(--dstp-border);
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 991px) {
  .dstp-layout {
    grid-template-columns: 1fr;
  }

  .dstp-right {
    order: -1;
  }

  .dstp-sticky-box {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767px) {
    
  .dstp-tabs-outer {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    padding: 10px 10px;
  }

  .dstp-tab {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .dstp-layout {
    gap: 20px;
    padding: 18px 12px 42px;
  }

  .dstp-section {
    scroll-margin-top: 120px;
    padding: 24px 0 34px;
  }
}