.privacy-export-page {
    display: grid;
    gap: 16px;
    padding: 16px;
}

.privacy-export-intro {
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) minmax(260px, .8fr);
    gap: 22px;
    align-items: center;
    overflow: hidden;
    border-color: #d9e5ea;
    background: linear-gradient(135deg, #fff 0%, #f6fafb 100%);
}

.privacy-export-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: var(--tenant-primary, #e85a32);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--tenant-primary, #e85a32) 24%, transparent);
    font-size: 25px;
    font-weight: 800;
}

.privacy-export-eyebrow,
.incident-statistics-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--tenant-primary, #e85a32);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.privacy-export-intro h2,
.privacy-export-header h2 {
    margin: 0 0 6px;
}

.privacy-export-intro p,
.privacy-export-header p {
    max-width: 720px;
    margin: 0;
    color: var(--ui-text-muted);
    line-height: 1.55;
}

.privacy-export-scope {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius);
    background: rgba(255, 255, 255, .78);
}

.privacy-export-scope strong { width: 100%; margin-bottom: 3px; }
.privacy-export-scope span,
.privacy-export-group {
    padding: 4px 8px;
    border-radius: 999px;
    color: #435662;
    background: #edf3f5;
    font-size: 11px;
    font-weight: 700;
}

.privacy-export-list { padding: 0; overflow: hidden; }
.privacy-export-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    padding: 20px;
    border-bottom: 1px solid var(--ui-border);
}

.privacy-export-search { width: min(320px, 100%); }
.privacy-export-search span { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 700; }
.privacy-export-search input { width: 100%; box-sizing: border-box; }
.privacy-export-rows { display: grid; }
.privacy-export-row {
    display: grid;
    grid-template-columns: 42px minmax(220px, 1fr) minmax(150px, .6fr) auto;
    gap: 14px;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid var(--ui-border);
}
.privacy-export-row:last-child { border-bottom: 0; }
.privacy-export-row:hover { background: #f8fafb; }
.privacy-export-avatar {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: #173f52;
    background: #e7f1f5;
    font-weight: 800;
}
.privacy-export-person strong,
.privacy-export-person span { display: block; }
.privacy-export-person span { margin-top: 2px; color: var(--ui-text-muted); font-size: 11px; }
.privacy-export-download { white-space: nowrap; }

@media (max-width: 850px) {
    .privacy-export-intro { grid-template-columns: auto 1fr; }
    .privacy-export-scope { grid-column: 1 / -1; }
}
@media (max-width: 650px) {
    .privacy-export-page { padding: 8px; }
    .privacy-export-intro { grid-template-columns: 1fr; }
    .privacy-export-icon { width: 46px; height: 46px; }
    .privacy-export-scope { grid-column: auto; }
    .privacy-export-header { align-items: stretch; flex-direction: column; }
    .privacy-export-row { grid-template-columns: 40px 1fr; }
    .privacy-export-group,
    .privacy-export-download { grid-column: 2; justify-self: start; }
}
