/* intro v30 — sticky sidebar + single wide photo with overlay */

.intro-lane__fluid {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.intro-lane__main { min-width: 0; }

.intro-lane__banner {
    min-height: 16rem;
}

.intro-lane__banner-img {
    object-fit: cover;
}

@media (min-width: 992px) {
    .intro-lane__banner { min-height: 22rem; }
}

.content-margin-notes__aside {
    align-self: start;
}

@media (min-width: 992px) {
    .content-margin-notes__aside {
        position: sticky;
        top: 2rem;
    }
}

/* steps v24 - tab switcher scroll container tweak, no color rules */

.steps-tab-switcher__tab {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

/* sidebar rail: horizontal scroll on mobile, fixed-width column on desktop
   (no Bootstrap equivalent for a responsive fixed width + overflow switch) */
.docket-switcher__rail {
    overflow-x: auto;
}

@media (min-width: 768px) {
    .docket-switcher__rail {
        overflow-x: visible;
        width: 18rem;
    }
}

/* detail panel needs min-width: 0 as a flex child so long text wraps instead of overflowing */
.docket-switcher__panel {
    min-width: 0;
}

/* fixed-size number badge in the sidebar list item (no Bootstrap size utility) */
.docket-switcher__badge-chip {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
}

/* fixed-size icon badge in the detail panel (no Bootstrap size utility) */
.docket-switcher__badge {
    width: 4rem;
    height: 4rem;
}

/* Active tab state — must win over Bootstrap's own !important bg/text utilities,
   and must not rely on raw Tailwind literal classes (invisible under the bs framework). */
.steps-tab-switcher__tab.is-active {
    background-color: var(--bs-primary, rgb(var(--tw-primary-600, 37 99 235) / 1)) !important;
    color: #fff !important;
}

.dark .steps-tab-switcher__tab.is-active {
    background-color: var(--bs-primary, rgb(var(--tw-primary-400, 96 165 250) / 1)) !important;
    color: rgb(15 23 42) !important;
}

/* FAQ v13 — JS hooks */
.handbook-support-resolve-veiled {
    display: none;
}

.handbook-support-mark.handbook-support-mark-expand {
    transform: rotate(180deg);
}

