/* 05-php-07-section-richtext — moved verbatim from 08-php-30-content-body.css
   ("Anchored content entries", 2026-07-10). .coop-entry is kept on the
   <section> for back-compat; .php07-section is the component's own class. */

.php07-section {
    max-width: 760px;
    margin: 60px auto 0;
    text-align: left;
    /* leave room when an anchor jump lands here (e.g. under a sticky header) */
    scroll-margin-top: 90px;
}

.php07-section h3 {
    font-weight: 700;
    font-size: 22px;
    color: #0b0b0c;
    margin: 0 0 12px;
}

.php07-section p {
    margin: 0 0 12px;
    line-height: 1.6;
    color: #444;
}

/* Any link inside the rich-text body — CONTAINER-scoped on purpose (2026-07-11):
   the client adds links via TinyMCE's normal toolbar, never touches source
   code or adds a class, so every <a> the client ever creates here is styled
   automatically, with no action needed on their part. */
.php07-section__body a {
    color: var(--main-color, #0088cb);
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

.php07-section__body a:hover {
    text-decoration: underline;
}

