:root {
    --embr-primary: #faa01f;
    --embr-primary-ink: #3a2a00;
    --ink: #111;
    --muted: #6b7280;
    --bg: #ffffff;
    --radius: 14px;
    --font-body: 14px;
}

.policy-emb {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.7;
}

.policy-hero {
    background: linear-gradient(135deg, var(--embr-primary), #ffd48a);
    color: var(--embr-primary-ink);
    border-radius: var(--radius);
    padding: 22px 18px;
    box-shadow: 0 6px 24px rgba(250, 160, 31, .25);
    margin-bottom: 16px;
}

.policy-hero h1 {
    margin: 0 0 6px;
    font-size: 24px;
    color: #000;
}

.policy-hero p {
    font-size: var(--font-body);
    margin: 0;
}

.policy-list {
    display: grid;
    gap: 12px;
    margin-top: 16px
}

details.policy-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .04);
    transition: box-shadow .2s ease, border-color .2s ease;
}

details.policy-item[open] {
    box-shadow: 0 12px 30px rgba(250, 160, 31, .20);
    border-color: #ffd48a
}

.policy-item>summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 46px 14px 16px;
    position: relative;
    background: #fff7ea;
    color: var(--embr-primary-ink);
    font-size: 14px;
    font-weight: 700;
    outline: none;
}

.policy-item>summary::-webkit-details-marker {
    display: none
}

.policy-item>summary::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--embr-primary);
}

.policy-item>summary::after {
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .2s ease;
    color: var(--embr-primary-ink);
    font-size: 18px;
}

details.policy-item[open]>summary::after {
    transform: translateY(-50%) rotate(180deg)
}

.policy-body {
    padding: 14px 16px 18px;
    background: #fff;
    font-size: var(--font-body) !important;
}

.policy-body strong {
    font-size: var(--font-body) !important;
}

.policy-body h3 {
    font-size: 16px;
    margin: 14px 0 6px
}

.policy-body p {
    margin: .6em 0
}

.policy-body ul {
    margin: .6em 0 .6em 1.2em
}

.policy-body li {
    margin: .2em 0
}

.policy-body a {
    color: #0b66c3;
    text-decoration: none
}

.policy-body a:hover {
    text-decoration: underline
}

.policy-footnote {
    margin-top: 18px;
    font-size: var(--font-body);
    color: var(--muted);
}

.policy-footnote a {
    color: #0b66c3;
    text-decoration: none;
}

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

header.entry-header {
    display: none;
}

.entry-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 16px 22px;
}