:root {
    --wpr_text: #fff;
    --wpr_font-sm: 0.875rem;
}

.wpr_public {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    position: relative;
    padding: 2rem;
}

.wpr_public::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0, 50%);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.wpr_public__heading {
    padding-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--wpr_text);
    z-index: 10;
}

.wpr_public__list,
.wpr_public__item {
    z-index: 10;
    list-style-type: none !important;
    margin: 0 !important;
}

.wpr_public__list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.wpr_public__hr {
    border-color: rgba(255,255,255, 50%);
}

.wpr_public__item::marker {
    display: none;
}

.wpr_public__anchor {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    color: var(--wpr_text) !important;
}

.wpr_public__image {
    aspect-ratio: 1 / 1;
    min-width: 65px;
    width: 65px;
    height: auto;
}

.wpr_public__text {
    display: block;
    font-size: var(--wpr_font-sm);
    line-height: 1.5;
}