/*
 * Novatex Catalog Facts
 * Server-rendered HTML only - no JavaScript.
 */
.content-bottom-vertical .row > .module-cont:has(.ntx-catalog-facts),
.content-top-vertical .row > .module-cont:has(.ntx-catalog-facts),
.module-cont:has(.ntx-catalog-facts) {
    position: relative !important;
    z-index: 2 !important;
    isolation: isolate !important;
    pointer-events: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
}

.module-cont:has(.ntx-catalog-facts)::before,
.module-cont:has(.ntx-catalog-facts)::after {
    pointer-events: none !important;
}

/* Keep a following carousel/module below this module without ever outranking the sticky site header. */
.content-bottom-vertical .row > .module-cont:has(.ntx-catalog-facts) + .module-cont,
.content-top-vertical .row > .module-cont:has(.ntx-catalog-facts) + .module-cont {
    position: relative;
    z-index: 1;
}

.ntx-catalog-facts,
.ntx-catalog-facts * {
    box-sizing: border-box;
}

.ntx-catalog-facts {
    --ntx-brand-orange: #f26922;
    --ntx-brand-orange-dark: #d95517;
    position: relative;
    z-index: 2;
    margin: 16px 0 20px;
    user-select: text !important;
    -webkit-user-select: text !important;
}

.ntx-catalog-facts__head {
    margin-bottom: 10px;
}

.ntx-catalog-facts__title {
    margin: 0 0 6px;
    font-size: 1.42rem;
    line-height: 1.25;
}

.ntx-catalog-facts__intro {
    max-width: 1040px;
    margin: 0;
    line-height: 1.5;
}

.ntx-catalog-facts__intro strong {
    font-weight: 700;
}

.ntx-catalog-facts__nav {
    position: relative;
    z-index: 2;
    margin-top: 11px;
}

.ntx-catalog-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ntx-catalog-facts__item {
    min-width: 0;
    margin: 0;
    padding: 0;
}

.ntx-catalog-facts__card {
    position: relative;
    padding: 9px 11px 8px;
    border: 1px solid #e1e1e1;
    border-left: 3px solid var(--ntx-brand-orange);
    border-radius: 2px;
    background: #fff;
    transition: border-color .15s ease, background-color .15s ease;
}

.ntx-catalog-facts__card:hover {
    border-color: #cfcfcf;
    border-left-color: var(--ntx-brand-orange);
    background: #fffdfa;
}

.ntx-catalog-facts__name {
    margin: 0 0 3px;
    font-size: .94rem;
    font-weight: 700;
    line-height: 1.22;
}

.ntx-catalog-facts__name-link {
    color: var(--ntx-brand-orange);
    text-decoration: none;
    cursor: pointer !important;
    touch-action: manipulation;
}

.ntx-catalog-facts__name-link:hover,
.ntx-catalog-facts__name-link:focus {
    color: var(--ntx-brand-orange-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ntx-catalog-facts__stats {
    margin: 0;
    font-size: .88rem;
    line-height: 1.25;
    color: #4d4d4d;
    opacity: 1;
}

.ntx-catalog-facts__model-count data,
.ntx-catalog-facts__combination-count data {
    font-weight: 700;
    opacity: 1;
}

.ntx-catalog-facts__sep {
    padding: 0 2px;
    opacity: .6;
}

@media (max-width: 980px) {
    .ntx-catalog-facts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .ntx-catalog-facts__grid {
        grid-template-columns: 1fr;
    }

    .ntx-catalog-facts__card {
        padding: 8px 10px;
    }
}
