/* Explosion Network Content Tabs — minimal, theme-resistant */
.en-tabs {
    --en-tabs-accent: #e51b72;
    --en-tabs-ink: #222;
    --en-tabs-muted: #666;
    width: 100%;
    margin: 10px 0 18px;
    font: inherit;
    background: transparent;
}
.en-tabs .en-tabs__nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-end;
    gap: 24px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.en-tabs .en-tabs__button {
    appearance: none !important;
    -webkit-appearance: none !important;
    flex: 0 0 auto;
    position: relative;
    margin: 0 !important;
    padding: 8px 0 11px !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline-offset: 3px;
    background: transparent !important;
    background-image: none !important;
    color: var(--en-tabs-muted) !important;
    cursor: pointer;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    white-space: nowrap;
}
.en-tabs .en-tabs__button:hover,
.en-tabs .en-tabs__button:focus-visible {
    background: transparent !important;
    color: var(--en-tabs-ink) !important;
}
.en-tabs .en-tabs__button[aria-selected="true"] {
    background: transparent !important;
    color: var(--en-tabs-ink) !important;
}
.en-tabs .en-tabs__button[aria-selected="true"]::after {
    content: "";
    position: absolute;
    left: -3px;
    right: -3px;
    bottom: 0;
    height: 3px;
    background: var(--en-tabs-accent);
}
.en-tabs .en-tabs__panels {
    margin: 0 !important;
    padding: 19px 0 0 !important;
    border: 0 !important;
    background: transparent !important;
}
.en-tabs .en-tabs__panel {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: inherit;
    line-height: 1.6;
    white-space: pre-line;
}
.en-tabs .en-tabs__panel p,
.en-tabs .en-tabs__panel div,
.en-tabs .en-tabs__panel ul,
.en-tabs .en-tabs__panel ol,
.en-tabs .en-tabs__panel blockquote,
.en-tabs .en-tabs__panel table {
    white-space: normal;
}
.en-tabs .en-tabs__panel + .en-tabs__panel {
    margin-top: 16px !important;
}
.en-tabs.en-tabs--ready .en-tabs__panel {
    display: none;
    margin: 0 !important;
}
.en-tabs.en-tabs--ready .en-tabs__panel.is-active {
    display: block;
}
.en-tabs .en-tabs__panel p {
    margin-top: 0;
    margin-bottom: .7em;
}
.en-tabs .en-tabs__panel p:last-child { margin-bottom: 0; }
.en-tabs .en-tabs__line { display: block; margin: 0 0 .42em; white-space: normal; }
.en-tabs .en-tabs__line:last-child { margin-bottom: 0; }
.en-tabs .en-tabs__gap { display: block; height: .55em; white-space: normal; }
.en-tabs .en-tabs__panel strong,
.en-tabs .en-tabs__panel b { font-weight: 700; }
@media (max-width: 767px) {
    .en-tabs { margin: 10px 0 16px; }
    .en-tabs .en-tabs__nav { gap: 20px; }
    .en-tabs .en-tabs__button {
        padding: 7px 0 10px !important;
        font-size: 13px !important;
    }
    .en-tabs .en-tabs__panels { padding-top: 15px !important; }
}

/* v2.6 durable credit/spec row spacing */
.en-tabs .en-tabs__panel p + p { margin-top: .75em; }
