/* ── Table Contents ── */

.c-table-contents {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 24px 32px;
    background: rgba(250, 248, 245, 0.5);
}

/* ── Heading ── */

.c-table-contents .c-table-contents__heading {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #2b2b2b;
    margin: 0 0 16px;
}

/* ── List ── */

.c-table-contents .c-table-contents__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Item ── */

.c-table-contents .c-table-contents__link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #7c695a;
    text-decoration: none;
    transition: color 0.25s ease;
}

.c-table-contents .c-table-contents__link:hover {
    color: #c4a97d;
}

/* ── Number ── */

.c-table-contents .c-table-contents__num {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #b9956a99;
    flex-shrink: 0;
    width: 20px;
    transition: color 0.25s ease;
}

.c-table-contents .c-table-contents__link:hover .c-table-contents__num {
    color: #c4a97d;
}
