/* DentaVista — Rich tekst widget */
.dv-rich--alt { background: var(--dv-cream); }
.dv-rich__grid--split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.dv-rich--left .dv-rich__media { order: -1; }
.dv-rich__lead { max-width: 64ch; margin-bottom: 18px; }
.dv-rich__body {
    color: var(--dv-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}
.dv-rich__body p { margin: 0 0 1em; }
.dv-rich__body h3 {
    font-family: var(--dv-font-head);
    color: var(--dv-navy);
    font-size: 1.3rem;
    margin: 1.4em 0 .5em;
}
.dv-rich__body a { color: var(--dv-teal-600); }
.dv-rich__list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.dv-rich__list li {
    position: relative;
    padding-left: 34px;
    color: var(--dv-ink);
    font-weight: 500;
}
.dv-rich__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--dv-teal-050);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 14px no-repeat, none;
}
.dv-rich__list li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    background: var(--dv-teal-600);
    border-radius: 50%;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 14px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.dv-rich__media {
    border-radius: var(--dv-radius);
    overflow: hidden;
    box-shadow: var(--dv-shadow);
}
.dv-rich__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3.2; }
@media (max-width: 860px) {
    .dv-rich__grid--split { grid-template-columns: 1fr; }
    .dv-rich--left .dv-rich__media { order: 0; }
}
