/**
 * Legal Page Specific Styles (Polished)
 */

/* Container */
.acme-legal-page-wrapper {
    background-color: #f8fafc;
    /* Very light cool gray for premium feel */
    min-height: calc(100vh - 400px);
    /* Ensure footer push */
    padding-bottom: 80px;
}

.acme-legal-page-wrapper .acme-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    /* Sidebar layout support */
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar Navigation */
.acme-legal-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    /* Below sticky header if any */
    padding: 32px 0 0;
}

.acme-legal-menu {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.acme-legal-menu-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 700;
    margin: 16px 16px 8px;
}

.acme-legal-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.acme-legal-nav-link:hover {
    background-color: #f1f5f9;
    color: var(--acme-navy-deep);
}

.acme-legal-nav-link.active {
    background-color: #f0f9ff;
    color: var(--acme-blue-primary);
    font-weight: 600;
}

/* Content Area */
.acme-legal-content {
    flex: 1;
    min-width: 0;
    /* Prevent flex overflow */
    padding-top: 32px;
}

.acme-legal-card {
    background: #fff;
    border-radius: 16px;
    padding: 64px 80px;
    /* Luxurious padding */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Last Updated Badge */
.acme-last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    margin-bottom: 32px;
}

/* Typography / Prose */
.acme-prose {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    /* Slate 700 */
}

/* Headings */
.acme-prose h1,
.acme-prose h2,
.acme-prose h3,
.acme-prose h4 {
    color: var(--acme-navy-deep);
    font-weight: 700;
    line-height: 1.3;
}

.acme-prose h2 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.acme-prose h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1e293b;
    /* Slate 800 */
}

/* Paragraphs & Lists */
.acme-prose p {
    margin-bottom: 24px;
}

.acme-prose ul,
.acme-prose ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.acme-prose li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.acme-prose ul {
    list-style-type: disc;
}

/* Links */
.acme-prose a {
    color: var(--acme-blue-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.1s ease;
}

.acme-prose a:hover {
    color: var(--acme-blue-light);
    text-decoration-thickness: 2px;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .acme-legal-page-wrapper .acme-container {
        flex-direction: column;
        gap: 32px;
    }

    .acme-legal-sidebar {
        width: 100%;
        position: static;
        padding-top: 32px;
    }

    .acme-legal-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .acme-legal-menu-title {
        width: 100%;
        margin-bottom: 8px;
    }

    .acme-legal-card {
        padding: 40px;
    }
}

@media screen and (max-width: 575px) {
    .acme-legal-card {
        padding: 32px 24px;
    }
}