/* ==================== PRIVACY POLICY PAGE ==================== */
/* Hero uses the shared .page-hero component (tighter bottom — document follows). */

.privacy-hero {
    padding-bottom: 40px;
}

.policy-embed {
    padding: 0 40px 80px;
    position: relative;
    z-index: 10;
}

.policy-frame {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 4px solid var(--block-green);
    box-shadow:
        0 0 30px rgba(127, 194, 66, 0.2),
        0 8px 0 rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.policy-frame:hover {
    border-color: var(--laser-orange);
    box-shadow:
        0 0 40px rgba(255, 107, 0, 0.4),
        0 10px 0 rgba(0, 0, 0, 0.3);
}

.policy-frame iframe {
    display: block;
    width: 100%;
    min-height: 80vh;
    border: 0;
    background: #fff;
}

.policy-fallback {
    max-width: 1100px;
    margin: 1.25rem auto 0;
    text-align: center;
    font-size: 0.95rem;
    color: #aaa;
}

.policy-fallback a {
    color: var(--block-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.policy-fallback a:hover {
    color: var(--laser-orange);
    text-shadow: 0 0 12px rgba(255, 107, 0, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .privacy-hero {
        padding-bottom: 30px;
    }

    .policy-embed {
        padding: 0 20px 60px;
    }

    .policy-frame iframe {
        min-height: 70vh;
    }
}

@media (max-width: 768px) {
    .policy-frame {
        border-width: 3px;
    }

    .policy-frame iframe {
        min-height: 65vh;
    }
}
