/* ========================================
   Legal Pages - Additional Styles
   ======================================== */

/* Highlights Section */
.highlights-section {
    padding: var(--space-2xl) 0;
    background: var(--color-surface);
}

.highlights-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xs);
}

.highlights-intro {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.highlight-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Negative highlight (zero tolerance) */
.highlight-card.highlight-negative {
    background: #FEF2F2;
    border-color: rgba(220, 38, 38, 0.1);
}

.highlight-card.highlight-negative .highlight-icon {
    background: rgba(220, 38, 38, 0.1);
}

.highlight-card.highlight-negative .highlight-icon svg {
    color: #DC2626;
}

/* Full Policy Styles */
.full-policy-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.full-policy-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.full-policy-header p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.policy-section {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.policy-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin: var(--space-lg) 0 var(--space-sm);
}

.policy-section p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.policy-section ul,
.policy-section ol {
    color: var(--color-text-muted);
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.policy-section li {
    line-height: 1.7;
    margin-bottom: var(--space-xs);
}

.policy-section a {
    color: var(--color-primary);
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-section strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Zero Tolerance Section */
.zero-tolerance-section {
    background: #FEF2F2;
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.zero-tolerance-section h2 {
    color: #DC2626;
}

.zero-tolerance-list li {
    color: var(--color-text);
}

/* Policy Acknowledgment */
.policy-acknowledgment {
    background: var(--color-bg-alt);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--space-xl);
}

.policy-acknowledgment p {
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.policy-acknowledgment p:last-child {
    margin-bottom: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Legal Content Container */
.legal-content {
    background: var(--color-surface);
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.legal-content > .container {
    max-width: 800px;
}

/* Responsive */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .zero-tolerance-section {
        margin-left: calc(-1 * var(--space-sm));
        margin-right: calc(-1 * var(--space-sm));
        padding: var(--space-md);
    }
}
