/* Shared styles for changelog and privacy pages */

.page-content {
    padding: 120px 0 80px;
    background: var(--white);
    min-height: calc(100vh - 200px);
}

.page-container {
    max-width: 720px;
}

.page-content h1 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--slate-900);
}

.page-meta {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 32px;
}

/* Privacy policy styles */
.page-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 10px;
    color: var(--slate-900);
}

.page-content p {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.75;
    margin-bottom: 12px;
}

.page-content a {
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content a:hover {
    color: var(--brand-dark);
}

/* Changelog styles */
.changelog-entry {
    padding: 28px 0;
    border-bottom: 1px solid var(--slate-200);
}

.changelog-entry:first-of-type {
    padding-top: 0;
}

.changelog-entry:last-of-type {
    border-bottom: none;
}

.version-badge {
    display: inline-block;
    background: var(--brand-lighter);
    color: var(--brand);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.version-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-500);
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.changelog-entry ul {
    list-style: none;
    padding: 0;
}

.changelog-entry li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: var(--slate-700);
    line-height: 1.7;
    margin-bottom: 6px;
}

.changelog-entry li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-light);
}

.changelog-entry li strong {
    color: var(--slate-900);
}
