
.pr-tldr {
    background-color: var(--tldr-background-color);
    border-radius: 10px;
    padding: 45px 50px;
    max-width: 900px;
    margin: 25px auto;
    box-sizing: border-box;
}

.pr-tldr.color-1 {
    --tldr-color: #BD9C63;
    --tldr-background-color: #BD9C631A;
}

.pr-tldr.color-2 {
    --tldr-color: #706D42;
    --tldr-background-color: #706D421A;
}

.pr-tldr.color-3 {
    --tldr-color: #960D4B;
    --tldr-background-color: #960D4B1A;
}

.pr-tldr > h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.04;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--tldr-color);
}

.pr-tldr > div {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
}

.pr-tldr ul {
    margin-left: 1.5em;
    margin-bottom: 0;
}

.pr-tldr ol {
    margin-left: 3em;
    margin-bottom: 0;
    list-style: none;
}

.pr-tldr ol li {
    position: relative;
}

.pr-tldr ol li + li {
    margin-top: 15px;
}

.pr-tldr ol li::before {
    content: counter(list-item);
    position: absolute;
    left: -2.2em;
    top: 0.3em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--tldr-color);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}
