/* === Footer Links === */
.footer-links {
    margin-top: 0.6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.15rem 0.1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    transition: all var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-purple);
    background: var(--bg-tertiary);
}

.footer-links-sep {
    color: var(--border);
    font-size: 0.7rem;
    pointer-events: none;
    user-select: none;
}

/* === Changelog Page === */
.changelog-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.5rem 3rem;
}

.changelog-entry {
    padding: 1.5rem;
}

.changelog-entry-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.changelog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.changelog-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.changelog-changes {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.changelog-changes li + li {
    margin-top: 0.25rem;
}

/* === About Page === */
.about-sections {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.5rem 3rem;
}

.about-section {
    padding: 1.5rem;
}

.about-section h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text-primary);
}

.about-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 0.5rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-list {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-list li + li {
    margin-top: 0.25rem;
}

.about-list a {
    color: var(--accent-purple);
    text-decoration: none;
}

.about-list a:hover {
    text-decoration: underline;
}

/* === CSP helper classes (replacing inline styles) === */
.admin-inline {
    display: inline;
}

.admin-list-label--flush {
    margin: 0;
}
