/*
 * Legal Pages — Shared Styles
 * Used by: Privacy Policy, Terms of Use, Cookie Policy
 */

/* ── Page wrapper ────────────────────────────────────────────────── */
.legal-page {
    background: #f8f9fa;
}

/* ── Hero banner ─────────────────────────────────────────────────── */
.legal-hero {
    position: relative;
}
.legal-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ── Section headings ─────────────────────────────────────────────── */
.legal-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.6rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    background: var(--kt-primary, #ef7900);
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.legal-subsection-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* ── Lists ────────────────────────────────────────────────────────── */
.legal-list {
    padding-inline-start: 1.5rem;
    line-height: 1.9;
    color: #4b5563;
}
.legal-list li {
    margin-bottom: 0.35rem;
}

/* ── Tables ───────────────────────────────────────────────────────── */
.legal-table {
    font-size: 0.9rem;
}
.legal-table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* ── Contact box ──────────────────────────────────────────────────── */
.contact-box {
    background: #f8f9fa;
}

/* ── TOC list ─────────────────────────────────────────────────────── */
.toc-list a {
    transition: color 0.15s ease;
    display: block;
    padding: 0.1rem 0;
}
.toc-list a:hover {
    color: var(--kt-primary, #ef7900) !important;
}

/* ── Cookie category cards ────────────────────────────────────────── */
.cookie-category-card {
    background: #fdfdfd;
    transition: box-shadow 0.2s ease;
}
.cookie-category-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

/* ── Body text ────────────────────────────────────────────────────── */
.legal-content {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #374151;
}
.legal-content p {
    margin-bottom: 1rem;
}
.legal-content a.text-main {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Intro alert ──────────────────────────────────────────────────── */
.legal-content .alert-light {
    background: #fffdf8;
    border-color: #e5e7eb;
}

/* ── Mobile adjustments ───────────────────────────────────────────── */
@media (max-width: 991px) {
    .legal-section-title {
        font-size: 1.1rem;
    }
    .sticky-top {
        position: relative !important;
        top: auto !important;
    }
}

/* ── RTL adjustments ──────────────────────────────────────────────── */
[dir="rtl"] .legal-list {
    padding-inline-start: 0;
    padding-inline-end: 1.5rem;
}
[dir="rtl"] .legal-section-title {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
[dir="rtl"] .border-start {
    border-left: none !important;
    border-right: 4px solid var(--kt-primary, #ef7900) !important;
}
