.detail-section-nav {
    position: sticky;
    top: var(--detail-header-height, 59px);
    z-index: 30;
    display: flex;
    width: 100%;
    height: 49px;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    background: #fff;
    border-top: 1px solid #f2f4f6;
    border-bottom: 1px solid #e9ecef;
}
.detail-section-nav::-webkit-scrollbar { display: none; }
.detail-section-nav--full-bleed {
    width: calc(100% + 30px);
    margin-left: -15px;
}
.detail-section-nav__link {
    position: relative;
    box-sizing: border-box;
    flex: 1 0 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
    color: #8b95a1;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}
.detail-section-nav__link::after {
    content: '';
    position: absolute;
    right: 18%;
    bottom: -1px;
    left: 18%;
    height: 2px;
    border-radius: 2px;
    background: transparent;
}
.detail-section-nav__link.is-active { color: #191f28; }
.detail-section-nav__link.is-active::after { background: #191f28; }
.detail-section-anchor,
#detail-market-section,
#detail-transactions-section,
#detail-map-section,
#detail-brokers-section { scroll-margin-top: calc(var(--detail-header-height, 59px) + 57px); }
.trade-filters-sticky { top: calc(var(--detail-header-height, 59px) + 49px) !important; }
@media (prefers-reduced-motion: reduce) {
    .detail-section-nav__link { scroll-behavior: auto; }
}
