
/* ─── PAGE HERO ─── */
.policy-hero {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    padding: 80px 28px 72px;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.policy-hero .spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.policy-hero .aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.14;
    animation: drift 10s ease-in-out infinite alternate;
}

.policy-hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color .2s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold-dim);
}

/* ─── POLICY CONTENT LAYOUT ─── */
.policy-section {
    background: var(--ink);
    padding: 80px 28px 100px;
}

.policy-inner {
    max-width: 900px;
    margin: 0 auto;
}

.policy-last-updated {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

.policy-card {
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #a07828);
}

.policy-block {
    margin-bottom: 48px;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-block-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.policy-block-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.policy-content-text {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.8;
}

.policy-content-text p {
    margin-bottom: 16px;
}

.policy-content-text p:last-child {
    margin-bottom: 0;
}

.policy-content-text ul {
    margin-bottom: 16px;
    padding-left: 20px;
    list-style-type: none;
}

.policy-content-text ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 8px;
    color: #b3b3b3;
}

.policy-content-text ul li::before {
    content: '•';
    position: absolute;
    left: -12px;
    color: var(--gold);
    font-weight: bold;
}

.policy-content-text strong {
    color: #ddd;
    font-weight: 600;
}

.policy-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .policy-card {
        padding: 32px 24px;
    }

    .policy-block-title {
        font-size: 1.25rem;
    }

    .policy-content-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 56px 20px 80px;
    }

    .policy-card {
        padding: 24px 16px;
    }
}
