/* ── Policy Page Specific Styles ── */

.policy-container {
    align-items: flex-start;
    padding-top: 4rem;
}

.back-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 3rem;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.7;
}

.policy {
    max-width: 800px;
    width: 100%;
    animation: fadeUp 0.8s ease-out forwards;
}

.policy h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

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

.policy h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.policy h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.policy p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.policy ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.policy ul li {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.policy ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.policy ul li strong {
    color: var(--text-main);
}

.policy a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.policy a:hover {
    opacity: 0.7;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.policy-footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .policy-container {
        padding-top: 2.5rem;
    }

    .policy h1 {
        font-size: 2rem;
    }

    .policy h2 {
        font-size: 1.25rem;
    }
}
