/* Text Block */
.text-section {
    padding: 3rem 0;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.text-content h2,
.text-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.text-content p {
    margin-bottom: 1.5rem;
}

.text-content ul,
.text-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.text-content li {
    margin-bottom: 0.5rem;
}

/* ---- Tables générées par l'IA ---- */
.text-content table,
.section-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    overflow-x: auto;
    display: block;
}

.text-content thead,
.section-text-content thead {
    background: var(--color-primary, #2d4a3e);
    color: #fff;
}

.text-content th,
.section-text-content th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.text-content td,
.section-text-content td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.text-content tbody tr:nth-child(even),
.section-text-content tbody tr:nth-child(even) {
    background: #f8fafc;
}

.text-content tbody tr:hover,
.section-text-content tbody tr:hover {
    background: #f0f9f5;
}