/**
 * Módulo: Notes
 */

.module-notes__sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.module-notes__section {
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.module-notes__title {
    margin-bottom: 1rem;
}

.module-notes__title.section-header {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.module-notes__description,
.module-notes__description p {
    color: var(--color-text);
    line-height: 1.6;
    font-size: 12px;
}

.module-notes__description p {
    margin-bottom: 1rem;
}

.module-notes__description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .module-notes__sections {
        gap: 2rem;
    }
}

