/* Shared reading style for page and article content; component styles stay local. */
.show-bullets {
    color: #354052;
    font-family: var(--body-fonts, "Open Sans", sans-serif);
    font-size: 16px;
    line-height: 2;
}
.show-bullets p {
    font-size: inherit;
    line-height: inherit;
    text-align: start;
    text-wrap: pretty;
}
.show-bullets :is(h2, h3) {
    font-family: var(--title-fonts, "Marcellus", serif);
    color: #0a1d35;
    letter-spacing: 0;
    text-wrap: balance;
}
.show-bullets h2,
.show-bullets h2.pq-section-main-title.pq-section-main-title2 {
    margin: 38px 0 16px;
    font-size: clamp(25px, 2.3vw, 32px);
    line-height: 1.3;
    /* The legacy theme forces a 900 weight on content titles. */
    font-weight: 400 !important;
}
.show-bullets h3 {
    margin: 15px 0;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.35;
}
/* Consecutive H2s use the theme's section-eyebrow style and left separator.
   Keep the existing heading levels, text and anchor IDs intact. */
.show-bullets :is(h2, h2.pq-section-main-title.pq-section-main-title2):has(+ h2) {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px !important;
    color: var(--primary-color, #b8967e);
    font-family: var(--title-fonts, "Marcellus", serif);
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.show-bullets h2:has(+ h2)::before {
    content: "";
    flex: 0 0 20px;
    align-self: flex-start;
    height: 10px;
    margin-top: 7px;
    border-inline-start: 3px solid currentColor;
    background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat;
}
.show-bullets h2 + h2 {
    margin-top: 10px !important;
}
.show-bullets :where(p, li, dd) > a:where(:not([class])) {
    color: #152f4d;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.show-bullets :where(p, li, dd) > a:where(:not([class])):focus-visible {
    outline: 2px solid #152f4d;
    outline-offset: 4px;
}
