/* --- LEGAL PAGES --- */
.legal {
    padding-top: 120px;
    padding-bottom: 80px;
}

.legal__header {
    max-width: 720px;
    margin-bottom: 64px;
}

.legal__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.legal__title em {
    font-style: italic;
    color: var(--black);
}

.legal__updated {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.legal__content {
    max-width: 720px;
}

.legal__content h2 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.legal__content h2:first-child {
    margin-top: 0;
}

.legal__content h3 {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal__content p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.legal__content a {
    color: var(--black);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}

.legal__content a:hover {
    color: var(--gold);
}

.legal__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal__content ul li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-gray);
    padding-left: 20px;
    position: relative;
}

.legal__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.legal__content ul li strong {
    color: #1a1a1a;
}

.legal__table-wrap {
    margin: 18px 0 22px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    border: 1px solid rgba(28, 58, 74, 0.12);
    background: var(--white);
}

.legal__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.legal__table thead th {
    background: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-align: left;
    padding: 14px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.legal__table thead th:last-child {
    border-right: none;
}

.legal__table tbody th,
.legal__table tbody td {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-gray);
    padding: 14px 14px;
    border-top: 1px solid rgba(28, 58, 74, 0.08);
    vertical-align: top;
}

.legal__table tbody th {
    font-weight: 700;
    color: #1a1a1a;
    width: 28%;
}

.legal__table tbody tr:nth-child(even) {
    background: rgba(28, 58, 74, 0.03);
}
