/* =========================================================
   HB GROUP LTD
   POLICY PAGES
========================================================= */

.policy-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 72px;
    background:
        radial-gradient(circle at 80% 20%, rgba(38, 140, 255, 0.16), transparent 34%),
        linear-gradient(135deg, #0a0a0c, #050505);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.policy-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000, transparent);
}

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

.policy-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--hb-blue-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.policy-hero h1 {
    max-width: 780px;
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -.045em;
}

.policy-hero>.container>p:not(.policy-updated) {
    max-width: 720px;
    margin: 0;
    color: #9ba7b8;
    font-size: 16px;
    line-height: 1.8;
}

.policy-updated {
    margin: 22px 0 0;
    color: #657287;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.policy-section {
    padding: 72px 0 90px;
    background: #f5f7fb;
}

.policy-card {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 64px);
    background: #fff;
    border: 1px solid #e7ebf1;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(7, 16, 29, .08);
}

.policy-card h2 {
    margin: 42px 0 14px;
    color: #0a0a0c;
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: -.02em;
}

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

.policy-card h3 {
    margin: 30px 0 10px;
    color: #111216;
    font-size: 17px;
}

.policy-card p,
.policy-card li {
    color: #566274;
    font-size: 14px;
    line-height: 1.85;
}

.policy-card p {
    margin: 0 0 16px;
}

.policy-card ul {
    margin: 8px 0 20px;
    padding-left: 22px;
}

.policy-card li {
    margin-bottom: 6px;
}

.policy-card a {
    color: var(--hb-blue);
    font-weight: 650;
    text-decoration: underline;
    text-decoration-color: rgba(38, 140, 255, .28);
    text-underline-offset: 3px;
}

.policy-card a:hover {
    color: var(--hb-blue-light);
}

.policy-card .btn {
    margin: 8px 0 12px;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 700px) {
    .policy-hero {
        padding: 56px 0 50px;
    }

    .policy-section {
        padding: 40px 0 60px;
    }

    .policy-card {
        border-radius: 12px;
    }

    .policy-card h2 {
        font-size: 20px;
    }
}