/* ──────────────────────────────────────────────
   Envirapack — policy.css
   Plats: /css/policy.css
   Delad stilmall för policysidor:
   integritetspolicy, villkor, leverans-retur, hallbarhet.
   Klasser: .policy (wrapper), .policy-content (läskolumn),
            .policy-updated (datumrad)
   ────────────────────────────────────────────── */

.policy {
    padding: 48px 0 80px;
}

/* Smal läskolumn för bra radlängd */
.policy-content {
    max-width: 760px;
    margin: 0 auto;
}

/* Datumrad högst upp */
.policy-updated {
    color: var(--text-light, #6b7280);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Rubriker */
.policy-content h2 {
    color: #24615F;
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 2.5rem 0 0.75rem;
}

.policy-content h3 {
    color: #24615F;
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 1.75rem 0 0.5rem;
}

/* Brödtext */
.policy-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Listor */
.policy-content ul {
    margin: 0 0 1.25rem;
    padding-left: 1.4rem;
}

.policy-content li {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Länkar */
.policy-content a {
    color: #24615F;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s ease;
}

.policy-content a:hover {
    color: #1c4b49;
}

/* Synlig fokusram för tangentbordsnavigering (WCAG 2.4.7) */
.policy-content a:focus-visible {
    outline: 2px solid #24615F;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Respektera användare som valt mindre rörelse */
@media (prefers-reduced-motion: reduce) {
    .policy-content a {
        transition: none;
    }
}

/* Mobil */
@media (max-width: 768px) {
    .policy {
        padding: 32px 0 56px;
    }
    .policy-content h2 {
        font-size: 1.25rem;
    }
}