/* ============================================================
   Forest Fawns — Credits Page (TOS-Aligned Style)
   File: /assets/css/credits.css
   Matches informational page panel styling
   Owns ONLY .credits-* styles
   ============================================================ */


/* ===============================
   Page Layout
=============================== */

.credits-page {
    margin: 28px auto 40px auto;
    max-width: 860px;
}

.credits-page h1 {
    margin-bottom: 6px;
}

.credits-intro {
    margin-bottom: 20px;
    max-width: 640px;
}


/* ===============================
   Main Panel (TOS-style)
=============================== */

.credits-card {
    background: #f6f7eb;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 26px 30px;
}


/* ===============================
   Sections
=============================== */

.credits-section {
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-soft);
}

.credits-section:last-of-type {
    border-bottom: none;
    margin-bottom: 14px;
}


/* Section headers */
.credits-section h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--ink-strong);
}


/* Names */
.credits-section strong {
    font-size: 15px;
    color: var(--ink);
}


/* Paragraphs */
.credits-section p {
    margin: 6px 0 0;
    line-height: 1.55;
    font-size: 14px;
}


/* Links */
.credits-section a {
    color: var(--moss);
    text-decoration: none;
}

.credits-section a:hover {
    text-decoration: underline;
}


/* Bottom note */
.credits-note {
    font-size: 13px;
    margin-top: 14px;
}