/* assets/css/blocks/text_section.css — Стили для текстовой секции */

.text-section-block {
    background-color: #FFFFFF;
    border: 1px solid var(--color-border-very-light);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .text-section-block {
        padding: 2.5rem;
    }
}

.text-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.text-section-body {
    font-size: 0.9375rem;
    color: var(--color-text-slate);
    line-height: 1.7;
}

.text-section-body p {
    margin-bottom: 1rem;
}

.text-section-body p:last-child {
    margin-bottom: 0;
}

.text-section-body ul, .text-section-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.text-section-body li {
    margin-bottom: 0.375rem;
}

.text-section-body strong {
    color: var(--color-text-dark);
}
