/* ============================================================
   SpinMac CN — Privacy Policy Page — component extensions
   Base legal-page layout inherited from terms.css
   ============================================================ */

/* ---- Data retention table ---- */
.retention-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 8px;
    font-size: 14px;
}
.retention-table th,
.retention-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--tc-border);
    vertical-align: top;
}
.retention-table th {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tc-text-muted);
    background: var(--tc-gray-bg);
}
.retention-table td:last-child {
    font-weight: 400;
    color: var(--tc-blue);
    white-space: nowrap;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* ---- Cookie type cards ---- */
.cookie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0 8px;
}
.cookie-card {
    padding: 20px 18px;
    border: 1px solid var(--tc-border);
    background: var(--tc-gray-bg);
}
.cookie-card-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tc-text-main);
    margin-bottom: 8px;
}
.cookie-card-label svg { color: var(--tc-blue); flex-shrink: 0; }
.cookie-card p {
    font-size: 13px;
    font-weight: 300;
    color: var(--tc-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ---- User rights grid ---- */
.rights-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 8px;
}
.right-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--tc-border);
    background: #fff;
}
.right-card-icon {
    color: var(--tc-blue);
    line-height: 0;
    flex-shrink: 0;
    margin-top: 2px;
}
.right-card-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--tc-text-main);
    margin-bottom: 4px;
}
.right-card-desc {
    font-size: 14px;
    font-weight: 300;
    color: #3a3f47;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .cookie-grid { grid-template-columns: 1fr; }
    .retention-table td:last-child { white-space: normal; text-align: left; }
    .retention-table th,
    .retention-table td { padding: 12px 14px; }
}
