.tc-wrapper {
    background: #fafafa;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0 48px;
}

.tc-header {
    margin-bottom: 8px;
}

.tc-header h2 {
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 4px;
    color: #222;
}

.tc-list {
    counter-reset: tc-counter;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.tc-list>li {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
    padding: 18px 18px 18px 64px;
    color: #333;
    font-size: 16px;
}

.tc-list>li:before {
    counter-increment: tc-counter;
    content: counter(tc-counter, decimal-leading-zero);
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f38020;
    /* Naranja ITTSABUS */
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tc-list p {
    margin: 0;
    text-align: left;
}

.tc-sublist {
    margin: 10px 0 0 0;
    padding-left: 18px;
}

.tc-sublist li {
    margin: 6px 0;
}

/* Enlaces ancla visibles al enfocar, útil para compartir #tX */
.tc-list>li:target {
    outline: 2px solid #f38020;
    outline-offset: 2px;
}

/* Responsive */
@media (min-width: 992px) {
    .tc-wrapper {
        padding: 28px 32px;
    }

    .tc-list {
        gap: 16px;
    }

    .tc-list>li {
        padding: 22px 22px 22px 76px;
        font-size: 17px;
    }

    .tc-list>li:before {
        top: 18px;
        left: 18px;
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}