.tfnz-numberedlist_container {
    max-width: 900px;
    width: 80%;
    margin: 0 auto;
}

.tfnz-numberedlist_heading {
    text-transform: none;
    padding-bottom: calc(48px + 0.15em);
    position: relative;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.tfnz-numberedlist_heading::after {
    content: "";
    position: absolute;
    bottom: 32px;
    left: 0;
    width: 1.5em;
    height: 0.15em;
    background: #008caa;
}

.tfnz-numberedlist_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tfnz-numberedlist_item {
}

.tfnz-numberedlist_flex {
    display: flex;
    gap: 16px;
}

.tfnz-numberedlist_number::after {
    counter-reset: number var(--number);
    content: counter(number);
    background: #008caa;
    flex-grow: 0;
    flex-shrink: 0;
    border-radius: 100px;
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    margin-top: 4px;
}

.tfnz-numberedlist_content {
/*    padding: 5px 0 0 0;*/
}

.tfnz-numberedlist_content p,
.tfnz-numberedlist_content li {
    font-size: 0.9rem; /* Match font size to TFI */
    color: rgb(117 117 117 / 1);
    margin-left: 0 !important; /* WYSIWYG adds +40 margin. Override. */
    line-height: 1.46;
    color: #333;
}

.tfnz-numberedlist_content img {
    border-radius: 0.625rem;
}

.tfnz-numberedlist_content h1,
.tfnz-numberedlist_content h2,
.tfnz-numberedlist_content h3,
.tfnz-numberedlist_content h4,
.tfnz-numberedlist_content h5,
.tfnz-numberedlist_content h6 {
    margin-left: 0 !important;
}

.tfnz-navcards_card:hover {
    box-shadow: 0 0 #0000,0 0 #0000,3px 8px 15px 1px rgba(0,0,0,.35);
    text-decoration: none;
}

.tfnz-navcards_card:hover .tfnz-navcards_cardTitle {
    color: #008caa !important;
}

.tfnz-navcards_card:hover .tfnz-navcards_cardImageContainer img {
    transform: scale(1.1);
}

@media screen and (max-width: 800px) {
    .tfnz-numberedlist_container {
        max-width: none;
        width: auto;
        margin: 0 24px;
    }

    .tfnz-numberedlist_list {
        gap: 30px;
    }

    .tfnz-numberedlist_flex {
        flex-direction: column;
        gap: 10px;
    }

    .tfnz-numberedlist_content {
        padding: 0;
    }
}