/* Vanessas12 — content parts: vertical stepper rail, definition pairs, notes, cards */

.railWrap_iv8 {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px 8px;
}

.railList_iv8 {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.railList_iv8::before {
    content: "";
    position: absolute;
    left: calc(var(--iv-dotsize) / 2 - var(--iv-rail) / 2);
    top: 12px;
    bottom: 12px;
    width: var(--iv-rail);
    background: linear-gradient(180deg, var(--iv-violet) 0%, var(--iv-mint) 100%);
    opacity: .35;
}

.railItem_iv8 {
    position: relative;
    display: grid;
    grid-template-columns: var(--iv-dotsize) minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 34px;
}

.railItem_iv8:last-child {
    padding-bottom: 6px;
}

.railItem_iv8__dot {
    position: relative;
    z-index: 2;
    width: var(--iv-dotsize);
    height: var(--iv-dotsize);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--iv-sans);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: var(--iv-indigo);
    box-shadow: 0 0 0 5px var(--iv-paper), var(--iv-sh1);
}

.railItem_iv8:nth-child(even) .railItem_iv8__dot {
    background: var(--iv-violet);
}

.railItem_iv8__body {
    padding-top: 4px;
    min-width: 0;
}

.railItem_iv8__h {
    font-family: var(--iv-sans);
    font-size: clamp(18px, 2.2vw, 23px);
    line-height: 1.26;
    font-weight: 700;
    color: var(--iv-indigo);
    margin-bottom: 10px;
}

.railItem_iv8__body h3 {
    font-family: var(--iv-sans);
    font-size: 16px;
    font-weight: 700;
    color: var(--iv-ink);
    margin: 18px 0 7px;
}

.railItem_iv8__body p {
    color: var(--iv-mute);
    margin-bottom: 13px;
}

.railItem_iv8__body p:last-child {
    margin-bottom: 0;
}

.railItem_iv8__body strong {
    color: var(--iv-ink);
}

.tickList_iv8 {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    color: var(--iv-mute);
}

.tickList_iv8 li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.tickList_iv8 li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 12px;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: var(--iv-mint);
    transform: rotate(45deg);
}

/* ---------- term -> explanation pairs (replaces tables) ---------- */

.pairList_iv8 {
    margin: 18px 0 20px;
    border-top: 1px solid var(--iv-edge);
}

.pairList_iv8 dt {
    font-family: var(--iv-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--iv-indigo);
    background: var(--iv-tint);
    border-left: 3px solid var(--iv-mint);
    padding: 9px 14px;
}

.pairList_iv8 dd {
    margin: 0;
    padding: 11px 14px 16px 17px;
    border-bottom: 1px solid var(--iv-edge);
    color: var(--iv-mute);
    font-size: 15px;
}

/* ---------- note ---------- */

.noteCard_iv8 {
    margin: 20px 0;
    padding: 16px 20px;
    background: var(--iv-panel);
    border: 1px solid var(--iv-edge);
    border-left: 4px solid var(--iv-mint);
    border-radius: 0 var(--iv-r2) var(--iv-r2) 0;
    box-shadow: var(--iv-sh1);
}

.noteCard_iv8 p {
    margin: 0;
    color: var(--iv-ink);
    font-size: 15px;
}

/* ---------- small card grid ---------- */

.bitGrid_iv8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 14px;
    margin: 18px 0 20px;
}

.bitCard_iv8 {
    background: var(--iv-panel);
    border: 1px solid var(--iv-edge);
    border-radius: var(--iv-r2);
    padding: 16px 18px;
    box-shadow: var(--iv-sh1);
}

.bitCard_iv8__h {
    font-family: var(--iv-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--iv-indigo);
    margin-bottom: 5px;
}

.bitCard_iv8__t {
    font-size: 14px;
    line-height: 1.66;
    color: var(--iv-mute);
}

/* ---------- inline ordered mini-flow ---------- */

.miniFlow_iv8 {
    list-style: none;
    counter-reset: mini;
    margin: 16px 0 18px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.miniFlow_iv8 li {
    counter-increment: mini;
    position: relative;
    padding: 12px 16px 12px 48px;
    background: var(--iv-tint);
    border-radius: var(--iv-r1);
    color: var(--iv-mute);
    font-size: 15px;
}

.miniFlow_iv8 li::before {
    content: counter(mini);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--iv-mint);
    color: var(--iv-dark);
    font-family: var(--iv-sans);
    font-size: 12px;
    font-weight: 700;
}

.miniFlow_iv8 li b {
    color: var(--iv-ink);
    font-family: var(--iv-sans);
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

@media (max-width: 640px) {
    :root {
        --iv-dotsize: 36px;
    }

    .railWrap_iv8 {
        padding: 28px 18px 8px;
    }

    .railItem_iv8 {
        gap: 15px;
        padding-bottom: 26px;
    }

    .railItem_iv8__dot {
        font-size: 14px;
    }

    .pairList_iv8 dd {
        padding-left: 14px;
    }
}
