/* ============================================
   Shared Page Styles (now, uses, etc.)
   ============================================ */

.page-header {
    display: block;
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.back-link {
    font-size: 0.8125rem;
    color: var(--text-dim);
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: color 0.15s;
}

.back-link:hover {
    color: var(--accent);
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright);
    margin: 0 0 0.5rem;
}

.page-subtitle {
    font-size: 0.875rem;
    color: var(--text-dim);
    font-style: italic;
    margin: 0 0 0.75rem;
}

.page-updated {
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.7;
    margin: 0;
}

.page-updated time {
    color: var(--accent);
}

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

.page-content {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--text);
}

.page-content a {
    border-bottom: 1px solid var(--accent);
    transition: opacity 0.15s;
}

.page-content a:hover {
    opacity: 0.8;
}

/* ============================================
   Now Page Sections
   ============================================ */

.now-section {
    margin-bottom: 2.5rem;
}

.now-section h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.now-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.now-section li {
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.7;
}

.now-section li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.875rem;
}

.now-section li strong {
    color: var(--text-bright);
}

.now-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-dim);
}

/* ============================================
   Uses Page Sections
   ============================================ */

.uses-section {
    margin-bottom: 2.5rem;
}

.uses-section h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.uses-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.uses-section li {
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.7;
    font-size: 0.875rem;
}

.uses-section li::before {
    content: '\00b7';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.25rem;
    line-height: 1.4;
}

.uses-section li strong {
    color: var(--text-bright);
}

.uses-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--text-dim);
}

/* ============================================
   Footer
   ============================================ */

footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-dim);
}

footer a {
    color: var(--text-dim);
    transition: color 0.15s;
}

footer a:hover {
    color: var(--accent);
}

.footer-separator {
    opacity: 0.5;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 640px) {
    .page-title {
        font-size: 1.25rem;
    }

    .page-content {
        font-size: 0.875rem;
    }

    .now-section li,
    .uses-section li {
        padding-left: 1rem;
    }
}
