/**
 * ESP Legal Pages Styles
 * Privacy Policy & Terms of Use
 */

/* ==========================================================================
   Legal Page Body
   ========================================================================== */

.esp-legal-body {
    background: #f8f9fa;
}

/* ==========================================================================
   Legal Page Header
   ========================================================================== */

.esp-legal-header {
    padding: 2.5rem 1rem 2rem;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.esp-legal-header__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 auto;
    max-width: 1000px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    letter-spacing: 0.01em;
}

@media (min-width: 768px) {
    .esp-legal-header {
        padding: 3rem 2rem 2.5rem;
    }

    .esp-legal-header__title {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Legal Page Content
   ========================================================================== */

.esp-legal-content {
    padding: 2.5rem 1rem 4rem;
    display: flex;
    justify-content: center;
}

.esp-legal-content__body {
    max-width: 900px;
    width: 100%;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .esp-legal-content {
        padding: 3rem 2rem 4rem;
    }

    .esp-legal-content__body {
        padding: 3rem 4rem;
    }
}

@media (min-width: 1200px) {
    .esp-legal-content__body {
        max-width: 1000px;
        padding: 3.5rem 5rem;
    }
}

.esp-legal-content__body h2 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    letter-spacing: 0.01em;
}

.esp-legal-content__body h2:first-child {
    margin-top: 0;
}

.esp-legal-content__body p {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 1rem;
}

.esp-legal-content__body a {
    color: #d97706;
    text-decoration: underline;
    transition: color 0.15s;
}

.esp-legal-content__body a:hover {
    color: #b45309;
}

/* ==========================================================================
   Legal Ordered List (Terms of Use)
   ========================================================================== */

.esp-legal-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    counter-reset: legal-item;
}

.esp-legal-list > li {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    position: relative;
}

.esp-legal-list > li strong {
    color: #1f2937;
    font-weight: 600;
}

.esp-legal-list ol[type="a"] {
    padding-left: 1.5rem;
    margin: 1rem 0;
    list-style-type: lower-alpha;
}

.esp-legal-list ol[type="a"] > li {
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Legal Table (Cookies)
   ========================================================================== */

.esp-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.esp-legal-table thead th {
    background: #f3f4f6;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 2px solid #d1d5db;
}

.esp-legal-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    vertical-align: top;
}

.esp-legal-table tbody tr:last-child td {
    border-bottom: none;
}

.esp-legal-table tbody tr:hover {
    background: #f9fafb;
}

/* First column (cookie name) styling */
.esp-legal-table tbody td:first-child {
    font-weight: 500;
    color: #1f2937;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.875rem;
    white-space: nowrap;
}

/* ==========================================================================
   Legal Copyright
   ========================================================================== */

.esp-legal-copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    color: #6b7280;
}

/* ==========================================================================
   Footer Links (shared update)
   ========================================================================== */

.esp-footer__copyright a {
    color: inherit;
    text-decoration: underline;
    opacity: 0.85;
    transition: opacity 0.15s;
}

.esp-footer__copyright a:hover {
    opacity: 1;
}
