.policy-document {
    width: min(980px, 100%);
    margin-inline: auto;
    padding: clamp(1.2rem, 2vw, 2rem);
}

.policy-document__header {
    align-items: flex-start;
    margin-bottom: 1.6rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--theme-border);
}

.policy-document__header-copy {
    max-width: 760px;
}

.policy-document__meta {
    margin-top: 0.45rem;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.policy-document__section {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid color-mix(in srgb, var(--theme-border) 78%, transparent 22%);
}

.policy-document__section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.policy-document__section--final {
    margin-bottom: 0.35rem;
}

.policy-document__section h3 {
    margin: 0 0 0.95rem;
    font-size: 1.18rem;
    line-height: 1.35;
    color: var(--theme-text-strong, var(--theme-text));
}

.policy-document__section h4 {
    margin: 1.15rem 0 0.7rem;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--theme-accent-strong, var(--theme-accent));
}

.policy-document__section h5 {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    line-height: 1.35;
}

.policy-document__section p {
    margin: 0.55rem 0 0;
    line-height: 1.78;
    text-align: justify;
    text-indent: 1.75rem;
}

.policy-document__section p:first-of-type {
    margin-top: 0;
}

.policy-document__lead {
    text-indent: 0;
    font-weight: 700;
    margin-top: 0.7rem;
}

.policy-document__section ul {
    margin: 0.6rem 0 0.25rem 0;
    padding-left: 2.8rem;
}

.policy-document__section li {
    margin: 0.42rem 0;
    line-height: 1.72;
    text-align: justify;
    padding-left: 0.15rem;
}

.policy-document__info-box {
    margin-top: 0.8rem;
    padding: 0.9rem 1rem;
    background: color-mix(in srgb, var(--theme-surface) 86%, var(--theme-accent) 14%);
}

.policy-document__info-box-title {
    margin-bottom: 0.3rem;
}

.policy-document__info-box-copy {
    margin: 0;
    text-indent: 0;
}

.policy-document__table-wrap {
    margin-top: 0.8rem;
    overflow-x: auto;
    border: 1px solid var(--theme-border);
    border-radius: 12px;
}

.policy-document__table-wrap table {
    margin: 0;
    min-width: 760px;
}

.policy-document__table-wrap th,
.policy-document__table-wrap td {
    vertical-align: top;
    line-height: 1.5;
}

.policy-document__table-wrap td {
    font-size: 0.8rem;
}

@media (max-width: 780px) {
    .policy-document {
        padding: 1rem;
    }

    .policy-document__section p {
        text-indent: 1rem;
        line-height: 1.68;
    }

    .policy-document__section ul {
        padding-left: 1.7rem;
    }
}