.policy-page {
    --gold-dim: rgba(200, 169, 110, 0.15);
}

/* ── Cookie table ── */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    font-size: clamp(0.75rem, 2vw, 0.83rem); 
}

.cookie-table th {
    text-align: left;
    padding: 0.6rem 0.8rem;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--policy-text-dim);
    border-bottom: 1px solid var(--policy-border);
}

.cookie-table td {
    padding: 0.75rem 0.8rem;
    border-bottom: 1px solid var(--policy-border);
    color: var(--policy-text);
    vertical-align: top;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table td:first-child {
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    color: var(--gold);
    white-space: normal;
}

.choice-list {
    margin: 1rem 0;
    padding: 0;
    list-style: none;
}

.choice-list li {
    padding: 0.5rem 0 0.5rem 1.2rem;
    font-size: 0.88rem;
    position: relative;
    color: var(--policy-text);
    line-height: 1.6;
}

.choice-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.8rem;
}

/* ── Responsive ── */

/* Mobile (≤600px) */
@media (max-width: 600px) {
    .cookie-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .cookie-table td:first-child {
        white-space: normal;
        min-width: 100px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem 0.6rem;
    }
}

/* Landscape phone */
@media (max-height: 430px) and (orientation: landscape) {
    .cookie-table {
        font-size: 0.78rem;
    }
}