.policy-hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 74px;
    color: #fff;
    background:
        linear-gradient(
            90deg,
            rgba(4, 34, 17, .93),
            rgba(4, 34, 17, .67),
            rgba(4, 34, 17, .25)
        ),
        var(--page-hero-bg);
    background-size: cover;
    background-position: center;
}

.policy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 83% 18%,
            rgba(159, 202, 56, .3),
            transparent 33%
        );
}

.policy-hero .container {
    position: relative;
    z-index: 2;
}

.policy-hero-kicker,
.policy-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 900;
}

.policy-hero-kicker {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.12);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.policy-hero h1 {
    max-width: 760px;
    margin: 16px 0 10px;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1;
}

.policy-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.84);
    line-height: 1.7;
}

.policy-updated {
    margin-top: 18px;
    padding: 7px 11px;
    color: #18370f;
    background: #dff2b7;
}

.policy-page {
    padding: 58px 0 76px;
    background:
        linear-gradient(
            180deg,
            #f7faf6,
            #fff 320px
        );
}

.policy-layout {
    width: min(100%, 1080px);
    display: block;
}

.policy-layout-single .policy-document {
    width: 100%;
}

.policy-document {
    overflow: hidden;
    border: 1px solid #dce6dd;
    border-radius: 21px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(20,49,28,.08);
}

.policy-document > header {
    display: grid;
    grid-template-columns: 48px minmax(0,1fr) auto;
    gap: 13px;
    align-items: center;
    padding: 22px 25px;
    border-bottom: 1px solid #e1e8e2;
    background:
        radial-gradient(
            circle at 92% 0,
            rgba(159,202,56,.18),
            transparent 25%
        ),
        #fbfdf9;
}

.policy-document > header > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: #0b593b;
}

.policy-document > header small {
    display: block;
    color: #78857c;
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.policy-document > header h2 {
    margin: 4px 0 0;
    color: #17251b;
    font-size: 1.25rem;
}

.policy-print-btn {
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid #d5e2d6;
    border-radius: 10px;
    color: #0b593b;
    background: #fff;
    cursor: pointer;
    font: inherit;
    font-size: .66rem;
    font-weight: 900;
}

.policy-content {
    padding: 30px clamp(22px, 5vw, 48px) 38px;
    color: #48554d;
    font-size: .88rem;
    line-height: 1.85;
}

.policy-content h2 {
    margin: 31px 0 9px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e9e2;
    color: #17351d;
    font-size: 1.14rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3,
.policy-content h4 {
    margin: 25px 0 8px;
    color: #17351d;
}

.policy-content p {
    margin: 0 0 15px;
}

.policy-content ul,
.policy-content ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.policy-content li {
    margin-bottom: 7px;
}

.policy-content blockquote {
    margin: 18px 0;
    padding: 15px 18px;
    border-left: 4px solid #9fca38;
    background: #f4f9ec;
}

.policy-document > footer {
    display: grid;
    grid-template-columns: 25px minmax(0,1fr);
    gap: 10px;
    padding: 17px 25px;
    color: #617067;
    background: #f5f9f4;
    border-top: 1px solid #e1e8e2;
}

.policy-document > footer i {
    margin-top: 3px;
    color: #0b593b;
}

.policy-document > footer p {
    margin: 0;
    font-size: .67rem;
    line-height: 1.55;
}


.policy-document-contact {
    margin-top: 6px !important;
}

.policy-document-contact a {
    color: #0b593b;
    font-weight: 900;
    text-decoration: none;
}

.policy-document-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .policy-layout {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .policy-page {
        padding-top: 34px;
    }

    .policy-document > header {
        grid-template-columns: 42px minmax(0,1fr);
        padding: 18px;
    }

    .policy-document > header > span {
        width: 42px;
        height: 42px;
    }

    .policy-print-btn {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
    }

    .policy-content {
        padding: 24px 19px 30px;
    }
}

@media print {
    .site-announcement,
    .site-header,
    .policy-hero,
    .policy-print-btn,
    .newsletter,
    .footer {
        display: none !important;
    }

    .policy-page {
        padding: 0;
        background: #fff;
    }

    .policy-layout {
        display: block;
    }

    .policy-document {
        border: 0;
        box-shadow: none;
    }
}
