/* style/tabelas-trabalhistas.css */

/* News Teaser (Padrão 2026) */
.news-teaser {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-lg);
    border-left: 5px solid #0f172a;
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
}
.news-tag {
    background: #0f172a;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Box Salário Mínimo */
.info-highlight-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    text-align: center;
    margin-bottom: 40px;
}
.icon-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary);
}
.icon-title h2 { margin: 0; font-size: 1.2rem; }
.value-display {
    color: var(--primary);
    margin-bottom: 10px;
}
.value-display .currency { font-size: 1.5rem; font-weight: 600; vertical-align: top; margin-top: 10px; display: inline-block; }
.value-display .amount { font-size: 3.5rem; font-weight: 900; }
.footnote { font-size: 0.8rem; color: var(--text-muted); }

/* Tabelas */
.table-container-master { margin-bottom: 40px; }
.table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
}
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 15px; text-align: center; border-bottom: 1px solid var(--border-soft); }
.data-table th { background: #f8fafc; font-weight: 700; font-size: 0.9rem; }
.legal-info { margin-top: 10px; font-size: 0.85rem; color: var(--text-soft); text-align: right; }

/* Rich Content */
.highlight-alert {
    background: #fffbeb;
    padding: 20px;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    margin-top: 25px;
    font-size: 0.95rem;
}