/*
|--------------------------------------------------------------------------
| Credits Page
|--------------------------------------------------------------------------
*/


/* ==========================================================
   Simple Header
========================================================== */

.simple-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    height: var(--header-height);

    padding: 0 24px;

    background: var(--surface);

    border-bottom: 1px solid var(--border);

}


.simple-header__logo {

    font-family: "Space Mono", monospace;

    font-size: 18px;

    font-weight: 700;

    color: var(--accent);

}


.simple-header__back {

    font-size: 13px;

    color: var(--muted);

    transition: color .2s ease;

}


.simple-header__back:hover {

    color: var(--accent);

}


/* ==========================================================
   Content
========================================================== */

.credits-page {

    max-width: 640px;

    margin: 0 auto;

    padding: 48px 24px 80px;

}


.credits-page h1 {

    font-family: "Space Mono", monospace;

    font-size: 28px;

    color: var(--text);

    margin-bottom: 12px;

}


.credits-intro {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 32px;

    line-height: 1.6;

}


.credits-list {

    display: flex;

    flex-direction: column;

    gap: 16px;

}


.credit-item {

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 16px 20px;

}


.credit-item h2 {

    font-size: 14px;

    color: var(--accent);

    margin-bottom: 6px;

}


.credit-item p {

    font-size: 13px;

    color: var(--muted);

    line-height: 1.6;

}


.credit-item p + p {

    margin-top: 10px;

}


.credit-item strong {

    color: var(--text);

    font-weight: 600;

}


.credit-item a {

    color: var(--text);

    text-decoration: underline;

    text-decoration-color: var(--border);

    text-underline-offset: 2px;

}


.credit-item a:hover {

    color: var(--accent);

    text-decoration-color: var(--accent);

}


/* ==========================================================
   Mobile
========================================================== */

@media (max-width: 600px) {

    .credits-page {

        padding: 32px 16px 60px;

    }

}
